:root {
  --ctm-blue: #075fa8;
  --ctm-blue-dark: #06477d;
  --ctm-blue-deep: #062f55;
  --ctm-blue-soft: #e8f3fb;
  --ctm-cyan: #28a7d8;
  --ctm-cyan-soft: #e9f8fd;
  --ctm-navy: #102437;
  --ctm-charcoal: #1e2933;
  --ctm-white: #ffffff;
  --ctm-off-white: #f7f9fb;
  --ctm-grey: #647381;
  --ctm-border: #dce5eb;
  --success: #167354;
  --shadow: 0 18px 45px rgba(6, 47, 85, 0.10);
  --shadow-lg: 0 28px 70px rgba(6, 47, 85, 0.16);
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .site-header__inner,
html[dir="rtl"] .topbar__inner,
html[dir="rtl"] .mobile-nav-panel__top {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-dropdown__menu {
  left: auto;
  right: 0;
  text-align: right;
}

html[dir="rtl"] .nav__link::after {
  left: auto;
  right: 0;
  transform-origin: right;
}

html[dir="rtl"] .footer__grid {
  direction: rtl;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(40, 167, 216, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(7, 95, 168, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--ctm-off-white) 34%, #ffffff 100%);
  color: var(--ctm-charcoal);
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.section,
.faq-group {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: linear-gradient(90deg, var(--ctm-blue-deep), var(--ctm-navy));
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
}

.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.topbar__cta {
  color: var(--ctm-white);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.topbar__cta:hover,
.topbar__cta:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 249, 251, 0.84);
  border-bottom: 1px solid rgba(220, 229, 235, 0.78);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand__mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

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

.brand__name {
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
}

.brand__sub {
  color: var(--ctm-grey);
  font-size: 0.86rem;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav__link {
  color: var(--ctm-navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--ctm-blue), var(--ctm-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

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

.btn--primary {
  color: var(--ctm-white);
  background: linear-gradient(135deg, var(--ctm-blue) 0%, var(--ctm-blue-dark) 100%);
  box-shadow: 0 14px 26px rgba(7, 95, 168, 0.22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 20px 36px rgba(7, 95, 168, 0.28);
}

.btn--secondary {
  color: var(--ctm-blue-dark);
  background: var(--ctm-white);
  border: 1px solid var(--ctm-border);
}

.btn--dark {
  color: var(--ctm-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  padding: 2rem 0 1.2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 2rem;
  align-items: stretch;
}

.hero__copy {
  padding: 2.5rem 0 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ctm-blue-dark);
  background: rgba(7, 95, 168, 0.08);
  border: 1px solid rgba(7, 95, 168, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title,
.section-title {
  margin: 0;
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.hero__title {
  margin-top: 1rem;
  font-size: clamp(3rem, 5.2vw, 5.3rem);
  max-width: 12ch;
}

.hero__lede {
  margin: 1.25rem 0 0;
  max-width: 65ch;
  font-size: clamp(1.04rem, 1.2vw, 1.15rem);
  color: var(--ctm-grey);
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero__trust {
  margin: 1.1rem 0 0;
  color: var(--ctm-blue-dark);
  font-weight: 500;
}

.hero__media {
  position: relative;
  padding: 0.5rem 0 1.2rem;
}

.photo-card,
.panel,
.feature-card,
.route-card,
.service-card,
.station-card,
.story-card,
.policy-card,
.accordion-card {
  background: var(--ctm-white);
  border: 1px solid rgba(220, 229, 235, 0.9);
  box-shadow: var(--shadow);
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 100%;
}

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

.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 47, 85, 0.02) 0%, rgba(6, 47, 85, 0.16) 100%);
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 300px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(16, 36, 55, 0.90);
  color: var(--ctm-white);
  backdrop-filter: blur(14px);
}

.hero__badge strong {
  font-size: 1rem;
}

.hero__badge span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.section {
  padding: 4.8rem 0;
  position: relative;
}

.section--tight {
  padding-top: 3.4rem;
}

.section--dark {
  color: rgba(255, 255, 255, 0.94);
  background:
    radial-gradient(circle at top left, rgba(40, 167, 216, 0.22), transparent 28%),
    linear-gradient(135deg, var(--ctm-navy), var(--ctm-blue-deep));
}

.section--dark .eyebrow {
  color: var(--ctm-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.section--dark .section-title,
.section--dark .section-copy,
.section--dark .panel-copy,
.section--dark .muted,
.section--dark .step-copy,
.section--dark .route-card__copy,
.section--dark .route-card__note,
.section--dark .service-card__copy,
.section--dark .station-card__copy,
.section--dark .faq-answer,
.section--dark .footer {
  color: rgba(255, 255, 255, 0.92);
}

.section--dark .panel,
.section--dark .feature-card,
.section--dark .route-card,
.section--dark .service-card,
.section--dark .station-card,
.section--dark .accordion-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section-copy {
  margin: 0;
  max-width: 72ch;
  color: var(--ctm-grey);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.panel {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.booking-panel {
  margin-top: 1.5rem;
  border-radius: 28px;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.booking-panel__title {
  margin: 0;
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
}

.booking-panel__copy {
  margin: 0.5rem 0 1.2rem;
  color: var(--ctm-grey);
}

.search-form {
  display: grid;
  gap: 1rem;
}

.search-form__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  grid-column: span 2;
}

.field--short {
  grid-column: span 1;
}

.field label {
  color: var(--ctm-navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0.82rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--ctm-border);
  background: #fff;
  color: var(--ctm-charcoal);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.field input:focus,
.field select:focus {
  border-color: rgba(7, 95, 168, 0.65);
  box-shadow: 0 0 0 4px rgba(7, 95, 168, 0.12);
}

.search-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.search-status {
  margin: 0;
  color: var(--ctm-blue-dark);
  font-weight: 500;
  min-height: 1.5rem;
}

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

.decision-grid,
.feature-grid,
.step-grid,
.utility-grid,
.route-grid,
.service-grid,
.station-grid,
.faq-list,
.text-grid {
  display: grid;
  gap: 1rem;
}

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

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

.feature-card,
.service-card,
.station-card,
.route-card {
  border-radius: 24px;
  padding: 1.2rem;
}

.feature-card h3,
.service-card h3,
.station-card h3,
.route-card h3 {
  margin: 0 0 0.55rem;
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.08;
}

.feature-card p,
.service-card p,
.station-card p,
.route-card p {
  margin: 0;
  color: var(--ctm-grey);
}

.feature-card__tag,
.route-card__tag,
.station-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.72rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--ctm-blue-soft);
  color: var(--ctm-blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.route-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(7, 95, 168, 0.04), transparent 40%);
  pointer-events: none;
}

.route-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.route-card__note {
  padding-left: 0.9rem;
  border-left: 3px solid rgba(7, 95, 168, 0.2);
  color: var(--ctm-blue-dark);
  font-weight: 500;
}

.route-card__action {
  justify-self: start;
}

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

.step-card {
  padding: 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(220, 229, 235, 0.9);
  box-shadow: var(--shadow);
}

.step-card__media {
  overflow: hidden;
  margin-top: 0.95rem;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(7, 95, 168, 0.08), rgba(40, 167, 216, 0.10));
  border: 1px solid rgba(220, 229, 235, 0.8);
}

.step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-card h3 {
  margin: 0 0 0.45rem;
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
}

.step-card p {
  margin: 0;
  color: var(--ctm-grey);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 1.4rem;
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
}

.image-stack {
  display: grid;
  gap: 0.9rem;
}

.image-stack figure,
.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-stack img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame--tall img {
  aspect-ratio: 4 / 5;
}

.image-frame--wide img {
  aspect-ratio: 16 / 10;
}

.image-stack figure:first-child img {
  aspect-ratio: 16 / 11;
}

.image-stack figure:last-child img {
  aspect-ratio: 4 / 3;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.comparison-card {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison-card h3 {
  margin: 0 0 0.6rem;
  color: var(--ctm-white);
  font-family: 'Fraunces', Georgia, serif;
}

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

.comparison-card li + li {
  margin-top: 0.4rem;
}

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

.content-block {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 229, 235, 0.9);
  box-shadow: var(--shadow);
}

.content-block h3 {
  margin: 0 0 0.55rem;
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
}

.content-block p,
.content-block li {
  color: var(--ctm-grey);
}

.bullet-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.bullet-list li::marker {
  color: var(--ctm-blue);
}

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

.station-card {
  display: grid;
  gap: 0.55rem;
}

.station-card__label {
  color: var(--ctm-blue-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 229, 235, 0.9);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 0 0 0.55rem;
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
}

.price-card p {
  margin: 0;
  color: var(--ctm-grey);
}

.night-grid,
.luggage-grid,
.abroad-grid,
.travel-check-grid,
.change-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.night-card,
.luggage-card,
.abroad-card,
.travel-check-card,
.change-card {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 229, 235, 0.9);
  box-shadow: var(--shadow);
}

.night-card h3,
.luggage-card h3,
.abroad-card h3,
.travel-check-card h3,
.change-card h3 {
  margin: 0 0 0.55rem;
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
}

.night-card p,
.luggage-card p,
.abroad-card p,
.travel-check-card p,
.change-card p {
  margin: 0;
  color: var(--ctm-grey);
}

.checklist {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.checklist li::marker {
  color: var(--success);
}

.dark-banner {
  border-radius: 30px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(4, 15, 31, 0.20);
}

.dark-banner__inner {
  display: grid;
  gap: 1rem;
}

.faq-section .section-head--wide {
  max-width: 62rem;
  margin-bottom: 2rem;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 229, 235, 0.9);
  box-shadow: var(--shadow);
}

.faq-nav a {
  padding: 0.78rem 0.92rem;
  border-radius: 16px;
  color: var(--ctm-navy);
  font-weight: 700;
  line-height: 1.2;
  background: rgba(232, 243, 251, 0.66);
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.faq-nav a:hover,
.faq-nav a:focus-visible {
  transform: translateY(-1px);
  background: var(--ctm-white);
  border-color: rgba(7, 95, 168, 0.18);
  color: var(--ctm-blue-dark);
}

.faq-content {
  display: grid;
  gap: 1rem;
}

.faq-group {
  scroll-margin-top: 110px;
}

.faq-group__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  color: var(--ctm-white);
  text-align: left;
  font-weight: 700;
  background: linear-gradient(135deg, var(--ctm-blue-deep), var(--ctm-blue));
  box-shadow: var(--shadow);
  transition: transform 160ms ease, filter 160ms ease;
}

.faq-group__toggle:hover,
.faq-group__toggle:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.faq-group__toggle:focus-visible {
  outline: 3px solid rgba(40, 167, 216, 0.35);
  outline-offset: 3px;
}

.faq-group__count {
  display: inline-flex;
  align-items: center;
  margin-left: 0.45rem;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.faq-group__chevron {
  width: 0.82rem;
  height: 0.82rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-group__toggle[aria-expanded="true"] .faq-group__chevron {
  transform: rotate(-135deg);
}

.faq-group__panel {
  margin-top: 0.9rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 229, 235, 0.9);
  box-shadow: var(--shadow);
}

.faq-accordion {
  display: grid;
  gap: 0.75rem;
}

.faq-accordion__item {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(220, 229, 235, 0.9);
  background: rgba(255, 255, 255, 0.94);
}

.faq-accordion__button {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  text-align: left;
  color: var(--ctm-navy);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.96));
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.faq-accordion__button:hover,
.faq-accordion__button:focus-visible {
  background: rgba(232, 243, 251, 0.74);
}

.faq-accordion__button:focus-visible {
  outline: 3px solid rgba(7, 95, 168, 0.25);
  outline-offset: -3px;
}

.faq-accordion__icon {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ctm-blue-soft);
  color: var(--ctm-blue-dark);
  flex: 0 0 auto;
}

.faq-accordion__icon::before {
  content: '+';
  font-size: 1.1rem;
  line-height: 1;
}

.faq-accordion__button[aria-expanded="true"] .faq-accordion__icon::before {
  content: '−';
}

.faq-accordion__panel {
  padding: 0 1.1rem 1.1rem;
  color: var(--ctm-grey);
}

.faq-accordion__panel p {
  margin: 0;
}

.faq-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(7, 95, 168, 0.06), rgba(40, 167, 216, 0.12));
  border: 1px solid rgba(220, 229, 235, 0.9);
  box-shadow: var(--shadow);
}

.faq-inline-cta .eyebrow {
  margin-bottom: 0.25rem;
}

.faq-inline-cta h3 {
  margin: 0 0 0.35rem;
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
}

.faq-inline-cta p {
  margin: 0;
  color: var(--ctm-grey);
}

.faq-inline-cta .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.faq-final-cta {
  padding-top: 0;
}

.faq-final-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 1.9rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--ctm-blue-deep), var(--ctm-blue-dark));
  color: var(--ctm-white);
  box-shadow: var(--shadow-lg);
}

.faq-final-cta__card h2 {
  margin: 0.2rem 0 0.6rem;
  color: var(--ctm-white);
  font-family: 'Fraunces', Georgia, serif;
}

.faq-final-cta__card p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.82);
}

.faq-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.faq-final-cta__actions .btn--secondary {
  color: var(--ctm-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-final-cta__actions .btn--secondary:hover,
.faq-final-cta__actions .btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 960px) {
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-nav {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding: 0.85rem;
  }

  .faq-nav a {
    white-space: nowrap;
  }

  .faq-inline-cta,
  .faq-final-cta__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .faq-group__toggle,
  .faq-accordion__button {
    padding: 0.95rem 1rem;
  }

  .faq-group__panel {
    padding: 0.85rem;
  }

  .faq-final-cta__card {
    padding: 1.4rem;
  }
}

.faq-list {
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 22px;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 229, 235, 0.9);
  font-weight: 700;
  color: var(--ctm-navy);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ctm-blue-soft);
  color: var(--ctm-blue-dark);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.2rem 1.15rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 229, 235, 0.9);
  border-top: 0;
  color: var(--ctm-grey);
}

.footer {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, #071b30 0%, #071320 100%);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.footer__brand p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer__title {
  margin: 0 0 0.9rem;
  color: var(--ctm-white);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.74);
}

.footer__list a:hover,
.footer__list a:focus-visible {
  color: var(--ctm-white);
}

.footer__legal {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.page-shell {
  padding: 3rem 0 4rem;
}

.page-hero {
  padding: 1rem 0 0;
}

.page-card {
  border-radius: 28px;
  padding: 1.5rem;
  background: var(--ctm-white);
  border: 1px solid rgba(220, 229, 235, 0.9);
  box-shadow: var(--shadow);
}

.page-card h1,
.page-card h2 {
  margin: 0;
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
}

.page-card p {
  color: var(--ctm-grey);
}

.page-nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.utility-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 229, 235, 0.9);
  box-shadow: var(--shadow);
}

.utility-card h3 {
  margin: 0;
  color: var(--ctm-navy);
  font-family: 'Fraunces', Georgia, serif;
}

.utility-card p {
  margin: 0;
  color: var(--ctm-grey);
}

.footer-spacer {
  height: 1px;
}

@media (max-width: 1100px) {
  .hero__grid,
  .split-layout,
  .split-layout--reverse,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .decision-grid,
  .comparison-grid,
  .price-grid,
  .station-grid,
  .route-grid,
  .step-grid,
  .content-grid,
  .utility-grid,
  .night-grid,
  .luggage-grid,
  .abroad-grid,
  .travel-check-grid,
  .change-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .field,
  .field--short {
    grid-column: span 1;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .masthead {
    display: flex;
    justify-content: space-between;
    gap: 0.65rem;
    align-items: center;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.65rem;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand__text {
    min-width: 0;
  }

  .brand__name {
    font-size: 1rem;
  }

  .brand__sub {
    display: none;
  }

  .masthead__actions {
    width: auto;
    display: inline-flex;
    justify-content: flex-end;
    gap: 0.45rem;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    justify-content: center;
  }

  .btn--cta {
    display: none;
  }

  .masthead__language {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .mobile-nav-panel {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

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

  .mobile-nav-panel__sheet {
    gap: 0.85rem;
  }

  .hero__copy {
    padding-top: 1.4rem;
  }

  .hero__title {
    max-width: 100%;
  }

  .hero__badge {
    max-width: calc(100% - 2rem);
  }

  .decision-grid,
  .comparison-grid,
  .price-grid,
  .station-grid,
  .route-grid,
  .step-grid,
  .content-grid,
  .utility-grid,
  .night-grid,
  .luggage-grid,
  .abroad-grid,
  .travel-check-grid,
  .change-grid {
    grid-template-columns: 1fr;
  }

  .search-form__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .booking-panel,
  .dark-banner {
    padding: 1.1rem;
  }
}

/* New CTMBus homepage theme */
:root {
  --ctm-blue: #0f4c81;
  --ctm-blue-dark: #08355e;
  --ctm-blue-deep: #062947;
  --ctm-cyan: #00a8e8;
  --ctm-amber: #ff9f1c;
  --ctm-white: #ffffff;
  --ctm-off-white: #f8f9fa;
  --ctm-ink: #102437;
  --ctm-slate: #526172;
  --ctm-border: rgba(16, 36, 55, 0.12);
  --hero-shadow: 0 30px 80px rgba(6, 29, 53, 0.26);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(0, 168, 232, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 159, 28, 0.10), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, var(--ctm-off-white) 45%, #ffffff 100%);
  color: var(--ctm-ink);
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.topbar,
.site-header {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 53, 94, 0.10);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.masthead {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(6, 41, 71, 0.16);
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  color: var(--ctm-blue-dark);
}

.brand__sub {
  color: var(--ctm-slate);
  font-size: 0.88rem;
}

.masthead__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-wrap: nowrap;
}

.masthead__actions .nav-dropdown--language {
  order: 2;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 168, 232, 0.16);
  background: rgba(0, 168, 232, 0.06);
  color: var(--ctm-blue-dark);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav-toggle::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.mobile-nav-toggle[aria-expanded="true"]::after {
  transform: rotate(225deg) translateY(1px);
}

.mobile-nav-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  padding: calc(0.8rem + env(safe-area-inset-top)) 0 calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(6, 29, 53, 0.56);
  backdrop-filter: blur(12px);
}

.mobile-nav-panel__sheet {
  display: grid;
  gap: 1rem;
  width: min(calc(100% - 1rem), 760px);
  max-height: 100%;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 249, 250, 0.97));
  border: 1px solid rgba(16, 36, 55, 0.08);
  box-shadow: 0 30px 60px rgba(6, 29, 53, 0.22);
  overflow: auto;
}

.mobile-nav-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-nav-panel__eyebrow {
  margin: 0 0 0.2rem;
  color: var(--ctm-cyan);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-nav-panel__top h2 {
  margin: 0;
  color: var(--ctm-blue-deep);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.45rem;
}

.mobile-nav-close {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 168, 232, 0.16);
  background: rgba(0, 168, 232, 0.07);
  color: var(--ctm-blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.mobile-nav-panel__book {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ctm-amber), #ffb84d);
  color: #111827;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(255, 159, 28, 0.28);
}

.mobile-nav-panel__group {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 36, 55, 0.10);
  box-shadow: 0 18px 36px rgba(6, 41, 71, 0.08);
}

.mobile-nav-panel__group--language {
  background: linear-gradient(180deg, rgba(0, 168, 232, 0.10), rgba(255, 255, 255, 0.96));
  border-color: rgba(0, 168, 232, 0.18);
}

.mobile-nav-panel__label {
  margin: 0;
  color: var(--ctm-blue-dark);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-nav-panel__links {
  display: grid;
  gap: 0.5rem;
}

.mobile-nav-panel__links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 168, 232, 0.12);
  background: rgba(0, 168, 232, 0.05);
  color: var(--ctm-blue-deep);
  font-weight: 700;
}

.mobile-nav-panel__group--language .mobile-nav-panel__links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-nav-panel__group--language .mobile-nav-panel__links a {
  justify-content: flex-start;
  gap: 0.45rem;
  white-space: nowrap;
}

.mobile-nav-open {
  overflow: hidden;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}

.site-nav .nav-dropdown--language {
  display: none;
}

.site-nav > a,
.nav-dropdown__button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 168, 232, 0.16);
  background: rgba(0, 168, 232, 0.06);
  color: var(--ctm-blue-dark);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown__button:hover,
.nav-dropdown__button:focus-visible {
  transform: translateY(-1px);
  background: rgba(0, 168, 232, 0.11);
  box-shadow: 0 10px 18px rgba(0, 168, 232, 0.10);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__button {
  gap: 0.45rem;
}

.nav-dropdown__button::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown__button::after,
.nav-dropdown__button[aria-expanded="true"]::after {
  transform: rotate(225deg) translateY(1px);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 280px;
  padding: 0.8rem;
  display: grid;
  gap: 0.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 36, 55, 0.10);
  box-shadow: 0 24px 44px rgba(6, 41, 71, 0.18);
  backdrop-filter: blur(18px);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  color: var(--ctm-blue-deep);
  font-weight: 700;
  background: rgba(15, 76, 129, 0.04);
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: rgba(0, 168, 232, 0.12);
}

.masthead__language .nav-dropdown__button {
  min-width: 6.2rem;
  justify-content: center;
  padding-inline: 0.6rem;
  font-size: 0.82rem;
  border-color: rgba(255, 159, 28, 0.34);
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.18), rgba(0, 168, 232, 0.08));
  color: var(--ctm-blue-deep);
}

.masthead__language .nav-dropdown__menu {
  left: auto;
  right: 0;
}

.masthead__actions .btn--cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown[data-force-closed="true"] .nav-dropdown__menu {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-6px) !important;
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown__menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -0.7rem;
    height: 0.7rem;
  }
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn--cta,
.btn--route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  background: linear-gradient(135deg, var(--ctm-amber), #ffb547);
  color: #1f1a12;
  box-shadow: 0 16px 30px rgba(255, 159, 28, 0.28);
}

.btn--cta:hover,
.btn--cta:focus-visible,
.btn--route:hover,
.btn--route:focus-visible {
  box-shadow: 0 22px 36px rgba(255, 159, 28, 0.34);
}

.hero {
  position: relative;
  padding: 3.5rem 0 6.5rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 41, 71, 0.84), rgba(15, 76, 129, 0.78)),
    url('/ctmbus-images/all-images/coach-exterior.jpg') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(6, 41, 71, 0.24), rgba(6, 41, 71, 0.52));
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 2rem;
  text-align: center;
}

.hero__copy {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.95);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.65rem, 6vw, 5.5rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  margin: 1rem auto 0;
  max-width: 58ch;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: rgba(255, 255, 255, 0.94);
}

.hero__lede {
  margin: 0.9rem auto 0;
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.98rem;
}

.hero__widget-shell {
  width: min(100%, 760px);
  margin: 0 auto;
}

.glass-card {
  padding: 1rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--hero-shadow);
  backdrop-filter: blur(22px);
}

#powered {
  margin-top: 0.45rem;
  text-align: right;
}

#powered a {
  display: inline-block;
  min-width: 110px;
  min-height: 18px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(248, 249, 250, 0.95), rgba(255, 255, 255, 0.95));
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.metric-card {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(6, 29, 53, 0.12);
  backdrop-filter: blur(16px);
}

.metric-card strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.metric-card span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-head h2 {
  margin: 0.8rem 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ctm-blue-deep);
}

.section-head p:last-child {
  margin: 0.85rem 0 0;
  color: var(--ctm-slate);
  font-size: 1.02rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--ctm-border);
  box-shadow: 0 18px 36px rgba(6, 41, 71, 0.10);
}

.highlight-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.highlight-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 41, 71, 0.05), rgba(6, 41, 71, 0.34));
  pointer-events: none;
}

.highlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight-card__body {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem 1.15rem 1.25rem;
}

.highlight-card__eyebrow {
  margin: 0;
  color: var(--ctm-blue);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight-card__body h3 {
  margin: 0;
  color: var(--ctm-blue-deep);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.08;
}

.highlight-card__body p:last-child {
  margin: 0;
  color: var(--ctm-slate);
}

.routes-grid,
.value-grid,
.steps-grid {
  display: grid;
  gap: 1rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid var(--ctm-border);
  box-shadow: 0 18px 36px rgba(6, 41, 71, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.schedule-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 1rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(16, 36, 55, 0.08);
  vertical-align: middle;
}

.schedule-table th {
  background: linear-gradient(180deg, rgba(15, 76, 129, 0.06), rgba(15, 76, 129, 0.02));
  color: var(--ctm-blue-deep);
  font-size: 0.92rem;
  white-space: nowrap;
}

.schedule-table td {
  color: var(--ctm-slate);
}

.schedule-table tr:last-child td {
  border-bottom: 0;
}

.btn--route-table {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  white-space: nowrap;
}

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

.route-card,
.value-card,
.step-card,
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ctm-border);
  box-shadow: 0 18px 36px rgba(6, 41, 71, 0.08);
}

.route-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.route-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.08), transparent 38%);
  pointer-events: none;
}

.route-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
}

.route-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 41, 71, 0.05), rgba(6, 41, 71, 0.32));
  pointer-events: none;
}

.route-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.route-card__top {
  display: flex;
  gap: 0.8rem;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.route-card__route {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.05;
  color: var(--ctm-blue-deep);
}

.route-card__price {
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 159, 28, 0.14);
  color: #8a4e00;
  font-size: 0.87rem;
  font-weight: 800;
  white-space: nowrap;
}

.route-card__meta {
  margin: 0.85rem 0 0;
  font-weight: 700;
  color: var(--ctm-blue);
}

.route-card__copy {
  margin: 0;
  color: var(--ctm-slate);
}

.route-card .btn--route {
  margin-top: 0.15rem;
}

.btn--route {
  width: 100%;
}

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

.value-card {
  border-radius: 24px;
  padding: 1.25rem;
}

.value-card__media {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(7, 95, 168, 0.08), rgba(40, 167, 216, 0.10));
  border: 1px solid rgba(220, 229, 235, 0.8);
}

.value-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-card h3 {
  margin: 0.9rem 0 0.55rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.08;
  color: var(--ctm-blue-deep);
}

.value-card p,
.step-card p {
  margin: 0;
  color: var(--ctm-slate);
}

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

.ops-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ctm-border);
  box-shadow: 0 18px 36px rgba(6, 41, 71, 0.08);
}

.ops-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.ops-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 41, 71, 0.04), rgba(6, 41, 71, 0.28));
  pointer-events: none;
}

.ops-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ops-card__body {
  padding: 1.2rem;
}

.ops-card h3 {
  margin: 0 0 0.8rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  color: var(--ctm-blue-deep);
}

.ops-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ctm-slate);
  display: grid;
  gap: 0.55rem;
}

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

.step-card {
  position: relative;
  border-radius: 24px;
  padding: 1.3rem;
}

.step-card__media {
  margin-top: 0.85rem;
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ctm-blue), var(--ctm-cyan));
  color: var(--ctm-white);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.step-card h3 {
  margin: 0.95rem 0 0.55rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.45rem;
  color: var(--ctm-blue-deep);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.2rem;
  font-weight: 800;
  color: var(--ctm-blue-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 168, 232, 0.10);
  color: var(--ctm-blue);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item__answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--ctm-slate);
}

.travel-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.4rem;
  align-items: center;
}

.travel-copy h2 {
  margin: 0.8rem 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ctm-blue-deep);
}

.travel-copy p {
  margin: 0.85rem 0 0;
  color: var(--ctm-slate);
  font-size: 1.02rem;
}

.travel-features {
  margin-top: 1.2rem;
}

.travel-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.travel-collage__main,
.travel-collage__tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: var(--ctm-white);
  box-shadow: 0 24px 56px rgba(6, 41, 71, 0.14);
}

.travel-collage__main img,
.travel-collage__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.travel-collage__main img {
  aspect-ratio: 4 / 5;
}

.travel-collage__stack {
  display: grid;
  gap: 1rem;
}

.travel-collage__tile img {
  aspect-ratio: 16 / 10;
}

.travel-collage__main::after,
.travel-collage__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 41, 71, 0.06), rgba(6, 41, 71, 0.42));
  pointer-events: none;
}

.travel-collage figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgba(6, 41, 71, 0.82);
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.travel-collage figcaption strong {
  font-size: 1rem;
}

.travel-collage figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.footer {
  background: linear-gradient(180deg, var(--ctm-blue-deep), #07192b);
  color: rgba(255, 255, 255, 0.90);
  padding: 4.25rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer__grid > div {
  border-radius: 22px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: none;
  min-width: 0;
}

.brand--footer .brand__name {
  color: var(--ctm-white);
}

.brand--footer .brand__sub {
  color: rgba(255, 255, 255, 0.70);
}

.footer__brand p,
.footer__note {
  color: rgba(255, 255, 255, 0.74);
}

.footer h3 {
  margin: 0 0 0.85rem;
  color: var(--ctm-white);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--ctm-white);
}

.footer__note {
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer__grid ul a {
  display: inline-flex;
  line-height: 1.35;
}

.footer__grid h3 {
  overflow-wrap: anywhere;
}

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

@media (max-width: 1080px) {
  .masthead {
    align-items: center;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .routes-grid,
  .highlight-grid,
  .value-grid,
  .steps-grid,
  .metrics-row,
  .travel-layout,
  .ops-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .travel-collage {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 0 7.5rem;
    background-position: center top;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .hero__subtitle {
    font-size: 1.02rem;
  }

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

  .step-card__media {
    margin-top: 0.75rem;
  }

  .site-nav {
    gap: 0.45rem;
  }

  .site-nav > a,
  .nav-dropdown__button {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    width: 100%;
    max-height: 48vh;
    overflow: auto;
    margin-top: 0.55rem;
  }

  .glass-card {
    padding: 0.82rem;
    border-radius: 24px;
  }

  .section {
    padding: 3.8rem 0;
  }

  .footer__grid > div {
    padding: 0.95rem;
  }

  .footer h3 {
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
  }

  .footer ul {
    gap: 0.45rem;
  }

  .mobile-search-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
    background: rgba(6, 41, 71, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    z-index: 60;
    box-shadow: 0 -12px 26px rgba(6, 29, 53, 0.22);
  }

  .mobile-search-bar__button {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ctm-amber), #ffb547);
    color: #1f1a12;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  body {
    padding-bottom: 84px;
  }
}

@media (max-width: 780px) {
  .masthead {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .masthead__actions {
    margin-left: 0;
    flex: 0 0 auto;
  }

  .site-nav {
    display: none !important;
  }

  .btn--cta {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: inline-flex !important;
  }

  .mobile-nav-panel {
    display: flex !important;
  }

  .mobile-nav-panel[hidden] {
    display: none !important;
  }
}
