:root {
  --ink: #17131f;
  --ink-soft: #544c61;
  --paper: #fbf9fe;
  --white: #ffffff;
  --violet-950: #2a0d45;
  --violet-900: #381158;
  --violet-800: #4b176f;
  --violet-700: #64218f;
  --violet-600: #7d35a9;
  --violet-500: #9554bd;
  --violet-300: #c9a9df;
  --violet-200: #e4d4f0;
  --violet-100: #f2eaf8;
  --lavender: #d9c2ef;
  --lime: #d9f36c;
  --line: rgba(56, 17, 88, 0.14);
  --shadow: 0 22px 70px rgba(55, 20, 82, 0.14);
  --radius-lg: 32px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }

.project-poster-card {
  position: absolute;
  inset: 5% 7% 3% 11%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(42,13,69,.32);
  border: 1px solid rgba(255,255,255,.65);
  transform: rotate(1.2deg);
  background: #c8b2dc;
}
.project-poster-card img { object-fit: contain; background: #e7e0ec; }
.route-ticket { right: -2%; bottom: 4%; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 78px);
  background: rgba(251, 249, 254, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(75, 23, 111, .08);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--violet-900); color: white; font-family: "Playfair Display", serif;
  font-size: 21px; font-style: italic;
}
.brand strong { display: block; font-size: 13px; letter-spacing: .14em; }
.brand small { display: block; color: var(--ink-soft); font-size: 11px; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 600; }
.nav a { color: var(--ink-soft); }
.nav a:hover { color: var(--violet-700); }
.nav-cta { border: 0; border-radius: 999px; background: var(--ink); color: white; padding: 12px 18px; }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 52px;
  padding: 72px clamp(24px, 6vw, 92px) 92px;
  position: relative;
  background:
    radial-gradient(circle at 8% 5%, rgba(188, 148, 221, .35), transparent 30%),
    radial-gradient(circle at 78% 78%, rgba(115, 49, 159, .12), transparent 28%),
    var(--paper);
}
.hero-copy { max-width: 700px; position: relative; z-index: 2; }
.eyebrow, .kicker { color: var(--violet-700); font-weight: 700; letter-spacing: .17em; font-size: 11px; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 34px; height: 1px; background: var(--violet-600); }
.hero h1, .section h2, .success-modal h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -.05em;
}
.hero h1 { font-size: clamp(64px, 7.7vw, 118px); line-height: .84; margin: 28px 0 30px; }
.hero h1 em, .booking-intro h2 em { color: var(--violet-700); }
.hero-lead { max-width: 580px; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.btn {
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--violet-800); color: white; box-shadow: 0 10px 24px rgba(75, 23, 111, .18); }
.btn-primary:hover { background: var(--violet-950); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.58); color: var(--ink); }
.btn-ghost-dark { border-color: rgba(37, 20, 49, .18); background: white; color: var(--ink); }
.hero-stats { display: flex; gap: 0; margin-top: 58px; border-top: 1px solid var(--line); padding-top: 24px; }
.hero-stats div { padding-right: 36px; margin-right: 36px; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { font-family: "Playfair Display", serif; font-size: 28px; color: var(--violet-800); display: block; }
.hero-stats span { color: var(--ink-soft); font-size: 12px; }

.hero-visual { position: relative; min-height: 620px; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 450px; height: 450px; right: 2%; top: 8%; background: linear-gradient(135deg, #a575c6, #4b176f); opacity: .24; }
.orb-two { width: 190px; height: 190px; left: 5%; bottom: 2%; background: var(--lime); opacity: .22; }
.photo-card { position: absolute; overflow: hidden; box-shadow: var(--shadow); background: var(--violet-200); }
.photo-main { width: min(72%, 470px); height: 560px; right: 7%; top: 18px; border-radius: 220px 220px 28px 28px; border: 8px solid rgba(255,255,255,.72); }
.photo-main img { object-position: center 20%; }
.photo-label { position: absolute; left: 22px; bottom: 22px; background: rgba(31, 10, 50, .8); color: white; padding: 9px 12px; font-size: 10px; font-weight: 700; letter-spacing: .13em; border-radius: 999px; backdrop-filter: blur(10px); }
.photo-small { width: 180px; height: 240px; left: 1%; bottom: 44px; border-radius: 18px; transform: rotate(-5deg); border: 6px solid white; }
.floating-ticket { position: absolute; right: 0; bottom: 28px; width: 250px; padding: 18px 20px; border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.floating-ticket small { color: var(--violet-700); letter-spacing: .16em; font-weight: 700; font-size: 9px; }
.floating-ticket strong { display: block; font-family: "Playfair Display", serif; font-size: 28px; margin: 2px 0; }
.floating-ticket span { font-size: 12px; color: var(--ink-soft); }

.marquee { overflow: hidden; background: var(--violet-950); color: var(--violet-200); padding: 13px 0; white-space: nowrap; font-size: 11px; letter-spacing: .22em; font-weight: 700; }
.marquee div { width: max-content; animation: marquee 22s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 110px clamp(24px, 6vw, 92px); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 46px; }
.section-heading h2, .booking-intro h2, .faq-list h2 { font-size: clamp(42px, 5vw, 74px); line-height: .98; margin: 12px 0 0; }
.section-heading > p { color: var(--ink-soft); line-height: 1.8; max-width: 460px; }
.trip-section { background: #fff; }
.trip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trip-card { min-height: 270px; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; background: #fff; }
.trip-card-featured { background: var(--violet-900); color: white; }
.card-icon { margin-bottom: auto; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--violet-100); color: var(--violet-800); font-weight: 700; }
.trip-card-featured .card-icon { background: rgba(255,255,255,.12); color: var(--lavender); }
.card-label { font-size: 10px; letter-spacing: .18em; color: var(--violet-600); font-weight: 700; margin: 0 0 8px; }
.trip-card-featured .card-label { color: var(--lavender); }
.trip-card h3 { font-family: "Playfair Display", serif; font-size: 26px; margin: 0 0 7px; }
.trip-card p:last-child { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.trip-card-featured p:last-child { color: rgba(255,255,255,.68); }
.route-strip { margin-top: 22px; border-radius: var(--radius-md); background: var(--violet-100); padding: 28px 36px; display: grid; grid-template-columns: 1fr .9fr 1fr; align-items: center; }
.route-node { display: flex; align-items: center; gap: 14px; }
.route-node > span { width: 16px; height: 16px; border-radius: 50%; background: white; border: 4px solid var(--violet-600); box-shadow: 0 0 0 5px rgba(125,53,169,.1); }
.route-node small { font-size: 9px; color: var(--violet-600); font-weight: 700; letter-spacing: .15em; }
.route-node strong { display: block; font-size: 14px; }
.route-node p { margin: 2px 0 0; color: var(--ink-soft); font-size: 11px; }
.route-line { display: flex; align-items: center; gap: 10px; color: var(--violet-600); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.route-line i { flex: 1; height: 1px; background: rgba(100,33,143,.25); }

.booking-shell { background: var(--violet-950); display: grid; grid-template-columns: .73fr 1.27fr; gap: 55px; align-items: start; }
.booking-intro { color: white; position: sticky; top: 124px; }
.booking-intro .kicker { color: var(--lavender); }
.booking-intro h2 { margin: 12px 0 26px; }
.booking-intro > p:not(.kicker) { color: rgba(255,255,255,.66); line-height: 1.8; max-width: 520px; }
.steps-mini { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.steps-mini div { display: flex; align-items: center; gap: 12px; }
.steps-mini span { width: 34px; height: 34px; flex: 0 0 34px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; display: grid; place-items: center; color: var(--lavender); font-size: 11px; }
.steps-mini p { font-size: 11px; color: rgba(255,255,255,.58); line-height: 1.5; margin: 0; }
.steps-mini strong { color: white; font-size: 12px; }
.notice-card { margin-top: 38px; padding: 18px; border-radius: 15px; background: rgba(217,243,108,.1); border: 1px solid rgba(217,243,108,.16); }
.notice-card strong { color: var(--lime); font-size: 12px; }
.notice-card p { color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.6; margin: 6px 0 0; }

.booking-form { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px); box-shadow: 0 40px 80px rgba(0,0,0,.25); }
.backend-notice { margin-bottom: 24px; padding: 14px 16px; border-radius: 12px; font-size: 12px; line-height: 1.55; background: #fff7df; border: 1px solid #f0d27b; color: #6b5311; }
.backend-notice code { background: rgba(0,0,0,.05); padding: 2px 5px; border-radius: 4px; }
.form-step { display: none; animation: fade .25s ease; }
.form-step.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.form-step-head { display: flex; gap: 18px; margin-bottom: 30px; align-items: flex-start; }
.form-step-head > span { background: var(--violet-100); color: var(--violet-700); border-radius: 999px; padding: 7px 10px; font-size: 9px; font-weight: 700; letter-spacing: .13em; white-space: nowrap; }
.form-step-head h3 { margin: 0; font-family: "Playfair Display", serif; font-size: 31px; }
.form-step-head p { margin: 4px 0 0; color: var(--ink-soft); font-size: 12px; }
.form-grid { display: grid; gap: 18px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 12px; font-weight: 700; color: #34283f; }
.field.wide { grid-column: 1 / -1; }
.field > span small { font-weight: 500; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(42, 13, 69, .14);
  background: white;
  border-radius: 13px;
  padding: 14px 15px;
  color: var(--ink);
  outline: none;
  transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--violet-500); box-shadow: 0 0 0 4px rgba(149,84,189,.1); }
.field small { color: var(--ink-soft); font-weight: 500; font-size: 10px; line-height: 1.5; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c23c68; }
.fare-preview { margin-top: 28px; background: var(--violet-100); border-radius: 17px; padding: 20px; display: grid; grid-template-columns: 1fr auto 1fr auto 1.2fr; gap: 16px; align-items: center; }
.fare-preview div { text-align: center; }
.fare-preview small { display: block; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.fare-preview strong { display: block; font-family: "Playfair Display", serif; font-size: 27px; margin-top: 3px; color: var(--violet-800); }
.fare-preview > span { color: var(--violet-500); }
.fare-total { background: white; border-radius: 12px; padding: 12px; }

.seat-meta { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.seat-legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 10px; color: var(--ink-soft); }
.seat-legend span { display: flex; align-items: center; gap: 6px; }
.legend-seat { width: 15px; height: 15px; border-radius: 5px 5px 3px 3px; display: inline-block; }
.legend-seat.available { background: white; border: 1px solid rgba(42,13,69,.2); }
.legend-seat.selected { background: var(--violet-700); }
.legend-seat.taken { background: #c9c3ce; }
.legend-seat.staff { background: #ece3a4; border: 1px solid #b7a545; }
.seat-count { font-size: 11px; color: var(--ink-soft); }
.seat-count strong { color: var(--violet-700); font-size: 16px; }
.bus-wrap { max-width: 590px; margin: 0 auto; border: 2px solid rgba(75,23,111,.15); border-radius: 38px 38px 24px 24px; padding: 18px 20px 24px; background: linear-gradient(#fff, #f8f4fb); box-shadow: inset 0 0 0 7px white, inset 0 0 0 8px rgba(75,23,111,.05); }
.exact-front { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: stretch; padding: 0 0 16px; border-bottom: 1px dashed rgba(75,23,111,.16); }
.exact-front > span { align-self: center; text-align: center; color: var(--ink-soft); font-size: 8px; letter-spacing: .16em; }
.driver, .entrance { min-height: 54px; padding: 10px; border-radius: 10px; font-size: 8px; font-weight: 800; display: grid; place-items: end center; letter-spacing: .08em; }
.driver { background: var(--ink); color: white; }
.entrance { border: 1px solid rgba(42,13,69,.22); color: var(--violet-800); background: repeating-linear-gradient(90deg, #fff, #fff 8px, #f3edf8 8px, #f3edf8 10px); writing-mode: vertical-rl; place-items: center; }
.seat-guide-note { text-align: center; margin: 13px 0 5px; color: var(--ink-soft); font-size: 9px; }
.exact-seat-map { display: flex; flex-direction: column; gap: 8px; padding: 12px 0; }
.bus-seat-row { display: grid; grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr); gap: 9px; align-items: center; }
.seat-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.row-label { text-align: center; font-size: 8px; font-weight: 800; color: var(--ink-soft); white-space: nowrap; }
.back-seat-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-top: 4px; padding-top: 9px; border-top: 1px dashed rgba(75,23,111,.16); }
.seat {
  min-height: 38px;
  border: 1px solid rgba(42,13,69,.15);
  border-radius: 8px 8px 4px 4px;
  background: #b8a9d7;
  color: #381158;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
  position: relative;
  transition: .15s ease;
  box-shadow: inset 0 -5px 0 rgba(75,23,111,.22);
}
.seat:hover:not(:disabled) { transform: translateY(-2px); border-color: var(--violet-500); background: #c8bbe0; }
.seat.selected { background: var(--violet-700); color: white; border-color: var(--violet-700); box-shadow: inset 0 -5px 0 rgba(42,13,69,.25), 0 7px 15px rgba(100,33,143,.22); }
.seat.taken { background: #d6d1d9; color: #918896; border-color: #d6d1d9; cursor: not-allowed; text-decoration: line-through; box-shadow: inset 0 -5px 0 rgba(80,70,86,.09); }
.seat.staff-reserved { background: #ece3a4; color: #655a17; border-color: #c5b650; cursor: not-allowed; box-shadow: inset 0 -5px 0 rgba(126,113,37,.16); }
.seat.staff-reserved::before { content: "VOL"; position: absolute; top: 3px; right: 4px; font-size: 6px; letter-spacing: .05em; opacity: .72; }
.bus-back { padding-top: 9px; text-align: center; color: var(--ink-soft); font-size: 8px; letter-spacing: .16em; }
.seat-message { text-align: center; color: var(--ink-soft); font-size: 11px; margin: 14px 0 0; min-height: 17px; }
.seat-message.error { color: #b82e5d; font-weight: 700; }
.seat-guide-reference { max-width: 590px; margin: 14px auto 0; border: 1px solid var(--line); border-radius: 12px; background: white; overflow: hidden; }
.seat-guide-reference summary { cursor: pointer; padding: 12px 14px; color: var(--violet-700); font-size: 10px; font-weight: 800; }
.seat-guide-reference img { height: auto; max-height: 720px; object-fit: contain; border-top: 1px solid var(--line); }

.minor-notice { margin: 20px 0 0; padding: 14px 16px; background: #fff7df; border: 1px solid #f1d584; border-radius: 12px; font-size: 11px; line-height: 1.5; color: #665216; }
.minor-notice strong { display: block; }
.companions-section { margin-top: 34px; }
.subsection-title { display: flex; justify-content: space-between; align-items: end; gap: 20px; border-top: 1px solid var(--line); padding-top: 25px; margin-bottom: 18px; }
.subsection-title span { color: var(--violet-700); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.subsection-title h4 { font-family: "Playfair Display", serif; font-size: 26px; margin: 2px 0 0; }
.subsection-title p { color: var(--ink-soft); font-size: 10px; max-width: 280px; text-align: right; }
.companion-card { padding: 18px; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; background: white; }
.companion-card > strong { display: block; color: var(--violet-700); font-size: 11px; margin-bottom: 13px; }
.companion-fields { display: grid; grid-template-columns: 1.4fr 1fr .75fr; gap: 12px; }

.consent-box { background: var(--violet-100); border-radius: 15px; padding: 18px; margin-bottom: 22px; }
.check-row { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; color: #493b55; font-size: 11px; line-height: 1.55; }
.check-row input { accent-color: var(--violet-700); margin-top: 3px; }
.terms-link { border: 0; background: transparent; color: var(--violet-700); font-weight: 700; font-size: 11px; padding: 0; }
.payment-grid { margin-top: 20px; }
.money-input { display: flex; align-items: center; border: 1px solid rgba(42,13,69,.14); background: white; border-radius: 13px; overflow: hidden; }
.money-input span { padding-left: 14px; color: var(--violet-700); font-weight: 700; }
.money-input input { border: 0; box-shadow: none !important; }
.file-field input { padding: 10px; }
.final-summary { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 10px; margin: 27px 0 16px; }
.final-summary > div { padding: 14px; background: white; border: 1px solid var(--line); border-radius: 12px; }
.final-summary small { display: block; color: var(--ink-soft); font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.final-summary strong { display: block; margin-top: 3px; color: var(--violet-800); font-size: 14px; overflow-wrap: anywhere; }
.btn-submit { width: 100%; border: 0; background: var(--violet-800); color: white; border-radius: 15px; padding: 17px 20px; display: flex; align-items: center; justify-content: space-between; font-size: 15px; }
.btn-submit b { font-size: 20px; }
.btn-submit:disabled { opacity: .55; cursor: wait; transform: none; }
.submit-note { text-align: center; color: var(--ink-soft); font-size: 9px; }
.form-nav { display: flex; justify-content: space-between; align-items: center; gap: 15px; border-top: 1px solid var(--line); padding-top: 24px; margin-top: 30px; }
.step-dots { display: flex; gap: 7px; }
.step-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #d7ccdE; }
.step-dots button.active { width: 24px; border-radius: 99px; background: var(--violet-700); }

.info-section { background: #fff; display: grid; grid-template-columns: 1fr 1fr; padding-top: 0; padding-bottom: 0; padding-right: 0; gap: 60px; }
.info-photo { min-height: 720px; margin-left: calc(clamp(24px, 6vw, 92px) * -1); position: relative; overflow: hidden; }
.info-photo img { object-position: center 18%; }
.purple-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,13,69,.82), rgba(42,13,69,.02)); }
.info-photo-copy { position: absolute; left: clamp(35px, 6vw, 90px); bottom: 68px; color: white; }
.info-photo-copy span { font-size: 27px; }
.info-photo-copy h2 { font-family: "Playfair Display", serif; font-size: clamp(52px, 6vw, 84px); line-height: .88; margin: 12px 0 0; }
.faq-list { padding: 110px clamp(24px, 6vw, 92px) 110px 0; }
.faq-list h2 { margin-bottom: 35px; }
details { border-top: 1px solid var(--line); padding: 20px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; font-weight: 700; font-size: 14px; display: flex; justify-content: space-between; }
summary::after { content: "+"; color: var(--violet-700); font-size: 20px; }
details[open] summary::after { content: "−"; }
details p { color: var(--ink-soft); font-size: 12px; line-height: 1.7; padding-right: 30px; }

.footer { background: #161019; color: white; padding: 55px clamp(24px, 6vw, 92px); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; }
.footer strong { letter-spacing: .14em; font-size: 12px; }
.footer p { color: rgba(255,255,255,.5); font-size: 11px; }
.footer-links { display: flex; gap: 20px; font-size: 11px; color: var(--lavender); }
.disclaimer { grid-column: 1 / -1; max-width: 980px; line-height: 1.7; border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; }

.terms-modal, .success-modal { border: 0; border-radius: 24px; padding: 0; box-shadow: 0 40px 100px rgba(25,7,40,.4); }
.terms-modal::backdrop, .success-modal::backdrop { background: rgba(22,10,31,.72); backdrop-filter: blur(8px); }
.terms-modal { width: min(780px, calc(100vw - 30px)); max-height: min(800px, calc(100vh - 30px)); }
.modal-head, .modal-foot { padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.modal-head { border-bottom: 1px solid var(--line); }
.modal-head span { color: var(--violet-700); font-size: 9px; letter-spacing: .16em; font-weight: 700; }
.modal-head h2 { font-family: "Playfair Display", serif; font-size: 29px; margin: 2px 0 0; }
.modal-head button { width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--violet-100); font-size: 22px; color: var(--violet-800); }
.terms-content { padding: 4px 26px 16px; overflow-y: auto; max-height: 560px; }
.terms-content section { padding: 20px 0; border-bottom: 1px solid var(--line); }
.terms-content h3 { font-family: "Playfair Display", serif; color: var(--violet-800); margin: 0 0 12px; }
.terms-content h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin: 12px 0 6px; }
.terms-content li { color: var(--ink-soft); font-size: 11px; line-height: 1.65; margin: 4px 0; }
.terms-source { font-size: 10px; color: var(--ink-soft); line-height: 1.5; background: var(--violet-100); padding: 12px; border-radius: 10px; }
.modal-foot { border-top: 1px solid var(--line); }
.success-modal { width: min(470px, calc(100vw - 30px)); padding: 38px; text-align: center; }
.success-icon { margin: 0 auto 18px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--violet-100); color: var(--violet-800); font-size: 28px; }
.success-modal h2 { font-size: 44px; margin: 7px 0 13px; }
.success-modal > p:not(.kicker) { color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.success-ref { padding: 15px; background: var(--violet-100); border-radius: 13px; margin: 20px 0; }
.success-ref small { color: var(--ink-soft); font-size: 8px; letter-spacing: .13em; font-weight: 700; display: block; }
.success-ref strong { color: var(--violet-800); font-size: 19px; display: block; margin-top: 4px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-visual { min-height: 580px; }
  .photo-main { left: 50%; transform: translateX(-44%); right: auto; }
  .photo-small { left: 10%; }
  .floating-ticket { right: 8%; }
  .trip-grid { grid-template-columns: 1fr 1fr; }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
}

@media (max-width: 760px) {
  .site-header { height: 70px; }
  .nav a { display: none; }
  .nav-cta { padding: 10px 13px; font-size: 11px; }
  .hero { min-height: auto; padding-bottom: 65px; }
  .hero h1 { font-size: clamp(58px, 19vw, 88px); }
  .hero-lead { font-size: 15px; }
  .hero-stats div { padding-right: 18px; margin-right: 18px; }
  .hero-stats strong { font-size: 22px; }
  .hero-visual { min-height: 500px; }
  .photo-main { width: 78%; height: 455px; }
  .photo-small { width: 130px; height: 175px; bottom: 25px; left: 2%; }
  .floating-ticket { width: 205px; right: 0; bottom: 5px; }
  .section { padding-top: 76px; padding-bottom: 76px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .trip-grid { grid-template-columns: 1fr; }
  .trip-card { min-height: 220px; }
  .route-strip { grid-template-columns: 1fr; gap: 18px; }
  .route-line { transform: rotate(90deg); width: 60px; margin-left: 0; }
  .booking-shell { gap: 34px; }
  .steps-mini { grid-template-columns: 1fr; }
  .booking-form { border-radius: 24px; padding: 22px 16px; }
  .form-grid.two, .companion-fields { grid-template-columns: 1fr; }
  .field.wide { grid-column: auto; }
  .fare-preview { grid-template-columns: 1fr; gap: 7px; }
  .fare-preview > span { transform: rotate(90deg); }
  .seat-map { gap: 7px 6px; }
  .seat { min-height: 37px; }
  .final-summary { grid-template-columns: 1fr; }
  .form-nav .btn { padding: 11px 14px; font-size: 11px; }
  .info-section { grid-template-columns: 1fr; padding: 0; gap: 0; }
  .info-photo { min-height: 560px; margin: 0; }
  .faq-list { padding: 76px 24px; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .bus-wrap { padding: 14px 10px 18px; border-radius: 26px 26px 18px 18px; }
  .bus-seat-row { grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr); gap: 5px; }
  .seat-pair, .back-seat-row { gap: 3px; }
  .seat { min-height: 34px; font-size: 9px; }
  .row-label { font-size: 7px; }
  .exact-front { gap: 8px; }
  .driver, .entrance { min-height: 46px; }
  .project-poster-card { inset: 3% 2% 8% 4%; }
}

/* Project inclusions */
.inclusions-block { margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; background: linear-gradient(145deg, #fff, var(--violet-100)); display: grid; grid-template-columns: .75fr 1.25fr; gap: 30px; }
.inclusions-copy h3 { font-family: "Playfair Display", serif; color: var(--violet-900); font-size: 30px; margin: 8px 0 10px; }
.inclusions-copy > p:last-child { color: var(--ink-soft); font-size: 12px; line-height: 1.65; margin: 0; }
.inclusions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.inclusion-item { min-height: 94px; border: 1px solid rgba(100,33,143,.12); border-radius: 15px; padding: 14px; background: rgba(255,255,255,.78); display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 10px; align-content: center; }
.inclusion-item > span { grid-row: 1 / 3; width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; background: var(--violet-100); }
.inclusion-item strong { font-size: 12px; color: var(--violet-900); }
.inclusion-item small { margin-top: 3px; color: var(--ink-soft); font-size: 10px; line-height: 1.4; }

/* Post-submission selected options / booking summary */
.success-modal { width: min(590px, calc(100vw - 30px)); max-height: min(88vh, 820px); overflow: auto; }
.success-options { margin-top: 18px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; text-align: left; }
.success-options-head { padding: 14px 16px; background: var(--violet-100); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.success-options-head small { display: block; font-size: 8px; letter-spacing: .13em; color: var(--ink-soft); font-weight: 700; }
.success-options-head strong { display: block; margin-top: 2px; color: var(--violet-900); }
.success-options-head > span { flex: 0 0 auto; border-radius: 999px; padding: 6px 9px; background: white; color: var(--violet-700); font-size: 8px; font-weight: 700; letter-spacing: .06em; }
.success-options dl { margin: 0; padding: 8px 16px; }
.success-options dl > div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.success-options dl > div:last-child { border-bottom: 0; }
.success-options dt { color: var(--ink-soft); font-size: 10px; }
.success-options dd { margin: 0; text-align: right; color: var(--ink); font-weight: 700; font-size: 11px; overflow-wrap: anywhere; }

.success-passenger-block { border-top: 1px solid var(--line); background: #fff; }
.success-passenger-title { padding: 14px 16px 8px; }
.success-passenger-title small { display: block; font-size: 8px; letter-spacing: .13em; color: var(--ink-soft); font-weight: 700; }
.success-passenger-title strong { display: block; margin-top: 3px; font-size: 11px; color: var(--violet-900); }
.success-passenger-list { padding: 0 16px 12px; }
.success-passenger-row { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; padding: 10px 0; border-bottom: 1px solid var(--line); }
.success-passenger-row:last-child { border-bottom: 0; }
.success-passenger-index { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--violet-100); color: var(--violet-800); font-size: 9px; font-weight: 800; }
.success-passenger-info small { display: block; color: var(--ink-soft); font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }
.success-passenger-info strong { display: block; margin-top: 2px; color: var(--ink); font-size: 11px; }
.success-passenger-info span { display: block; margin-top: 2px; color: var(--violet-700); font-size: 10px; font-weight: 700; }
.success-actions { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.success-actions .btn { width: 100%; }

@media (max-width: 720px) {
  .inclusions-block { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .success-options dl > div { grid-template-columns: 1fr; gap: 3px; }
  .success-options dd { text-align: left; }
}

@media print {
  body * { visibility: hidden !important; }
  #successModal, #successModal * { visibility: visible !important; }
  #successModal { position: absolute; left: 0; top: 0; width: 100%; max-height: none; box-shadow: none; border: 0; }
  #successModal::backdrop, .success-actions { display: none !important; }
}

/* =========================================================
   2026 REDESIGN — TRAVEL WITH V BUS HOMEPAGE
   Homepage story first, centered booking second.
========================================================= */
:root {
  --violet-deep: #241036;
  --violet-night: #32134b;
  --violet-rich: #5e2491;
  --violet-bright: #8d47c7;
  --violet-mist: #eee5f8;
  --violet-cloud: #f7f2fb;
  --pearl: #fffdfd;
}

body { background: #fbf9fd; }

.site-header {
  height: 78px;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(64,28,91,.08);
  box-shadow: 0 8px 28px rgba(40,16,57,.04);
}
.brand-dot {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(145deg, #9c5ed0, #4e1d79); color: white;
  font-family: "Playfair Display", serif; font-style: italic; font-size: 21px;
  box-shadow: 0 7px 20px rgba(94,36,145,.2);
}
.brand strong { font-size: 12px; letter-spacing: .14em; }
.brand small { color: #776d80; font-size: 9px; letter-spacing: .05em; }
.nav { gap: 24px; }
.nav-cta { background: linear-gradient(135deg, #5e2491, #32134b); }

/* HERO */
.hero {
  min-height: 820px;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  padding: 84px clamp(24px, 5.5vw, 88px) 88px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(193,138,235,.32), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(175,115,224,.22), transparent 26%),
    linear-gradient(135deg, #261037 0%, #3b1558 48%, #5f2787 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; }
.hero-glow-a { width: 300px; height: 300px; left: -110px; bottom: 18%; background: rgba(197,137,235,.24); }
.hero-glow-b { width: 360px; height: 360px; right: -160px; top: 7%; background: rgba(238,216,255,.12); }
.hero-copy { max-width: 650px; }
.hero-kicker { margin: 0; color: #d9c2ef; font-size: 10px; letter-spacing: .18em; font-weight: 800; }
.hero h1 {
  margin: 24px 0 28px; color: white; font-family: "Manrope", sans-serif; font-weight: 800;
  font-size: clamp(66px, 7vw, 110px); line-height: .84; letter-spacing: -.07em;
}
.hero h1 span {
  display: inline-block; color: transparent;
  -webkit-text-stroke: 1.7px rgba(255,255,255,.88);
  text-shadow: 0 0 50px rgba(211,169,243,.12);
}
.hero-subtitle { margin: 0; max-width: 610px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.hero-subtitle strong { color: white; }
.hero-actions { margin-top: 30px; }
.btn-light, .btn-white { background: white; color: #391653; border-color: white; }
.btn-outline-light { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.btn-outline-light:hover { background: rgba(255,255,255,.09); }
.hero-proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px;
}
.hero-proof div { padding-right: 18px; margin-right: 18px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { display: block; font-size: 24px; letter-spacing: -.04em; color: #fff; }
.hero-proof span { display: block; margin-top: 3px; font-size: 10px; color: rgba(255,255,255,.53); line-height: 1.4; }

.hero-bus-stage { position: relative; min-height: 610px; align-self: stretch; z-index: 2; display: flex; align-items: center; }
.bus-shadow { position: absolute; width: 78%; height: 55px; bottom: 72px; left: 12%; border-radius: 50%; background: rgba(0,0,0,.36); filter: blur(20px); }
.bus-mockup {
  width: 100%; max-width: 790px; height: 382px; margin-left: auto; position: relative;
  border-radius: 48px 76px 25px 28px; overflow: visible;
  background: linear-gradient(180deg, #f7f2fb 0%, #dfd1ea 18%, #6d2d9a 19%, #4a1b6e 100%);
  box-shadow: 0 46px 100px rgba(8,3,15,.38), inset 0 1px 0 rgba(255,255,255,.65);
  transform: perspective(1100px) rotateY(-4deg) rotateX(1deg);
}
.bus-roofline { position: absolute; height: 22px; left: 28px; right: 35px; top: -11px; border-radius: 50px 50px 5px 5px; background: #eae0f1; box-shadow: inset 0 2px 0 white; }
.bus-window-row {
  position: absolute; left: 36px; right: 76px; top: 34px; height: 92px; display: grid;
  grid-template-columns: repeat(6, 1fr); gap: 6px;
}
.bus-window-row span { border-radius: 7px 7px 3px 3px; background: linear-gradient(145deg,#1a1630,#534368); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.bus-window-row span:first-child { border-radius: 18px 7px 3px 3px; }
.bus-window-row span:last-child { clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%); }
.bus-wrap-panel {
  position: absolute; left: 34px; right: 72px; top: 137px; bottom: 57px; overflow: hidden;
  border-radius: 7px 7px 13px 13px; background: #5d2589;
}
.bus-wrap-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 36%, rgba(207,150,255,.35), transparent 18%),
    radial-gradient(circle at 62% 82%, rgba(121,45,180,.45), transparent 28%),
    linear-gradient(115deg, #2a103d 0%, #4c1b70 42%, #7b35ad 70%, #321246 100%);
  overflow: hidden;
}
.bus-wrap-photo::before {
  content: "V";
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-53%) rotate(-5deg);
  font-family: "Manrope", sans-serif;
  font-size: clamp(74px, 10vw, 150px);
  line-height: 1;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(241,220,255,.22);
  opacity: .82;
}
.bus-wrap-photo::after {
  content: "KIM TAEHYUNG • V • KIM TAEHYUNG • V •";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  color: rgba(255,255,255,.18);
  font: 800 7px/1 "Manrope", sans-serif;
  letter-spacing: .23em;
}
.bus-wrap-panel::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 84% 45%, rgba(220,183,246,.24), transparent 27%); }
.bus-wrap-copy { position: absolute; z-index: 2; left: 28px; top: 31px; max-width: 58%; color: white; }
.bus-wrap-copy small { display: block; color: #d9c2ef; font-size: 8px; letter-spacing: .15em; font-weight: 800; }
.bus-wrap-copy strong { display: block; font-family: "Manrope", sans-serif; font-size: clamp(28px, 3.3vw, 50px); line-height: .9; letter-spacing: -.06em; margin: 8px 0; }
.bus-wrap-copy span { font-size: 9px; letter-spacing: .12em; color: rgba(255,255,255,.76); }
.bus-front-cap { position: absolute; right: -1px; top: 18px; width: 92px; height: 290px; border-radius: 18px 65px 18px 8px; background: linear-gradient(160deg,#6e3098,#35144e 62%,#271034); border-left: 1px solid rgba(255,255,255,.14); }
.bus-front-cap::before { content: ""; position: absolute; top: 25px; left: 10px; right: 9px; height: 103px; border-radius: 8px 43px 8px 8px; background: linear-gradient(145deg,#17172b,#51425f); }
.bus-front-cap span { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; font-family: "Playfair Display",serif; font-style: italic; color: #d8bcec; font-size: 34px; }
.bus-lower-line { position: absolute; left: 28px; right: 20px; bottom: 42px; height: 7px; background: linear-gradient(90deg,#c7a5dc,#8650aa,#d4b8e4); opacity: .8; }
.wheel { position: absolute; bottom: -28px; width: 92px; height: 92px; border-radius: 50%; background: #15121b; border: 10px solid #29232f; box-shadow: 0 8px 18px rgba(0,0,0,.35); }
.wheel i { position: absolute; inset: 17px; border-radius: 50%; background: radial-gradient(circle,#c9becf 0 14%,#665d6b 15% 42%,#201b25 43%); }
.wheel-one { left: 120px; } .wheel-two { right: 105px; }
.hero-ticket-card {
  position: absolute; right: 2%; bottom: 7%; width: 260px; border-radius: 19px; padding: 18px 20px;
  color: #2a103e; background: rgba(255,255,255,.94); box-shadow: 0 25px 60px rgba(15,5,22,.25); transform: rotate(-2deg);
}
.hero-ticket-card span { font-size: 8px; letter-spacing: .15em; font-weight: 800; color: #74409a; }
.hero-ticket-card strong { display: block; margin: 5px 0; font-family: "Playfair Display",serif; font-size: 24px; line-height: 1; }
.hero-ticket-card small { color: #766b7e; font-size: 9px; }

/* EXPERIENCE */
.fan-ride {
  padding: 110px clamp(24px, 6vw, 96px); display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center;
  background: #fff;
}
.kicker { font-family: "Manrope",sans-serif; }
.fan-ride-copy h2, .section-heading h2, .route-copy h2, .booking-head h2, .faq-title h2, .partners-section h2 {
  font-family: "Playfair Display", serif; font-size: clamp(45px, 5.3vw, 78px); line-height: .98; letter-spacing: -.05em;
}
.fan-ride-copy h2 { margin: 13px 0 26px; }
.fan-ride-copy h2 em, .booking-head h2 em { color: #742ea9; }
.fan-ride-copy > p:not(.kicker) { color: #655d6d; line-height: 1.86; max-width: 630px; font-size: 15px; }
.fan-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.fan-tags span { border: 1px solid rgba(94,36,145,.14); background: #f8f3fb; color: #5e2491; border-radius: 999px; padding: 9px 12px; font-size: 10px; font-weight: 700; }
.fan-ride-art { min-height: 580px; position: relative; }
.portrait-card, .poster-card { position: absolute; margin: 0; overflow: hidden; border-radius: 26px; box-shadow: 0 30px 65px rgba(55,24,76,.16); }
.portrait-card { width: 64%; height: 520px; right: 5%; top: 0; }
.poster-card { width: 41%; height: 330px; left: 0; bottom: 0; border: 7px solid white; transform: rotate(-5deg); }
.poster-card img { object-fit: cover; object-position: center 24%; background: #e8e1ec; }
.art-sticker { position: absolute; left: 18%; top: 10%; padding: 14px 17px; background: #d9f36c; color: #2d1739; font-weight: 800; font-size: 11px; line-height: 1.2; transform: rotate(6deg); box-shadow: 0 12px 28px rgba(44,24,54,.12); }

/* INCLUSIONS */
.inclusions-section { padding: 112px clamp(24px, 6vw, 96px); background: #f7f2fb; }
.section-heading.centered { display: block; max-width: 850px; margin: 0 auto 48px; text-align: center; }
.section-heading.centered h2 { margin: 13px 0 18px; }
.section-heading.centered > p { margin: 0 auto; max-width: 620px; }
.fare-feature { display: grid; grid-template-columns: .66fr 1.34fr; gap: 18px; max-width: 1220px; margin: 0 auto; }
.fare-price-card {
  border-radius: 30px; padding: 38px; color: white; min-height: 390px; display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(circle at 80% 20%, rgba(222,183,250,.25), transparent 25%), linear-gradient(150deg,#381452,#6e2a9d);
  box-shadow: 0 28px 60px rgba(62,26,84,.18);
}
.fare-price-card > span { font-size: 10px; letter-spacing: .17em; color: #dec9ee; font-weight: 800; }
.fare-price-card > strong { display: block; margin: 6px 0 0; font-family: "Manrope", sans-serif; font-size: clamp(80px, 8vw, 132px); letter-spacing: -.08em; line-height: .9; }
.fare-price-card sup { font-size: .34em; vertical-align: top; margin-right: 2px; }
.fare-price-card p { color: rgba(255,255,255,.66); font-size: 11px; margin: 10px 0 27px; }
.fare-price-card .btn { align-self: flex-start; }
.inclusions-section .inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inclusions-section .inclusions-grid article {
  min-height: 120px; padding: 20px; border-radius: 20px; background: white; border: 1px solid rgba(94,36,145,.09); display: flex; align-items: center; gap: 16px;
}
.inclusions-section .inclusions-grid article.freebie { background: linear-gradient(145deg,#fff,#f3e9fa); }
.inclusions-section .icon { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 14px; display: grid; place-items: center; background: #f1e5f8; font-size: 21px; }
.inclusions-section article strong { display: block; color: #35164b; font-size: 13px; }
.inclusions-section article p { margin: 4px 0 0; color: #776e7f; font-size: 10px; line-height: 1.45; }
.event-facts { max-width: 1220px; margin: 18px auto 0; display: grid; grid-template-columns: 1.2fr 1fr .7fr; gap: 1px; border-radius: 23px; overflow: hidden; background: rgba(94,36,145,.12); }
.event-facts > div { padding: 25px 28px; background: white; }
.event-facts small { display: block; color: #7b4c9c; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.event-facts strong { display: block; margin-top: 6px; color: #311445; font-size: 18px; }
.event-facts span { display: block; margin-top: 3px; color: #817887; font-size: 10px; }
.event-facts .event-fare { background: #d9f36c; }
.event-facts .event-fare small, .event-facts .event-fare strong, .event-facts .event-fare span { color: #2c1734; }
.event-facts .event-fare strong { font-size: 32px; letter-spacing: -.05em; }

/* ROUTE */
.route-section { padding: 112px clamp(24px, 6vw, 96px); color: white; background: #251033; display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: center; }
.route-copy .kicker { color: #cba7e3; }
.route-copy h2 { margin: 13px 0 23px; }
.route-copy > p:last-child { max-width: 520px; color: rgba(255,255,255,.58); line-height: 1.75; font-size: 13px; }
.route-timeline { display: grid; grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1.18fr; align-items: stretch; }
.route-timeline > i { align-self: center; height: 1px; background: rgba(255,255,255,.2); position: relative; }
.route-timeline > i::after { content:"›"; position:absolute; right:-2px; top:-10px; color:#c5a8da; font-size:17px; }
.route-timeline article { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); border-radius: 20px; padding: 22px; min-height: 188px; display: flex; flex-direction: column; justify-content: flex-end; }
.route-timeline article.destination { background: linear-gradient(145deg,#5d2786,#7e3cab); border-color: transparent; }
.route-number { margin-bottom: auto; width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: #dfc9ed; font-size: 9px; font-weight: 800; }
.route-timeline time { color: #c6a9d9; font-size: 9px; letter-spacing: .13em; font-weight: 800; }
.route-timeline strong { font-size: 15px; margin-top: 5px; }
.route-timeline p { margin: 4px 0 0; color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.45; }
.route-timeline .destination time, .route-timeline .destination p { color: rgba(255,255,255,.7); }

/* CENTERED BOOKING */
.booking-section { padding: 112px clamp(18px, 5vw, 72px) 120px; background: linear-gradient(180deg,#fff 0%,#f5eff9 100%); }
.booking-head { max-width: 900px; text-align: center; margin: 0 auto 45px; }
.booking-head h2 { margin: 13px 0 20px; }
.booking-head > p:not(.kicker) { max-width: 700px; margin: 0 auto; color: #706878; line-height: 1.7; font-size: 13px; }
.seat-hold-banner { margin: 26px auto 0; max-width: 800px; text-align: left; display: flex; gap: 13px; align-items: flex-start; padding: 16px 18px; border-radius: 16px; background: #f2e8f8; border: 1px solid rgba(94,36,145,.12); }
.hold-dot { width: 12px; height: 12px; margin-top: 4px; flex: 0 0 12px; border-radius: 50%; background: #7d35a9; box-shadow: 0 0 0 5px rgba(125,53,169,.11); }
.seat-hold-banner strong { color: #481c69; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.seat-hold-banner p { margin: 3px 0 0; color: #665b6e; font-size: 10px; line-height: 1.6; }
.booking-center { max-width: 1040px; margin: 0 auto; }
.booking-section .booking-form { width: 100%; border: 1px solid rgba(94,36,145,.08); box-shadow: 0 35px 90px rgba(53,20,75,.14); padding: clamp(24px, 4vw, 52px); }
.booking-section .form-step-head { padding-bottom: 19px; border-bottom: 1px solid rgba(94,36,145,.09); }
.booking-section .form-step-head h3 { color: #321448; }
.booking-section .btn-submit { background: linear-gradient(135deg,#7b35aa,#4a1c6d); }
.booking-section .fare-preview { background: #efe4f7; }

/* FAQ */
.faq-section { padding: 112px clamp(24px, 6vw, 96px); display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; background: white; }
.faq-title { position: sticky; top: 120px; align-self: start; }
.faq-title h2 { margin: 13px 0 21px; }
.faq-title > p:last-child { max-width: 370px; color: #746b7a; font-size: 12px; line-height: 1.7; }
.faq-section .faq-list { padding: 0; }
.faq-section details { padding: 23px 0; }
.faq-section summary { font-size: 14px; color: #2f183c; }
.faq-section details p { font-size: 11px; max-width: 720px; }

/* PARTNERS */
.partners-section { padding: 112px clamp(24px, 6vw, 96px); background: linear-gradient(155deg,#2c103e,#4c1d6c); color: white; }
.light-heading .kicker { color: #d2b5e8; }
.light-heading h2 { color: white; }
.partner-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.partner-card { min-height: 350px; padding: 34px; border-radius: 28px; border: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; background: rgba(255,255,255,.055); }
.taehyung-ph-card { background: radial-gradient(circle at 90% 10%, rgba(204,155,237,.22), transparent 26%), rgba(255,255,255,.05); }
.fob-card { background: rgba(255,255,255,.94); color: #301440; }
.partner-label { font-size: 8px; letter-spacing: .17em; font-weight: 800; color: #d6bde6; }
.fob-card .partner-label { color: #7b42a1; }
.partner-card h3 { font-family: "Manrope",sans-serif; font-size: 35px; letter-spacing: -.05em; margin: 18px 0 18px; }
.partner-card > p { color: rgba(255,255,255,.65); line-height: 1.75; font-size: 12px; }
.fob-card > p { color: #756a7c; }
.partner-role { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #d8c3e6; font-size: 9px; line-height: 1.5; }
.fob-card .partner-role { color: #5e2491; border-top-color: rgba(94,36,145,.12); }
.partner-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
.partner-links a { padding: 7px 10px; border-radius: 999px; background: #f2e7f8; color: #59227f; font-size: 9px; font-weight: 700; }

/* FOOTER */
.footer { padding: 54px clamp(24px, 6vw, 96px) 34px; background: #150b1c; display: block; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: #63288c; font-family: "Playfair Display",serif; font-style: italic; font-size: 22px; }
.footer-brand strong { display: block; color: white; font-size: 12px; letter-spacing: .14em; }
.footer-brand small { display: block; margin-top: 4px; color: rgba(255,255,255,.45); font-size: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: grid; grid-template-columns: .55fr 1.45fr; gap: 30px; }
.footer-bottom p { margin: 0; line-height: 1.65; }
.footer-bottom .disclaimer { grid-column: auto; max-width: none; border: 0; padding: 0; }

/* Preserve success modal polish */
.success-modal h2 { color: #321448; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 780px; }
  .hero-bus-stage { min-height: 560px; }
  .bus-mockup { margin: auto; }
  .fan-ride { grid-template-columns: 1fr; }
  .fan-ride-copy { max-width: 760px; }
  .fan-ride-art { max-width: 760px; width: 100%; margin: auto; }
  .fare-feature { grid-template-columns: 1fr; }
  .fare-price-card { min-height: 300px; }
  .route-section { grid-template-columns: 1fr; }
  .route-copy { max-width: 760px; }
  .faq-section { grid-template-columns: 1fr; gap: 35px; }
  .faq-title { position: static; }
}

@media (max-width: 850px) {
  .route-timeline { grid-template-columns: 1fr; gap: 10px; }
  .route-timeline > i { width: 1px; height: 24px; justify-self: center; }
  .route-timeline > i::after { content:"⌄"; right:-7px; top:6px; }
  .route-timeline article { min-height: 145px; }
  .partner-grid { grid-template-columns: 1fr; }
  .event-facts { grid-template-columns: 1fr; gap: 1px; }
  .footer-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 68px; padding-inline: 18px; }
  .brand small { display: none; }
  .brand strong { font-size: 10px; }
  .hero { padding: 62px 18px 64px; }
  .hero h1 { font-size: clamp(55px, 16vw, 84px); }
  .hero-subtitle { font-size: 14px; }
  .hero-proof { grid-template-columns: 1fr 1fr 1fr; }
  .hero-proof strong { font-size: 19px; }
  .hero-bus-stage { min-height: 430px; }
  .bus-mockup { height: 275px; border-radius: 32px 55px 19px 20px; }
  .bus-window-row { left: 25px; right: 54px; top: 26px; height: 65px; gap: 4px; }
  .bus-wrap-panel { left: 24px; right: 52px; top: 99px; bottom: 42px; }
  .bus-wrap-copy { left: 18px; top: 20px; }
  .bus-wrap-copy small, .bus-wrap-copy span { display: none; }
  .bus-wrap-copy strong { font-size: 26px; }
  .bus-front-cap { width: 65px; height: 208px; top: 14px; }
  .bus-front-cap::before { top: 18px; height: 75px; }
  .bus-front-cap span { font-size: 24px; bottom: 20px; }
  .bus-lower-line { bottom: 31px; }
  .wheel { width: 68px; height: 68px; bottom: -23px; border-width: 7px; }
  .wheel i { inset: 12px; }
  .wheel-one { left: 78px; } .wheel-two { right: 73px; }
  .hero-ticket-card { width: 218px; right: 0; bottom: 1%; padding: 14px 16px; }
  .hero-ticket-card strong { font-size: 20px; }
  .fan-ride, .inclusions-section, .route-section, .faq-section, .partners-section { padding: 78px 20px; }
  .fan-ride-art { min-height: 460px; }
  .portrait-card { width: 72%; height: 420px; }
  .poster-card { width: 46%; height: 250px; }
  .inclusions-section .inclusions-grid { grid-template-columns: 1fr; }
  .fare-price-card { padding: 28px; }
  .fare-price-card > strong { font-size: 92px; }
  .booking-section { padding: 78px 12px 90px; }
  .booking-head { padding-inline: 8px; }
  .seat-hold-banner { margin-top: 21px; }
  .booking-section .booking-form { padding: 22px 14px; border-radius: 22px; }
  .footer-main { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .hero-proof { grid-template-columns: 1fr; gap: 12px; }
  .hero-proof div { border-right: 0; padding: 0 0 9px; margin: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-proof div:last-child { border-bottom: 0; }
  .hero-bus-stage { min-height: 340px; }
  .bus-mockup { height: 215px; }
  .bus-window-row { left: 18px; right: 41px; top: 20px; height: 50px; }
  .bus-wrap-panel { left: 17px; right: 39px; top: 77px; bottom: 33px; }
  .bus-front-cap { width: 49px; height: 163px; top: 10px; }
  .bus-front-cap::before { top: 14px; left: 6px; right: 5px; height: 57px; }
  .bus-front-cap span { font-size: 18px; }
  .bus-lower-line { left: 17px; bottom: 24px; height: 5px; }
  .wheel { width: 54px; height: 54px; bottom: -18px; border-width: 6px; }
  .wheel-one { left: 55px; } .wheel-two { right: 53px; }
  .bus-wrap-copy { left: 12px; top: 15px; }
  .bus-wrap-copy strong { font-size: 19px; }
  .hero-ticket-card { display: none; }
  .fan-ride-art { min-height: 390px; }
  .portrait-card { height: 350px; }
  .poster-card { height: 205px; }
  .art-sticker { left: 7%; top: 7%; font-size: 9px; }
  .partner-card { padding: 26px; min-height: 320px; }
  .partner-card h3 { font-size: 30px; }
}

/* =========================================================
   POSTER-INSPIRED HOMEPAGE V3
   Direction: futuristic purple editorial / concert-poster UI
   ========================================================= */
:root {
  --poster-bg: #070510;
  --poster-bg-2: #10091f;
  --poster-purple: #8d35ff;
  --poster-violet: #b96cff;
  --poster-lilac: #d9b8ff;
  --poster-white: #f8f5ff;
}

.site-header {
  height: 76px;
  background: rgba(7,5,16,.90);
  border-bottom: 1px solid rgba(187,108,255,.17);
  box-shadow: none;
  backdrop-filter: blur(16px);
}
.site-header .brand strong, .site-header .nav a { color: #fff; }
.site-header .brand small { color: rgba(255,255,255,.48); }
.site-header .brand-dot {
  border-radius: 7px;
  background: linear-gradient(145deg,#faf7ff 0 45%,#a94dff 46% 100%);
  color: #140722;
  box-shadow: 0 0 28px rgba(148,56,255,.32);
}
.site-header .nav a:hover { color: #cfa3ff; }
.site-header .nav-cta {
  border: 1px solid rgba(190,115,255,.72);
  background: rgba(126,44,215,.18);
  box-shadow: inset 0 0 22px rgba(171,77,255,.10), 0 0 20px rgba(124,43,218,.14);
}

.poster-hero {
  position: relative;
  min-height: 900px;
  padding: 76px clamp(28px,5.8vw,94px) 72px;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 76% 38%, rgba(121,37,255,.33), transparent 25%),
    radial-gradient(circle at 59% 78%, rgba(179,78,255,.14), transparent 23%),
    linear-gradient(132deg,#04030a 0%,#090511 45%,#130922 72%,#08040e 100%);
}
.poster-hero::before {
  content:""; position:absolute; inset:0; z-index:-5; opacity:.16;
  background-image: radial-gradient(rgba(255,255,255,.65) .7px, transparent .7px);
  background-size: 7px 7px;
  mask-image: linear-gradient(90deg,transparent 0,#000 23%,#000 87%,transparent 100%);
}
.poster-hero::after {
  content:""; position:absolute; inset:0; z-index:9; pointer-events:none;
  border: 1px solid rgba(255,255,255,.045);
  box-shadow: inset 0 0 130px rgba(0,0,0,.44);
}
.poster-grid { position:absolute; inset:0; z-index:-4; opacity:.24; background-image:linear-gradient(rgba(181,106,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(181,106,255,.09) 1px,transparent 1px); background-size:78px 78px; mask-image:radial-gradient(circle at 72% 48%,#000,transparent 72%); }
.poster-beam { position:absolute; z-index:-2; height:1px; width:76%; background:linear-gradient(90deg,transparent,#9d43ff 18%,#f0dcff 52%,transparent); box-shadow:0 0 18px #8f35ff; opacity:.75; transform-origin:left center; }
.beam-a { left:37%; top:18%; transform:rotate(-40deg); }
.beam-b { left:46%; top:73%; transform:rotate(-32deg); opacity:.4; }
.poster-orbit { position:absolute; z-index:-3; border:1px solid rgba(174,85,255,.24); border-radius:50%; transform:rotate(-18deg); }
.orbit-a { width:690px; height:280px; right:-60px; top:190px; }
.orbit-b { width:510px; height:170px; right:80px; top:320px; border-color:rgba(255,255,255,.10); }
.poster-side-label { position:absolute; z-index:5; color:rgba(236,221,255,.48); font:700 8px/1 "Manrope",sans-serif; letter-spacing:.34em; white-space:nowrap; }
.poster-side-left { left:17px; top:54%; transform:rotate(-90deg) translateX(-50%); transform-origin:left top; }
.poster-side-right { right:14px; top:38%; transform:rotate(90deg) translateX(50%); transform-origin:right top; }
.poster-copy { z-index:3; max-width:660px; padding:34px 0; }
.poster-brandline { display:flex; align-items:center; gap:11px; margin-bottom:30px; color:rgba(255,255,255,.56); font:700 8px/1 "Manrope",sans-serif; letter-spacing:.15em; }
.poster-brandline i { width:34px; height:1px; background:rgba(255,255,255,.22); }
.poster-vmark { width:30px; height:30px; display:grid; place-items:center; border:1px solid rgba(190,115,255,.55); color:#d7b0ff; font-size:15px; font-weight:800; transform:skew(-7deg); box-shadow:0 0 22px rgba(139,55,255,.18); }
.poster-hero .hero-kicker { color:#bb80f4; letter-spacing:.23em; }
.poster-hero h1 { margin:21px 0 27px; font-family:"Manrope",sans-serif; font-size:clamp(65px,6.5vw,112px); line-height:.80; letter-spacing:-.075em; }
.poster-hero h1 > span { display:block; }
.poster-hero h1 .solid-line { color:#fff; text-shadow:0 0 42px rgba(166,80,255,.13); }
.poster-hero h1 .outline-line { margin-top:9px; color:transparent; -webkit-text-stroke:1.5px rgba(226,202,255,.86); text-shadow:0 0 33px rgba(149,55,255,.22); }
.poster-hero .hero-subtitle { max-width:600px; color:rgba(255,255,255,.66); }
.poster-hero .hero-subtitle strong { color:#ead8ff; }
.btn-neon { background:linear-gradient(135deg,#7d26e9,#ad55ff); color:#fff; border-color:#a75cff; box-shadow:0 0 28px rgba(141,53,255,.28), inset 0 0 18px rgba(255,255,255,.09); }
.btn-neon:hover { transform:translateY(-2px); box-shadow:0 0 42px rgba(141,53,255,.42); }
.poster-proof { border-top-color:rgba(184,106,255,.28); }
.poster-proof div { border-right-color:rgba(184,106,255,.20); }
.poster-proof small { display:block; margin-bottom:5px; color:#a96aeb; font-size:7px; letter-spacing:.17em; font-weight:800; }
.poster-proof strong { font-size:25px; }
.poster-proof span { color:rgba(255,255,255,.46); }

.poster-visual { position:relative; min-height:690px; z-index:2; }
.giant-v { position:absolute; z-index:-1; right:8%; top:-2%; font-family:"Manrope",sans-serif; font-size:clamp(300px,36vw,560px); line-height:.78; font-weight:800; color:transparent; -webkit-text-stroke:2px rgba(137,47,255,.42); filter:drop-shadow(0 0 34px rgba(137,47,255,.18)); transform:skew(-6deg); }
.portrait-shard { position:absolute; overflow:hidden; filter:drop-shadow(0 26px 38px rgba(0,0,0,.42)); }
.portrait-shard::after { content:""; position:absolute; inset:0; background:linear-gradient(145deg,rgba(118,30,201,.06),rgba(46,6,74,.14)); box-shadow:inset 0 0 0 1px rgba(192,112,255,.19); }
.portrait-shard img { width:100%; height:100%; object-fit:cover; display:block; filter:saturate(.82) contrast(1.08) brightness(.83); }
.shard-main { z-index:2; width:57%; height:71%; right:14%; top:3%; clip-path:polygon(21% 0,100% 0,89% 83%,52% 100%,0 79%,8% 18%); }
.shard-main img { object-position:51% 22%; transform:scale(1.08); }
.shard-left { z-index:1; width:34%; height:46%; left:4%; top:28%; clip-path:polygon(17% 0,100% 12%,83% 100%,0 87%,8% 19%); }
.shard-left img { object-position:51% 17%; transform:scale(1.16); filter:saturate(.62) contrast(1.12) brightness(.70); }
.shard-right { z-index:3; width:36%; height:42%; right:0; top:38%; clip-path:polygon(15% 5%,100% 0,93% 91%,22% 100%,0 72%); }
.shard-right img { object-position:55% 29%; transform:scale(1.28); filter:saturate(.74) contrast(1.14) brightness(.72); }
.poster-quote { position:absolute; z-index:5; right:0; top:11%; width:180px; padding:14px 0 14px 18px; border-left:1px solid #9f4aff; color:#fff; }
.poster-quote span { position:absolute; left:-3px; top:-15px; color:#b762ff; font:700 42px/1 Georgia,serif; }
.poster-quote strong { display:block; font-size:12px; letter-spacing:.10em; }
.poster-quote small { display:block; margin-top:7px; color:rgba(255,255,255,.42); font-size:6.5px; line-height:1.5; letter-spacing:.11em; }
.poster-coordinate { position:absolute; z-index:5; color:rgba(231,215,249,.38); font:700 7px/1 "Manrope",sans-serif; letter-spacing:.22em; }
.coord-one { right:3%; bottom:34%; transform:rotate(-35deg); }
.coord-two { left:7%; top:15%; transform:rotate(-90deg); }

.mini-bus-stage { position:absolute; z-index:7; left:5%; right:3%; bottom:2%; height:275px; display:flex; align-items:center; pointer-events:none; }
.mini-bus-stage .bus-shadow { bottom:25px; left:13%; height:34px; filter:blur(15px); opacity:.75; }
.mini-bus-stage .bus-mockup { width:100%; max-width:680px; height:270px; margin:auto; transform:perspective(1100px) rotateY(-5deg) rotateX(1deg) scale(.86); transform-origin:center bottom; box-shadow:0 35px 75px rgba(0,0,0,.55),0 0 36px rgba(134,44,235,.12); }
.mini-bus-stage .bus-window-row { top:24px; height:65px; }
.mini-bus-stage .bus-wrap-panel { top:97px; bottom:40px; }
.mini-bus-stage .bus-front-cap { height:205px; width:73px; top:14px; }
.mini-bus-stage .bus-front-cap::before { height:75px; top:18px; }
.mini-bus-stage .bus-lower-line { bottom:29px; }
.mini-bus-stage .wheel { width:69px; height:69px; bottom:-23px; border-width:7px; }
.mini-bus-stage .wheel i { inset:12px; }
.mini-bus-stage .wheel-one { left:105px; }
.mini-bus-stage .wheel-two { right:88px; }
.mini-bus-stage .bus-wrap-copy { left:21px; top:21px; }
.mini-bus-stage .bus-wrap-copy strong { font-size:31px; }
.mini-bus-stage .bus-wrap-copy small { font-size:6px; }
.mini-bus-stage .bus-wrap-copy span { font-size:6px; }

/* Carry the poster direction into the rest of the homepage */
.fan-ride { position:relative; overflow:hidden; background:linear-gradient(180deg,#0c0715 0%,#160b24 100%); color:#fff; }
.fan-ride::before { content:"THE PURPLE ROAD"; position:absolute; right:-25px; top:35px; color:transparent; -webkit-text-stroke:1px rgba(177,98,255,.11); font:800 clamp(70px,10vw,155px)/1 "Manrope",sans-serif; letter-spacing:-.07em; white-space:nowrap; }
.fan-ride-copy h2, .fan-ride-copy h2 em { color:#fff; }
.fan-ride-copy h2 em { color:#bd79ff; }
.fan-ride-copy > p:not(.kicker) { color:rgba(255,255,255,.58); }
.fan-tags span { color:#d8b2ff; background:rgba(142,53,255,.09); border-color:rgba(173,89,255,.26); }
.fan-ride-art .art-sticker { background:#8d35ff; color:#fff; box-shadow:0 0 28px rgba(141,53,255,.30); }
.inclusions-section { background:linear-gradient(180deg,#f8f4fc,#eee4f8); }
.fare-price-card { background:radial-gradient(circle at 82% 18%,rgba(219,171,255,.23),transparent 24%),linear-gradient(150deg,#130721,#55208a 58%,#8c37e6); border:1px solid rgba(118,40,194,.18); box-shadow:0 30px 80px rgba(78,25,123,.20); }
.inclusions-grid article.freebie { background:#f8f0ff; }
.event-facts .event-fare { background:linear-gradient(135deg,#7f2de5,#aa5cff); }
.event-facts .event-fare small,.event-facts .event-fare strong,.event-facts .event-fare span { color:#fff; }
.route-section { background:radial-gradient(circle at 80% 35%,rgba(128,38,216,.22),transparent 26%),linear-gradient(135deg,#05030b,#1c0a2c); }
.route-timeline article.destination { background:linear-gradient(145deg,#6420ac,#9a43f4); box-shadow:0 0 32px rgba(128,40,222,.16); }
.booking-section { background:linear-gradient(180deg,#faf7fd 0%,#eee4f8 100%); }
.booking-section .booking-form { border-color:rgba(103,32,161,.12); box-shadow:0 36px 90px rgba(49,13,77,.16); }
.booking-section .btn-submit { background:linear-gradient(135deg,#6f23c7,#a149f4); }
.partners-section { background:radial-gradient(circle at 76% 20%,rgba(146,55,235,.23),transparent 27%),linear-gradient(145deg,#07040d,#1a0929 72%,#2d0d47); }
.footer { background:#040207; }

@media (max-width: 1120px) {
  .poster-hero { grid-template-columns:1fr; padding-top:62px; }
  .poster-copy { max-width:820px; }
  .poster-visual { min-height:690px; max-width:860px; width:100%; margin:0 auto; }
  .poster-quote { right:4%; }
}
@media (max-width: 760px) {
  .poster-hero { min-height:auto; padding:54px 18px 48px; }
  .poster-brandline span:last-child,.poster-brandline i { display:none; }
  .poster-hero h1 { font-size:clamp(52px,16vw,79px); }
  .poster-hero .hero-subtitle { font-size:14px; }
  .poster-proof { grid-template-columns:1fr 1fr; row-gap:18px; }
  .poster-proof div:nth-child(2) { border-right:0; }
  .poster-proof div:nth-child(3) { grid-column:1 / -1; }
  .poster-visual { min-height:530px; }
  .giant-v { right:0; top:4%; font-size:360px; }
  .shard-main { width:67%; height:64%; right:8%; }
  .shard-left { width:39%; height:39%; left:0; top:28%; }
  .shard-right { width:39%; height:35%; right:-3%; top:37%; }
  .poster-quote { top:8%; right:0; width:148px; }
  .coord-one,.coord-two,.poster-side-label { display:none; }
  .mini-bus-stage { left:-8%; right:-8%; bottom:-5%; height:230px; }
  .mini-bus-stage .bus-mockup { transform:perspective(900px) rotateY(-5deg) scale(.68); }
}
@media (max-width: 480px) {
  .poster-visual { min-height:455px; }
  .poster-quote { display:none; }
  .shard-main { width:74%; right:2%; }
  .mini-bus-stage { left:-21%; right:-21%; bottom:-12%; }
  .mini-bus-stage .bus-mockup { transform:perspective(900px) rotateY(-4deg) scale(.58); }
}

/* =========================================================
   V4 — tactile inclusions + live availability
   ========================================================= */
.fare-feature-v2 { grid-template-columns: .58fr 1.42fr; align-items: stretch; }
.fare-pass { position: relative; overflow: hidden; min-height: 590px; justify-content: center; }
.fare-pass::before { content:""; position:absolute; inset:18px; border:1px dashed rgba(255,255,255,.22); border-radius:24px; pointer-events:none; }
.fare-pass::after { content:"V"; position:absolute; right:-16px; bottom:-60px; font:900 300px/.8 "Manrope",sans-serif; color:rgba(255,255,255,.055); letter-spacing:-.12em; }
.fare-pass-top { position:absolute; top:40px; left:42px; right:42px; display:flex; justify-content:space-between; gap:14px; color:#e6d6f6; font:800 8px/1 "Manrope",sans-serif; letter-spacing:.18em; }
.fare-pass-route { display:flex; align-items:center; gap:12px; margin:0 0 26px; color:rgba(255,255,255,.72); font:800 8px/1 "Manrope",sans-serif; letter-spacing:.12em; }
.fare-pass-route i { width:40px; height:1px; background:rgba(255,255,255,.4); position:relative; font-size:0; }
.fare-pass-route i::after { content:""; position:absolute; right:0; top:-3px; width:6px; height:6px; border-top:1px solid rgba(255,255,255,.55); border-right:1px solid rgba(255,255,255,.55); transform:rotate(45deg); }

.trip-inclusion-board { display:grid; grid-template-rows:auto 1fr; gap:14px; }
.travel-included, .fan-kit { border:1px solid rgba(64,25,93,.10); border-radius:28px; background:rgba(255,255,255,.82); box-shadow:0 18px 50px rgba(63,22,95,.08); }
.travel-included { padding:30px 34px; }
.mini-label { margin:0 0 15px; color:#7c3eaa; font:900 8px/1 "Manrope",sans-serif; letter-spacing:.18em; }
.travel-lines { display:grid; grid-template-columns:1fr 1fr; gap:0 26px; }
.travel-lines article { display:flex; gap:14px; padding:16px 0; border-top:1px solid #eadff1; }
.travel-lines article > span { color:#a657dd; font:900 10px/1 "Manrope",sans-serif; padding-top:2px; }
.travel-lines strong { display:block; color:#2c143d; font-size:12px; }
.travel-lines p { margin:4px 0 0; color:#746b7a; font-size:9px; line-height:1.5; }

.fan-kit { padding:30px 28px 25px; overflow:hidden; position:relative; background:radial-gradient(circle at 90% 0,rgba(163,75,225,.12),transparent 32%),#fff; }
.fan-kit::before { content:"TRAVEL WITH V • FAN KIT •"; position:absolute; right:-20px; top:22px; color:rgba(92,35,133,.045); font:900 44px/1 "Manrope",sans-serif; white-space:nowrap; letter-spacing:-.04em; }
.fan-kit-heading { position:relative; z-index:2; display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
.fan-kit-heading h3 { margin:0; color:#2e143f; font-size:20px; letter-spacing:-.04em; }
.kit-stamp { flex:0 0 auto; border:1px solid #8a42bc; border-radius:999px; padding:8px 12px; color:#7c34ac; font:900 7px/1 "Manrope",sans-serif; letter-spacing:.16em; transform:rotate(3deg); }
.kit-shelf { position:relative; z-index:2; display:grid; grid-template-columns:repeat(5,1fr); gap:10px; align-items:end; min-height:235px; margin-top:15px; padding:24px 8px 18px; border-bottom:5px solid #4a1d69; }
.kit-shelf::after { content:""; position:absolute; left:3%; right:3%; bottom:-13px; height:9px; border-radius:50%; background:rgba(45,14,65,.13); filter:blur(5px); }
.kit-item { min-width:0; text-align:center; color:#382046; }
.kit-item strong { display:block; margin-top:15px; font-size:10px; }
.kit-item small { display:block; margin-top:3px; color:#86778f; font-size:7.5px; }
.silhouette { position:relative; margin:0 auto; background:linear-gradient(145deg,#3b174f,#8a3fbc); box-shadow:0 16px 25px rgba(70,26,101,.18); }
.photocard-shape { width:74px; height:104px; border-radius:10px; transform:rotate(-4deg); border:3px solid #d8b9ea; }
.photocard-shape::before { content:""; position:absolute; width:35px; height:35px; border-radius:50%; background:#c99ce5; left:17px; top:18px; opacity:.65; }
.photocard-shape::after { content:""; position:absolute; width:48px; height:32px; border-radius:50% 50% 12px 12px; background:#b77ed8; left:10px; bottom:13px; opacity:.5; }
.photocard-shape span { position:absolute; z-index:2; right:7px; bottom:5px; color:#fff; font:900 13px/1 "Manrope",sans-serif; }
.keychain-shape { width:67px; height:67px; border-radius:50%; margin-bottom:16px; }
.keychain-shape i { position:absolute; width:28px; height:28px; border:6px solid #6e338f; border-radius:50%; left:14px; top:-39px; background:transparent; box-shadow:none; }
.keychain-shape i::after { content:""; position:absolute; width:5px; height:17px; background:#6e338f; left:6px; bottom:-16px; transform:rotate(-13deg); border-radius:4px; }
.keychain-shape b { position:absolute; inset:0; display:grid; place-items:center; color:#dcbdec; font:900 25px/1 "Manrope",sans-serif; }
.pin-shape { width:82px; height:82px; border-radius:50%; border:4px solid #cf9ce8; }
.pin-shape::after { content:""; position:absolute; inset:8px; border:1px solid rgba(255,255,255,.25); border-radius:50%; }
.pin-shape span { position:absolute; inset:0; display:grid; place-items:center; color:#e9d4f4; font:900 27px/1 "Manrope",sans-serif; }
.snack-shape { width:68px; height:91px; border-radius:6px 6px 15px 15px; clip-path:polygon(7% 0,93% 0,100% 10%,93% 100%,7% 100%,0 10%); }
.snack-shape i { position:absolute; left:7px; right:7px; top:10px; height:3px; border-top:2px dashed rgba(255,255,255,.4); }
.snack-shape span { position:absolute; left:0; right:0; top:44%; color:#dcbfea; font:900 8px/1 "Manrope",sans-serif; letter-spacing:.08em; }
.bottle-shape { width:45px; height:107px; border-radius:11px 11px 14px 14px; margin-top:0; background:linear-gradient(145deg,#3f1b55,#8141ab); }
.bottle-shape i { position:absolute; width:23px; height:16px; border-radius:4px 4px 1px 1px; top:-14px; left:11px; background:#5e277d; }
.bottle-shape span { position:absolute; left:5px; right:5px; top:40px; height:31px; border-top:1px solid rgba(255,255,255,.35); border-bottom:1px solid rgba(255,255,255,.35); background:rgba(255,255,255,.08); }

.availability-section { padding:96px clamp(24px,6vw,96px); color:white; background:radial-gradient(circle at 20% 25%,rgba(154,64,225,.20),transparent 26%),radial-gradient(circle at 90% 90%,rgba(92,41,143,.22),transparent 28%),linear-gradient(145deg,#07030d,#160720 58%,#250d38); position:relative; overflow:hidden; }
.availability-section::before { content:"47"; position:absolute; right:-20px; top:-75px; color:rgba(255,255,255,.025); font:900 330px/.8 "Manrope",sans-serif; letter-spacing:-.13em; }
.availability-head { position:relative; z-index:2; max-width:1220px; margin:0 auto 36px; display:grid; grid-template-columns:1fr .62fr; gap:55px; align-items:end; }
.availability-head h2 { margin:0; font-size:clamp(34px,4.1vw,60px); line-height:.95; letter-spacing:-.055em; }
.availability-head h2 em { color:#b362eb; font-style:normal; }
.availability-head > p { margin:0 0 4px; color:rgba(255,255,255,.56); font-size:10px; line-height:1.75; }
.availability-head > p strong { color:#fff; }
.availability-cards { position:relative; z-index:2; max-width:1220px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.availability-card { position:relative; min-width:0; border:1px solid rgba(255,255,255,.10); border-radius:28px; padding:23px; background:linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.025)); backdrop-filter:blur(12px); overflow:hidden; transition:.25s ease; }
.availability-card:hover { transform:translateY(-4px); border-color:rgba(188,104,242,.35); box-shadow:0 24px 50px rgba(0,0,0,.24); }
.availability-card.is-low { border-color:rgba(202,143,255,.52); }
.availability-card.is-full { opacity:.72; }
.availability-date { display:flex; align-items:baseline; gap:8px; border-bottom:1px solid rgba(255,255,255,.09); padding-bottom:17px; }
.availability-date span { color:#b75cff; font:900 9px/1 "Manrope",sans-serif; letter-spacing:.15em; }
.availability-date strong { font:900 54px/.8 "Manrope",sans-serif; letter-spacing:-.07em; }
.availability-date small { margin-left:auto; color:rgba(255,255,255,.35); font:800 8px/1 "Manrope",sans-serif; letter-spacing:.12em; }
.availability-info { padding:22px 0 20px; }
.availability-day { color:rgba(255,255,255,.44); font:800 7px/1 "Manrope",sans-serif; letter-spacing:.16em; }
.availability-count { display:flex; align-items:baseline; gap:6px; margin:9px 0 13px; }
.availability-count strong { color:#fff; font:900 49px/.9 "Manrope",sans-serif; letter-spacing:-.07em; }
.availability-count span { color:#c8b5d5; font:800 9px/1 "Manrope",sans-serif; }
.availability-track { height:5px; border-radius:999px; background:rgba(255,255,255,.09); overflow:hidden; }
.availability-track i { display:block; width:0%; height:100%; border-radius:999px; background:linear-gradient(90deg,#7134a1,#c166ff); transition:width .45s ease; }
.availability-info p { min-height:26px; margin:10px 0 0; color:rgba(255,255,255,.42); font-size:7.5px; line-height:1.5; }
.availability-book { width:100%; border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:12px 13px; background:rgba(255,255,255,.06); color:#fff; cursor:pointer; text-align:left; font:800 8px/1 "Manrope",sans-serif; letter-spacing:.07em; transition:.2s ease; }
.availability-book:hover { background:#8e3dc4; border-color:#8e3dc4; }
.availability-book:disabled { cursor:not-allowed; opacity:.45; }
.availability-footnote { position:relative; z-index:2; max-width:1220px; margin:19px auto 0; display:flex; align-items:center; gap:9px; color:rgba(255,255,255,.45); font-size:8px; }
.availability-footnote strong { color:#dbc2ed; }
.pulse-dot { width:7px; height:7px; border-radius:50%; background:#b75cff; box-shadow:0 0 0 6px rgba(183,92,255,.10); }

@media (max-width: 980px) {
  .fare-feature-v2 { grid-template-columns:1fr; }
  .fare-pass { min-height:410px; }
  .availability-head { grid-template-columns:1fr; gap:20px; }
  .availability-cards { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .travel-lines { grid-template-columns:1fr; }
  .kit-shelf { grid-template-columns:repeat(3,1fr); row-gap:30px; align-items:end; }
  .kit-shelf .kit-item:nth-child(4), .kit-shelf .kit-item:nth-child(5) { transform:translateX(50%); }
  .fare-pass-top { top:28px; left:28px; right:28px; }
  .availability-section { padding:74px 20px; }
}
@media (max-width: 480px) {
  .fan-kit-heading { flex-direction:column; }
  .kit-shelf { grid-template-columns:repeat(2,1fr); border-bottom-width:4px; }
  .kit-shelf .kit-item:nth-child(4), .kit-shelf .kit-item:nth-child(5) { transform:none; }
  .kit-shelf .kit-item:nth-child(5) { grid-column:1 / -1; }
  .photocard-shape { width:62px; height:88px; }
  .availability-card { padding:20px; }
}

/* ============================================================
   V5 — unified poster typography + animated route + multi-day booking
   ============================================================ */

/* Reuse the hero's bold/outlined visual language throughout the page. */
.poster-section-heading .kicker,
.route-heading .kicker,
.booking-head .kicker,
.faq-title .kicker {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.section-display-title {
  margin: 14px 0 22px;
  font-family: "Manrope", sans-serif !important;
  font-size: clamp(48px, 6.4vw, 96px) !important;
  line-height: .82 !important;
  letter-spacing: -.072em !important;
  text-transform: uppercase;
}
.section-display-title > span { display:block; }
.section-display-title .title-solid { color:#171019; }
.section-display-title .title-outline {
  margin-top:9px;
  color:transparent;
  -webkit-text-stroke:1.5px rgba(113,49,154,.72);
  text-shadow:0 0 28px rgba(135,52,196,.09);
}
.availability-section .title-solid,
.moving-route-section .title-solid,
.partners-section .title-solid { color:#fff; }
.availability-section .title-outline,
.moving-route-section .title-outline,
.partners-section .title-outline {
  -webkit-text-stroke:1.4px rgba(196,129,255,.88);
  text-shadow:0 0 34px rgba(151,61,235,.19);
}
.poster-section-heading.left { text-align:left; }

/* Inclusions now comes immediately after the hero and feels more editorial. */
.inclusions-section {
  position:relative;
  overflow:hidden;
  padding-top:112px;
}
.inclusions-section::before {
  content:"INCLUDED";
  position:absolute;
  left:-28px;
  top:30px;
  color:transparent;
  -webkit-text-stroke:1px rgba(109,43,145,.055);
  font:900 clamp(90px,16vw,240px)/.8 "Manrope",sans-serif;
  letter-spacing:-.09em;
  pointer-events:none;
}
.inclusions-section .section-heading { position:relative; z-index:2; max-width:1050px; }

/* Availability heading follows the same poster system. */
.availability-head { align-items:center; }
.availability-head .section-display-title { margin-bottom:0; }
.availability-section::after {
  content:"SEAT STATUS · SEAT STATUS · SEAT STATUS";
  position:absolute;
  left:0;
  bottom:14px;
  width:100%;
  color:rgba(255,255,255,.06);
  font:800 7px/1 "Manrope",sans-serif;
  letter-spacing:.35em;
  text-align:center;
  white-space:nowrap;
}

/* Animated pickup route */
.moving-route-section {
  display:block;
  padding:112px clamp(24px,6vw,96px) 118px;
  background:
    radial-gradient(circle at 76% 18%, rgba(126,46,201,.24), transparent 27%),
    radial-gradient(circle at 12% 88%, rgba(91,39,139,.19), transparent 28%),
    linear-gradient(135deg,#05030b,#170821 58%,#230d33);
  color:#fff;
  overflow:hidden;
  position:relative;
}
.moving-route-section::before {
  content:"ROUTE 01 → 02 → 03 → V";
  position:absolute;
  right:-35px;
  top:22px;
  color:transparent;
  -webkit-text-stroke:1px rgba(197,123,255,.08);
  font:900 clamp(62px,8.5vw,142px)/1 "Manrope",sans-serif;
  letter-spacing:-.08em;
  white-space:nowrap;
}
.route-heading { position:relative; z-index:2; max-width:1100px; margin-bottom:64px; }
.route-heading > p:last-child { max-width:650px; color:rgba(255,255,255,.55); font-size:12px; line-height:1.75; }

.moving-route { position:relative; z-index:2; max-width:1220px; margin:0 auto; padding:18px 0 12px; }
.route-rail { position:absolute; left:8%; right:8%; top:43px; height:16px; pointer-events:none; }
.route-rail-base,
.route-rail-glow { position:absolute; left:0; right:0; top:7px; height:2px; border-radius:999px; }
.route-rail-base { background:rgba(255,255,255,.14); }
.route-rail-glow {
  width:0;
  right:auto;
  background:linear-gradient(90deg,#7a35b2,#cf73ff,#ffffff);
  box-shadow:0 0 16px rgba(186,92,255,.65);
  animation:routeFill 7.5s ease-in-out infinite;
}
.moving-bus-icon {
  position:absolute;
  top:-4px;
  left:-4%;
  width:36px;
  height:17px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:6px 9px 5px 5px;
  background:linear-gradient(135deg,#7a35b2,#ad5af1);
  box-shadow:0 0 21px rgba(172,79,241,.48);
  animation:routeBus 7.5s ease-in-out infinite;
}
.moving-bus-icon::before {
  content:"V";
  position:absolute;
  left:4px;
  top:2px;
  color:white;
  font:900 7px/1 "Manrope",sans-serif;
}
.moving-bus-window { position:absolute; right:5px; top:3px; width:13px; height:5px; border-radius:2px; background:rgba(255,255,255,.72); }
.moving-bus-icon i,
.moving-bus-icon b { position:absolute; bottom:-4px; width:7px; height:7px; border:2px solid #eee3f8; background:#170821; border-radius:50%; }
.moving-bus-icon i { left:5px; }
.moving-bus-icon b { right:5px; }
@keyframes routeBus {
  0%,8% { left:-2%; transform:translateY(0); }
  29% { left:29%; transform:translateY(-2px); }
  50% { left:61%; transform:translateY(1px); }
  73%,90% { left:96%; transform:translateY(-2px); }
  100% { left:96%; opacity:.2; }
}
@keyframes routeFill {
  0%,8% { width:0; }
  29% { width:31%; }
  50% { width:63%; }
  73%,90% { width:100%; }
  100% { width:100%; opacity:.18; }
}

.moving-route-stops { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; position:relative; }
.moving-stop {
  padding:76px 18px 22px;
  min-height:210px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:22px;
  background:linear-gradient(155deg,rgba(255,255,255,.075),rgba(255,255,255,.018));
  backdrop-filter:blur(10px);
  position:relative;
}
.moving-stop::before {
  content:"";
  position:absolute;
  top:35px;
  left:50%;
  width:10px;
  height:10px;
  border-radius:50%;
  transform:translate(-50%,-50%);
  background:#c468ff;
  border:4px solid #14071f;
  box-shadow:0 0 0 1px rgba(214,151,255,.65),0 0 18px rgba(188,89,255,.65);
}
.moving-stop.destination {
  background:linear-gradient(145deg,rgba(116,43,170,.64),rgba(75,24,114,.56));
  border-color:rgba(206,144,255,.31);
}
.route-node { color:#bc79ec; font:900 8px/1 "Manrope",sans-serif; letter-spacing:.12em; }
.moving-stop time { display:block; margin-top:34px; color:#d3a9f0; font:800 9px/1 "Manrope",sans-serif; letter-spacing:.15em; }
.moving-stop strong { display:block; margin-top:9px; color:#fff; font:800 clamp(18px,2vw,25px)/1.02 "Manrope",sans-serif; letter-spacing:-.045em; }
.moving-stop p { margin:7px 0 0; color:rgba(255,255,255,.47); font-size:9px; }
.route-note { position:relative; z-index:2; max-width:820px; margin:28px auto 0; color:rgba(255,255,255,.43); text-align:center; font-size:9px; line-height:1.7; }

/* Booking — poster typography + multi-day controls */
.booking-section { position:relative; overflow:hidden; }
.booking-section::before {
  content:"BOOK YOUR RIDE";
  position:absolute;
  left:-20px;
  top:40px;
  color:transparent;
  -webkit-text-stroke:1px rgba(92,30,137,.045);
  font:900 clamp(80px,13vw,190px)/.85 "Manrope",sans-serif;
  letter-spacing:-.08em;
  white-space:nowrap;
}
.booking-head { position:relative; z-index:2; max-width:1040px; }
.booking-head .section-display-title { margin-left:auto; margin-right:auto; }

.trip-date-selector { border:0; padding:0; margin:0 0 14px; min-width:0; }
.trip-date-selector legend { margin-bottom:12px; color:#4f3f58; font:800 9px/1 "Manrope",sans-serif; letter-spacing:.08em; text-transform:uppercase; }
.trip-date-selector { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.booking-date-card {
  position:relative;
  min-height:178px;
  padding:22px;
  border:1px solid rgba(83,30,119,.12);
  border-radius:22px;
  background:linear-gradient(145deg,#fff,#f7effb);
  cursor:pointer;
  transition:.22s ease;
  overflow:hidden;
}
.booking-date-card:hover { transform:translateY(-3px); border-color:rgba(126,51,179,.34); box-shadow:0 17px 35px rgba(76,27,107,.09); }
.booking-date-card input { position:absolute; opacity:0; pointer-events:none; }
.booking-date-card .date-check {
  position:absolute;
  top:17px;
  right:17px;
  width:26px;
  height:26px;
  border:1px solid rgba(86,37,121,.19);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:transparent;
  font-size:11px;
}
.booking-date-card:has(input:checked) {
  color:#fff;
  border-color:#7134a2;
  background:linear-gradient(145deg,#4a176c,#7a32a9 68%,#a552de);
  box-shadow:0 18px 42px rgba(92,35,130,.19);
}
.booking-date-card:has(input:checked) .date-check { color:#fff; border-color:rgba(255,255,255,.55); background:rgba(255,255,255,.11); }
.booking-date-card small { display:block; color:#8a7794; font:800 7px/1 "Manrope",sans-serif; letter-spacing:.16em; }
.booking-date-card strong { display:block; margin-top:24px; color:#341344; font:900 46px/.86 "Manrope",sans-serif; letter-spacing:-.07em; }
.booking-date-card strong b { font-size:12px; letter-spacing:.08em; }
.booking-date-card em { display:block; margin-top:7px; color:#887190; font:800 8px/1 "Manrope",sans-serif; font-style:normal; letter-spacing:.15em; }
.booking-date-card .date-slots { display:block; margin-top:17px; color:#7e6c85; font-size:8px; }
.booking-date-card .date-slots b { color:#62228a; font:900 14px/1 "Manrope",sans-serif; }
.booking-date-card:has(input:checked) small,
.booking-date-card:has(input:checked) em,
.booking-date-card:has(input:checked) .date-slots { color:rgba(255,255,255,.68); }
.booking-date-card:has(input:checked) strong,
.booking-date-card:has(input:checked) .date-slots b { color:#fff; }
.trip-date-error { margin:4px 0 14px; color:#b23d58; font-size:9px; }

.multi-day-callout {
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin:18px 0 28px;
  padding:17px 19px;
  border-left:3px solid #8c41bc;
  background:#f1e6f7;
  border-radius:0 14px 14px 0;
}
.multi-day-callout > span { flex:0 0 auto; color:#742d9c; font:900 8px/1.3 "Manrope",sans-serif; letter-spacing:.12em; }
.multi-day-callout p { margin:0; color:#6e5f76; font-size:9px; line-height:1.6; }

.pickup-per-date { margin:8px 0 26px; }
.pickup-title { margin-bottom:14px; }
.pickup-date-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.pickup-date-field { margin:0; padding:15px; border:1px solid rgba(82,29,117,.09); border-radius:16px; background:#fcf9fe; }
.pickup-date-field > span b { color:#74279d; }
.compact-trip-grid { margin-top:10px; }
.multi-fare-preview { grid-template-columns:auto 20px auto 20px auto 20px minmax(150px,1fr); align-items:center; }
.multi-fare-preview > div:first-child span { display:block; margin-top:3px; color:#7c6c83; font-size:7px; }

.seat-date-toolbar { display:flex; gap:12px; align-items:stretch; justify-content:space-between; margin:0 0 16px; }
.seat-date-tabs { display:flex; flex:1; gap:8px; overflow:auto; scrollbar-width:thin; }
.seat-date-tab {
  min-width:145px;
  padding:12px 14px;
  border:1px solid rgba(81,28,117,.10);
  border-radius:14px;
  background:#f6effa;
  color:#563866;
  cursor:pointer;
  text-align:left;
}
.seat-date-tab small { display:block; color:#8e7999; font:800 6px/1 "Manrope",sans-serif; letter-spacing:.12em; }
.seat-date-tab strong { display:block; margin-top:5px; font:900 17px/1 "Manrope",sans-serif; }
.seat-date-tab span { display:block; margin-top:5px; font-size:7px; color:#8e7999; }
.seat-date-tab.active { background:linear-gradient(135deg,#542078,#8b3abb); color:#fff; border-color:transparent; box-shadow:0 12px 26px rgba(85,29,120,.16); }
.seat-date-tab.active small,.seat-date-tab.active span { color:rgba(255,255,255,.68); }
.same-seats-btn {
  flex:0 0 auto;
  border:1px solid rgba(102,37,147,.16);
  border-radius:14px;
  padding:10px 14px;
  background:#fff;
  color:#6d278f;
  font:800 8px/1.2 "Manrope",sans-serif;
  cursor:pointer;
}
.same-seats-btn:hover { background:#6f2b96; color:#fff; }
.seat-count em { color:#8c5ba4; font-style:normal; }

.per-date-seat-summary { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin:16px 0 4px; }
.seat-day-summary { padding:12px 14px; border:1px solid rgba(79,28,113,.09); border-radius:13px; background:#f8f2fb; }
.seat-day-summary small { display:block; color:#97889d; font:800 6px/1 "Manrope",sans-serif; letter-spacing:.11em; }
.seat-day-summary strong { display:block; margin:5px 0; color:#4c1b67; font:900 14px/1 "Manrope",sans-serif; }
.seat-day-summary span { color:#6c5e72; font-size:8px; }

.multi-final-summary { grid-template-columns:1fr 1.55fr 1fr; }
.summary-itinerary { display:grid; gap:7px; margin:12px 0 22px; }
.summary-trip-row { display:grid; grid-template-columns:90px 1fr auto; gap:12px; align-items:center; padding:11px 13px; border:1px solid rgba(81,28,117,.09); border-radius:12px; background:#faf6fc; }
.summary-trip-row strong { color:#66268c; font:900 10px/1 "Manrope",sans-serif; }
.summary-trip-row span { color:#6a5d70; font-size:8px; }
.summary-trip-row b { color:#331642; font:800 8px/1 "Manrope",sans-serif; }

.success-itinerary-list { display:grid; gap:7px; min-width:230px; }
.success-trip-row { padding:9px 10px; border-radius:9px; background:#f6effa; text-align:left; }
.success-trip-row strong { display:block; color:#5e2380; font:900 9px/1 "Manrope",sans-serif; }
.success-trip-row span,.success-trip-row b { display:block; margin-top:4px; color:#6e6075; font-size:7.5px; }
.success-trip-row b { color:#382044; }
.success-passenger-info em { display:block; margin-top:5px; color:#7b4d91; font-size:7px; font-style:normal; }

/* FAQ and partners inherit the same poster hierarchy. */
.faq-title { max-width:760px; }
.faq-title .section-display-title { font-size:clamp(42px,5.6vw,82px) !important; }
.partners-section .section-display-title { font-size:clamp(44px,5.8vw,86px) !important; }

/* No visible development/preview banner in the public-facing layout. */
.backend-notice { display:none !important; }

@media (max-width: 980px) {
  .section-display-title { font-size:clamp(48px,9.5vw,78px) !important; }
  .moving-route-stops { grid-template-columns:repeat(2,1fr); }
  .route-rail { display:none; }
  .moving-stop { padding-top:24px; min-height:165px; }
  .moving-stop::before { display:none; }
  .moving-stop time { margin-top:25px; }
  .pickup-date-grid { grid-template-columns:1fr 1fr; }
  .multi-fare-preview { grid-template-columns:1fr 18px 1fr 18px 1fr; }
  .multi-fare-preview .fare-total { grid-column:1/-1; margin-top:8px; }
}

@media (max-width: 720px) {
  .section-display-title { font-size:clamp(43px,14vw,68px) !important; line-height:.84 !important; }
  .inclusions-section { padding-top:82px; }
  .moving-route-section { padding:80px 20px 88px; }
  .route-heading { margin-bottom:32px; }
  .moving-route-stops { grid-template-columns:1fr; gap:9px; }
  .moving-stop { min-height:130px; }
  .moving-stop time { margin-top:16px; }
  .trip-date-selector { grid-template-columns:1fr; }
  .booking-date-card { min-height:145px; }
  .booking-date-card strong { font-size:39px; }
  .pickup-date-grid { grid-template-columns:1fr; }
  .multi-fare-preview { display:grid; grid-template-columns:1fr 16px 1fr; gap:8px; }
  .multi-fare-preview > span:nth-of-type(2) { display:none; }
  .multi-fare-preview > div:nth-of-type(3) { grid-column:1/2; }
  .multi-fare-preview .fare-total { grid-column:1/-1; }
  .seat-date-toolbar { flex-direction:column; }
  .same-seats-btn { width:100%; padding:13px; }
  .per-date-seat-summary { grid-template-columns:1fr; }
  .multi-final-summary { grid-template-columns:1fr; }
  .summary-trip-row { grid-template-columns:1fr; gap:5px; }
}


/* V6 hero/bus refinement: no artist photo on the illustrated wrap. */
.mini-bus-stage .bus-wrap-copy { max-width: 67%; }
.mini-bus-stage .bus-wrap-copy strong { font-size: clamp(25px, 3.3vw, 37px); letter-spacing: -.055em; }


/* V7 — payment channel reveal + installment options */
.payment-plan-block { margin-top: 22px; padding: 22px; border: 1px solid rgba(114,54,170,.18); border-radius: 20px; background: linear-gradient(135deg, rgba(249,246,255,.98), rgba(242,232,255,.78)); }
.payment-subtitle { margin-bottom: 16px; }
.payment-plan-options { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.payment-plan-card { position:relative; display:block; cursor:pointer; }
.payment-plan-card input { position:absolute; opacity:0; pointer-events:none; }
.payment-plan-copy { display:flex; min-height:132px; flex-direction:column; justify-content:center; gap:5px; padding:18px; border:1px solid rgba(91,45,135,.18); border-radius:16px; background:#fff; transition:.2s ease; }
.payment-plan-copy small { font-size:8px; letter-spacing:.18em; color:var(--violet-700); font-weight:800; }
.payment-plan-copy strong { font-size:20px; color:var(--violet-900); }
.payment-plan-copy em { font-style:normal; font-size:11px; line-height:1.55; color:var(--ink-soft); }
.payment-plan-card input:checked + .payment-plan-copy { border-color:var(--violet-700); box-shadow:0 0 0 3px rgba(117,65,173,.10), 0 12px 28px rgba(72,27,109,.10); transform:translateY(-1px); }
.installment-breakdown { margin-top:14px; display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.installment-breakdown > div, .installment-breakdown > span { padding:13px 15px; border-radius:13px; background:#2b153b; color:white; }
.installment-breakdown small { display:block; font-size:8px; letter-spacing:.12em; color:#d6b8ef; margin-bottom:4px; }
.installment-breakdown strong { font-size:18px; }
.installment-breakdown .full-payment-line { grid-column:1/-1; }
.payment-details-field { align-self:stretch; }
.payment-channel-details { min-height:120px; border:1px dashed rgba(112,63,156,.28); border-radius:14px; background:#fbf9ff; padding:14px; display:flex; flex-direction:column; justify-content:center; gap:8px; }
.payment-detail-placeholder { color:var(--ink-soft); font-size:11px; line-height:1.55; }
.payment-channel-badge { align-self:flex-start; padding:5px 9px; border-radius:999px; background:var(--violet-800); color:#fff; font-size:9px; font-weight:800; letter-spacing:.08em; }
.payment-detail-row { display:flex; align-items:baseline; justify-content:space-between; gap:15px; border-bottom:1px solid rgba(86,43,128,.10); padding-bottom:6px; }
.payment-detail-row small { color:var(--ink-soft); font-size:9px; }
.payment-detail-row strong { font-size:12px; color:var(--violet-900); text-align:right; }
.payment-channel-details p { margin:2px 0 0; color:var(--ink-soft); font-size:9px; line-height:1.5; }
@media(max-width:760px){ .payment-plan-options,.installment-breakdown{grid-template-columns:1fr;} .installment-breakdown .full-payment-line{grid-column:auto;} }


/* =========================
   V8 — BALANCE PAYMENT FLOW
========================= */
.nav-pay{display:inline-flex;align-items:center;justify-content:center;padding:9px 14px;border:1px solid rgba(203,169,255,.45);border-radius:999px;color:#e8d7ff!important;background:rgba(139,65,212,.08)}
.nav-pay:hover{background:rgba(139,65,212,.2);border-color:#b96cff}
.hero-pay-link{display:inline-flex;align-items:center;color:#d7b9ff;text-decoration:none;font-weight:800;font-size:.83rem;letter-spacing:.02em;margin-left:2px}
.hero-pay-link:hover{color:#fff}
.balance-cta-section{position:relative;padding:88px 6%;background:#090611;overflow:hidden;border-top:1px solid rgba(183,108,255,.16);border-bottom:1px solid rgba(183,108,255,.16)}
.balance-cta-section:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 82% 30%,rgba(137,52,255,.18),transparent 32%),linear-gradient(115deg,transparent 0 56%,rgba(167,91,255,.05) 56% 57%,transparent 57%);pointer-events:none}
.balance-cta-inner{position:relative;max-width:1220px;margin:auto;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:46px;align-items:center}
.balance-cta-card{border:1px solid rgba(199,164,255,.3);border-radius:24px;padding:30px;background:linear-gradient(145deg,rgba(36,19,58,.92),rgba(13,8,25,.95));box-shadow:0 24px 70px rgba(0,0,0,.35)}
.balance-cta-card small{display:block;color:#b96cff;letter-spacing:.17em;font-weight:900;font-size:.68rem;margin-bottom:12px}
.balance-cta-card strong{display:block;color:#fff;font-size:1.35rem;line-height:1.35;margin-bottom:22px}.balance-cta-card strong span{color:#d7b9ff;font-size:1.55rem}
.footer-actions{display:flex;gap:10px;align-items:center;flex-wrap:wrap}.btn-ghost-light{border:1px solid rgba(255,255,255,.28);color:#fff;background:transparent;text-decoration:none}

/* Balance page */
.balance-page{background:#070510;color:#f7f2ff;min-height:100vh}
.balance-page .site-header{background:rgba(7,5,16,.86);backdrop-filter:blur(18px)}
.balance-hero{min-height:560px;padding:150px 6% 80px;position:relative;overflow:hidden;display:grid;grid-template-columns:1fr .75fr;gap:50px;align-items:center;background:#070510}
.balance-hero:before{content:"";position:absolute;inset:0;background-image:radial-gradient(rgba(161,97,238,.16) 1px,transparent 1px);background-size:16px 16px;opacity:.55;mask-image:linear-gradient(90deg,#000,transparent 94%)}
.balance-hero:after{content:"V";position:absolute;right:5%;top:14%;font-weight:900;font-size:min(42vw,520px);line-height:.8;color:transparent;-webkit-text-stroke:1px rgba(173,107,255,.15);transform:rotate(-5deg);pointer-events:none}
.balance-hero-copy,.balance-hero-card{position:relative;z-index:2}
.balance-hero .hero-kicker{color:#b96cff}.balance-hero h1{margin:12px 0 22px;font-size:clamp(58px,8vw,122px);line-height:.82;letter-spacing:-.07em}.balance-hero h1 span{display:block}.balance-hero h1 .balance-outline{color:transparent;-webkit-text-stroke:2px #c79fff}
.balance-hero-copy>p:last-of-type{max-width:690px;color:#b8afc8;line-height:1.75;font-size:1rem}
.balance-hero-card{border:1px solid rgba(198,161,255,.27);border-radius:28px;padding:28px;background:linear-gradient(145deg,rgba(34,20,55,.95),rgba(12,8,23,.94));box-shadow:0 35px 80px rgba(0,0,0,.42)}
.balance-hero-card .mini-label{color:#ba79ff}.balance-hero-card strong{display:block;font-size:2.2rem;margin:8px 0 6px}.balance-hero-card p{color:#bcb2ca;line-height:1.6;margin:0}.balance-hero-card .due-badge{margin-top:22px;padding:13px 16px;border:1px solid rgba(255,205,104,.25);background:rgba(255,205,104,.06);border-radius:14px;color:#ffdb88;font-weight:800}
.balance-main{padding:70px 6% 110px;background:linear-gradient(#0b0712,#0a0711)}
.balance-shell{max-width:980px;margin:auto}
.balance-lookup,.balance-payment-panel,.balance-success{border:1px solid rgba(190,148,255,.22);border-radius:26px;background:#141020;box-shadow:0 26px 80px rgba(0,0,0,.3);overflow:hidden}
.balance-panel-head{padding:26px 28px;border-bottom:1px solid #2e2240;background:linear-gradient(125deg,#1b102b,#130d20)}
.balance-panel-head small{color:#b96cff;font-weight:900;letter-spacing:.16em}.balance-panel-head h2{margin:7px 0 0;font-size:1.7rem}.balance-panel-body{padding:28px}
.balance-lookup-grid{display:grid;grid-template-columns:1fr 1fr auto;gap:12px;align-items:end}.balance-lookup-grid .field{margin:0}.balance-lookup-grid .btn{min-height:52px}
.balance-status-message{margin:18px 0 0;padding:13px 15px;border-radius:12px;background:#0e0b16;color:#bdb3ca;font-size:.88rem;display:none}.balance-status-message.show{display:block}.balance-status-message.error{color:#ffabbc;border:1px solid rgba(255,90,128,.22)}
.balance-payment-panel{margin-top:24px}.balance-payment-panel[hidden]{display:none!important}
.booking-found-card{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-bottom:26px}.booking-found-card>div{padding:16px;background:#0d0a14;border:1px solid #2d213e;border-radius:14px}.booking-found-card small{display:block;color:#857b93;font-size:.65rem;font-weight:800;letter-spacing:.08em;margin-bottom:5px}.booking-found-card strong{color:#f7f2ff;font-size:.9rem}.booking-found-card .balance-highlight strong{color:#d4a9ff;font-size:1.25rem}
.balance-methods{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:16px 0 18px}.balance-method-card{position:relative;cursor:pointer}.balance-method-card input{position:absolute;opacity:0}.balance-method-card span{display:block;padding:18px;border:1px solid #38264e;border-radius:16px;background:#0d0a15;font-weight:900;color:#c9bfd6;transition:.2s}.balance-method-card input:checked+span{border-color:#a85cff;background:rgba(156,70,255,.12);color:#fff;box-shadow:0 0 0 2px rgba(168,92,255,.12) inset}
.balance-payment-details{min-height:74px;margin-bottom:18px;padding:15px 16px;border:1px dashed #432e59;border-radius:14px;background:#0c0912;color:#c8bfd4}.balance-payment-details strong{color:#fff}.balance-payment-details .payment-detail-row{display:flex;justify-content:space-between;gap:18px;padding:5px 0}.balance-payment-details .payment-detail-row small{color:#8d8399}
.balance-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.balance-form-grid .wide{grid-column:1/-1}.balance-actions{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-top:22px}.balance-actions p{margin:0;color:#8f849f;font-size:.78rem;line-height:1.5;max-width:560px}.balance-success{padding:38px;text-align:center;margin-top:24px}.balance-success[hidden]{display:none!important}.balance-success .success-icon{margin:auto auto 14px}.balance-success h2{margin:5px 0 10px}.balance-success p{color:#b9afc7}.balance-success .balance-ref{display:inline-flex;flex-direction:column;margin-top:10px;padding:14px 22px;border-radius:14px;background:#0d0a14}.balance-success .balance-ref small{color:#897e96}.balance-success .balance-ref strong{color:#d4a9ff;font-size:1.2rem}
.balance-security-note{margin-top:24px;padding:18px 20px;border-radius:16px;background:#0d0a14;border:1px solid #2e203d;color:#9f95ac;font-size:.78rem;line-height:1.65}.balance-security-note strong{color:#d7c7ec}
@media(max-width:900px){.balance-cta-inner,.balance-hero{grid-template-columns:1fr}.balance-lookup-grid{grid-template-columns:1fr}.booking-found-card{grid-template-columns:1fr 1fr}.balance-methods{grid-template-columns:1fr}.balance-form-grid{grid-template-columns:1fr}.balance-form-grid .wide{grid-column:auto}}
@media(max-width:600px){.balance-hero{padding-top:125px}.balance-hero h1{font-size:58px}.booking-found-card{grid-template-columns:1fr}.balance-panel-head,.balance-panel-body{padding:22px 18px}.balance-actions{align-items:stretch;flex-direction:column}.balance-actions .btn{width:100%}.footer-actions{width:100%}.footer-actions .btn{flex:1}}
/* =========================================================
   V9 — PARTNER LOGOS + BALANCE DEMO
   ========================================================= */
.project-logo-lockup{display:flex;align-items:center;gap:12px;width:max-content;max-width:100%;}
.hero-project-logos{margin:-6px 0 24px;}
.balance-project-logos{margin:0 0 24px;}
.project-logo-link{display:flex;align-items:center;justify-content:center;text-decoration:none;}
.project-logo{display:block;object-fit:contain;}
.project-logo-taehyung{width:58px;height:58px;border-radius:50%;box-shadow:0 0 0 1px rgba(217,184,255,.28),0 10px 32px rgba(141,53,255,.2);}
.project-logo-fob{width:104px;height:58px;object-fit:contain;filter:drop-shadow(0 8px 16px rgba(0,0,0,.25));}
.project-logo-x{font:800 12px/1 Manrope,sans-serif;color:rgba(255,255,255,.38);}
.partner-logo-wrap{height:76px;display:flex;align-items:center;margin-bottom:16px;}
.partner-logo-wrap img{display:block;max-height:72px;max-width:160px;object-fit:contain;}
.partner-logo-round img{width:72px;height:72px;border-radius:50%;box-shadow:0 0 0 1px rgba(255,255,255,.14);}
.partner-logo-transparent img{width:150px;filter:drop-shadow(0 8px 18px rgba(0,0,0,.22));}
.footer-brand-with-logos{gap:16px;}
.footer-project-logos{display:flex;align-items:center;gap:7px;padding-right:16px;border-right:1px solid rgba(255,255,255,.13);}
.footer-project-logos img{display:block;object-fit:contain;}
.footer-tae-logo{width:40px;height:40px;border-radius:50%;}
.footer-fob-logo{width:72px;height:42px;}
.footer-project-logos span{font-size:10px;color:rgba(255,255,255,.35);font-weight:800;}
.demo-booking-card{margin-top:18px;padding:16px 18px;border:1px solid rgba(185,108,255,.28);border-radius:18px;background:linear-gradient(135deg,rgba(141,53,255,.10),rgba(255,255,255,.025));display:grid;grid-template-columns:1fr auto;gap:10px 18px;align-items:center;}
.demo-booking-card small{display:block;color:#9d90ad;font:800 9px/1.2 Manrope,sans-serif;letter-spacing:.14em;margin-bottom:5px;}
.demo-booking-card strong{display:block;color:#f8f5ff;font-size:13px;}
.demo-booking-values{display:flex;gap:7px;grid-column:1/2;flex-wrap:wrap;}
.demo-booking-values code{font:700 10px/1.2 ui-monospace,SFMono-Regular,Menlo,monospace;color:#d9b8ff;background:#0d0917;border:1px solid #35234d;border-radius:8px;padding:7px 9px;}
.demo-fill-btn{grid-column:2;grid-row:1/3;border:1px solid rgba(217,184,255,.28);background:#8d35ff;color:#fff;font:800 10px/1 Manrope,sans-serif;letter-spacing:.04em;padding:11px 14px;border-radius:999px;cursor:pointer;}
.demo-fill-btn:hover{transform:translateY(-1px);background:#a55dff;}
@media(max-width:760px){
  .hero-project-logos{margin-bottom:18px;}
  .project-logo-taehyung{width:48px;height:48px;}
  .project-logo-fob{width:86px;height:48px;}
  .footer-brand-with-logos{align-items:flex-start;flex-direction:column;}
  .footer-project-logos{border-right:0;padding-right:0;}
  .demo-booking-card{grid-template-columns:1fr;}
  .demo-fill-btn{grid-column:1;grid-row:auto;width:max-content;}
}
/* =========================================================
   V10 — COMPACT PARTNER LOGOS / TRANSPARENT ASSET CLEANUP
   ========================================================= */
.project-logo-lockup{gap:8px !important;}
.hero-project-logos{margin:-2px 0 18px !important;}
.balance-project-logos{margin:0 0 18px !important;}
.project-logo-taehyung{width:34px !important;height:34px !important;border-radius:50%;object-fit:cover;box-shadow:0 0 0 1px rgba(217,184,255,.18),0 6px 18px rgba(141,53,255,.14) !important;}
.project-logo-fob{width:62px !important;height:34px !important;object-fit:contain !important;filter:drop-shadow(0 5px 12px rgba(0,0,0,.20)) !important;}
.project-logo-x{font-size:9px !important;opacity:.8;}
.partner-logo-wrap{height:54px !important;min-height:54px !important;margin-bottom:12px !important;align-items:center;}
.partner-logo-round img{width:50px !important;height:50px !important;max-width:50px !important;max-height:50px !important;border-radius:50%;object-fit:cover;}
.partner-logo-transparent img{width:94px !important;height:auto !important;max-width:94px !important;max-height:50px !important;object-fit:contain;filter:drop-shadow(0 5px 13px rgba(0,0,0,.18)) !important;}
.footer-project-logos{gap:6px !important;padding-right:12px !important;}
.footer-tae-logo{width:26px !important;height:26px !important;border-radius:50%;object-fit:cover;}
.footer-fob-logo{width:50px !important;height:26px !important;object-fit:contain !important;}
.footer-project-logos span{font-size:8px !important;}
.project-logo-link,.partner-logo-wrap,.footer-project-logos img{background:transparent !important;}
@media(max-width:760px){
  .hero-project-logos{margin-bottom:15px !important;}
  .project-logo-taehyung{width:30px !important;height:30px !important;}
  .project-logo-fob{width:54px !important;height:30px !important;}
  .partner-logo-round img{width:44px !important;height:44px !important;}
  .partner-logo-transparent img{width:82px !important;max-height:44px !important;}
  .footer-tae-logo{width:24px !important;height:24px !important;}
  .footer-fob-logo{width:46px !important;height:24px !important;}
}

/* V10.1 — BALANCE PAGE LOGOS: intentionally smaller */
.balance-page .balance-project-logos,
.balance-project-logos {
  gap: 6px !important;
  margin: 0 0 14px !important;
}
.balance-project-logos .project-logo-taehyung {
  width: 28px !important;
  height: 28px !important;
}
.balance-project-logos .project-logo-fob {
  width: 50px !important;
  height: 28px !important;
}
.balance-project-logos .project-logo-x {
  font-size: 8px !important;
}
body:has(.balance-project-logos) .footer-tae-logo {
  width: 22px !important;
  height: 22px !important;
}
body:has(.balance-project-logos) .footer-fob-logo {
  width: 42px !important;
  height: 22px !important;
}
@media (max-width:760px) {
  .balance-project-logos .project-logo-taehyung { width:26px !important; height:26px !important; }
  .balance-project-logos .project-logo-fob { width:46px !important; height:26px !important; }
}


/* =========================================================
   V10.2 — HORIZONTAL PARTNER LOGOS + COMPACT PAGE BRAND
   ========================================================= */
.project-logo-lockup,
.hero-project-logos,
.balance-project-logos,
.footer-project-logos{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:flex-start !important;
  flex-wrap:nowrap !important;
  gap:8px !important;
}
.project-logo-link{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.hero-project-logos,
.balance-project-logos{
  width:max-content !important;
  max-width:100% !important;
}
.footer-project-logos{
  width:max-content !important;
}
.partner-logo-wrap{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:flex-start !important;
}
.partner-logos-row{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:row !important;
  gap:14px !important;
  flex-wrap:nowrap !important;
}

/* Compact site identity: V + bus */
.site-brand-mark{
  display:inline-flex;
  align-items:center;
  gap:5px;
  margin-right:14px;
  flex:0 0 auto;
  line-height:1;
}
.site-brand-mark .brand-v{
  font-family:Arial,Helvetica,sans-serif;
  font-weight:900;
  font-size:24px;
  letter-spacing:-2px;
  color:#f8f5ff;
  text-shadow:0 0 14px rgba(185,108,255,.35);
}
.site-brand-mark .brand-bus{
  font-size:14px;
  transform:translateY(1px);
  filter:saturate(.7) brightness(1.15);
}

/* Keep FAQ title concise */
#faqs h2,
.faqs h2,
.faq-section h2,
.section-faq h2{
  text-transform:none !important;
  letter-spacing:-.02em !important;
}

@media(max-width:760px){
  .project-logo-lockup,
  .hero-project-logos,
  .balance-project-logos,
  .footer-project-logos,
  .partner-logos-row{
    flex-direction:row !important;
    flex-wrap:nowrap !important;
  }
  .site-brand-mark .brand-v{font-size:21px;}
  .site-brand-mark .brand-bus{font-size:13px;}
}


/* =========================================================
   V10.3 — HEADER BRAND CLEANUP
   One compact V + bus mark. No duplicate floating logo.
   ========================================================= */
.site-header{
  justify-content:space-between !important;
}
.site-header .brand{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  min-width:0;
}
.site-header .brand-dot-combo{
  position:relative !important;
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  border-radius:11px !important;
  overflow:hidden !important;
  display:block !important;
  background:linear-gradient(145deg,#faf7ff 0 46%,#a94dff 47% 100%) !important;
  color:#16091f !important;
  box-shadow:0 0 24px rgba(148,56,255,.25) !important;
}
.brand-mini-v{
  position:absolute;
  left:10px;
  top:7px;
  font-family:"Playfair Display",Georgia,serif;
  font-size:21px;
  font-style:italic;
  font-weight:700;
  line-height:1;
  color:#190b22;
  z-index:2;
}
.brand-mini-bus{
  position:absolute;
  width:18px;
  height:14px;
  right:4px;
  bottom:5px;
  color:#fff;
  filter:drop-shadow(0 1px 2px rgba(44,9,70,.28));
}
/* Remove legacy center logo completely if cached markup remains. */
.site-brand-mark{display:none !important;}

.site-header .brand strong{
  font-size:12px !important;
  letter-spacing:.16em !important;
  white-space:nowrap;
}
.site-header .brand small{
  font-size:9px !important;
  line-height:1.35;
  margin-top:3px;
  white-space:nowrap;
}

.faq-simple-title{
  display:block !important;
  color:#f8f5ff !important;
  -webkit-text-stroke:0 !important;
  text-transform:none !important;
  letter-spacing:-.055em !important;
}

@media(max-width:760px){
  .site-header .brand-dot-combo{
    width:38px !important;
    height:38px !important;
    min-width:38px !important;
    border-radius:9px !important;
  }
  .brand-mini-v{left:8px;top:6px;font-size:18px;}
  .brand-mini-bus{width:16px;height:12px;right:3px;bottom:4px;}
  .site-header .brand strong{font-size:10.5px !important;}
  .site-header .brand small{font-size:8px !important;}
}


/* =========================================================
   V10.5 — READABILITY FIX + CENTERED PARTNER LOGOS
   ========================================================= */

/* 1) HOMEPAGE PAY REMAINING BALANCE SECTION */
.balance-cta-section .kicker{
  color:#cda6ff !important;
  opacity:1 !important;
}

.balance-cta-section .section-display-title .title-solid{
  color:#ffffff !important;
  opacity:1 !important;
  text-shadow:0 4px 28px rgba(0,0,0,.28);
}

.balance-cta-section .section-display-title .title-outline{
  color:transparent !important;
  -webkit-text-stroke:2px #b96cff !important;
  text-shadow:0 0 26px rgba(185,108,255,.22) !important;
  opacity:1 !important;
}

.balance-cta-section .poster-section-heading > p:last-child{
  color:#d6cde0 !important;
  opacity:1 !important;
  font-size:15px !important;
  line-height:1.75 !important;
  max-width:780px;
}

/* 2) BALANCE.HTML HERO — keep PAY YOUR readable too */
.balance-page .balance-hero h1 > span:first-child{
  color:#ffffff !important;
  opacity:1 !important;
}

.balance-page .balance-hero h1 .balance-outline{
  color:transparent !important;
  -webkit-text-stroke:2px #c79fff !important;
  opacity:1 !important;
}

.balance-page .balance-hero-copy > p:last-of-type{
  color:#d6cde0 !important;
  opacity:1 !important;
}

/* 3) FAQs — dark title on white background */
.faq-section .faq-simple-title,
#faq .faq-simple-title{
  color:#351347 !important;
  -webkit-text-stroke:0 !important;
  text-shadow:none !important;
  opacity:1 !important;
  font-weight:800 !important;
}

.faq-section .kicker,
#faq .kicker{
  color:#67249b !important;
  opacity:1 !important;
}

.faq-title > p:last-child{
  color:#6f6677 !important;
  opacity:1 !important;
  font-size:15px !important;
  line-height:1.7 !important;
}

/* 4) PARTNERSHIP LOGOS — centered + medium size */
.partner-logo-wrap{
  width:100% !important;
  min-height:104px !important;
  height:104px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 auto 18px !important;
  text-align:center !important;
}

.partner-logo-round img{
  width:90px !important;
  height:90px !important;
  max-width:90px !important;
  max-height:90px !important;
  border-radius:50%;
  object-fit:cover !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.16),
    0 12px 28px rgba(0,0,0,.18) !important;
}

.partner-logo-transparent img{
  width:165px !important;
  height:auto !important;
  max-width:165px !important;
  max-height:90px !important;
  object-fit:contain !important;
  background:transparent !important;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,.16)) !important;
}

/* Make partner headings feel centered with the logos */
.partner-card .partner-label{
  text-align:center !important;
}

.partner-card h3{
  text-align:center !important;
  margin-top:10px !important;
}

/* Keep description readable */
.partner-card > p{
  font-size:13px !important;
  line-height:1.72 !important;
}

/* Responsive tuning */
@media(max-width:760px){
  .balance-cta-section .section-display-title .title-outline{
    -webkit-text-stroke:1.3px #b96cff !important;
  }

  .balance-cta-section .poster-section-heading > p:last-child,
  .faq-title > p:last-child{
    font-size:14px !important;
  }

  .partner-logo-wrap{
    min-height:88px !important;
    height:88px !important;
    margin-bottom:14px !important;
  }

  .partner-logo-round img{
    width:74px !important;
    height:74px !important;
    max-width:74px !important;
    max-height:74px !important;
  }

  .partner-logo-transparent img{
    width:140px !important;
    max-width:140px !important;
    max-height:74px !important;
  }
}


/* =========================================================
   V10.6 — UPDATED TAEHYUNG EDITORIAL PHOTOS
   ========================================================= */
.portrait-shard img.tae-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  image-rendering:auto;
  backface-visibility:hidden;
}

/* Newer Vogue Japan-era crops, tuned per shard */
.shard-main img.tae-photo-main{
  object-position:50% 30% !important;
  transform:scale(1.08) !important;
  filter:saturate(.74) contrast(1.10) brightness(.84) !important;
}

.shard-left img.tae-photo-left{
  object-position:50% 24% !important;
  transform:scale(1.12) !important;
  filter:saturate(.52) contrast(1.13) brightness(.75) !important;
}

.shard-right img.tae-photo-right{
  object-position:51% 28% !important;
  transform:scale(1.18) !important;
  filter:saturate(.60) contrast(1.14) brightness(.77) !important;
}

/* Violet editorial tint stays subtle so faces remain readable */
.portrait-shard::after{
  background:
    linear-gradient(145deg,rgba(111,25,185,.08),rgba(34,5,55,.17)) !important;
  mix-blend-mode:normal;
}

@media(max-width:760px){
  .shard-main img.tae-photo-main{
    object-position:50% 27% !important;
    transform:scale(1.06) !important;
  }
  .shard-left img.tae-photo-left{
    object-position:50% 22% !important;
  }
  .shard-right img.tae-photo-right{
    object-position:50% 25% !important;
  }
}


/* =========================================================
   V10.7 — REFINED SITE ICON
   ========================================================= */
.site-logo-mark{
  width:58px !important;
  height:58px !important;
  flex:0 0 58px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  overflow:visible !important;
}

.site-logo-mark img{
  width:58px !important;
  height:58px !important;
  display:block !important;
  object-fit:contain !important;
  background:transparent !important;
  filter:drop-shadow(0 8px 18px rgba(111,35,188,.18));
}

/* prevent legacy V / emoji icon from showing */
.site-brand-mark,
.brand-v,
.brand-bus{
  display:none !important;
}

@media(max-width:760px){
  .site-logo-mark{
    width:48px !important;
    height:48px !important;
    flex-basis:48px !important;
  }
  .site-logo-mark img{
    width:48px !important;
    height:48px !important;
  }
}


/* V10.8 — removed bottom fan-project collaboration strip */
.project-signature:empty,
.fan-project-strip:empty,
.collab-strip:empty,
.footer-project-strip:empty{
  display:none !important;
}


/* V11 — combined site logo + restored hero with user-selected photos */
.site-header .brand {display:flex; align-items:center; gap:14px; max-width:fit-content;}
.site-header .brand strong {display:block; font-size:clamp(20px, 2vw, 24px); letter-spacing:.12em;}
.site-header .brand small {display:block; margin-top:6px; font-size:12px; letter-spacing:.02em; color:rgba(255,255,255,.55);}
.site-header .brand-dot.brand-dot-combo {
  width:auto; height:auto; min-width:unset; min-height:unset; padding:6px 10px; border-radius:999px;
  display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.05);
  border:1px solid rgba(192,112,255,.22); box-shadow:0 0 28px rgba(148,56,255,.18);
}
.site-header .brand-logo-tae {width:34px; height:34px; object-fit:contain; display:block;}
.site-header .brand-logo-divider {font-size:12px; color:rgba(255,255,255,.35); font-weight:800; line-height:1;}
.site-header .brand-logo-fob {width:62px; height:24px; object-fit:contain; display:block; filter:drop-shadow(0 3px 8px rgba(0,0,0,.20));}

.poster-hero {padding-top:122px;}
.poster-copy {padding-top:16px;}
.poster-brandline {margin-bottom:24px;}
.poster-proof {display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:0; margin-top:40px; padding-top:22px; border-top:1px solid rgba(184,106,255,.28);}
.poster-proof div {padding-right:18px; margin-right:18px; border-right:1px solid rgba(184,106,255,.20);}
.poster-proof div:last-child {border-right:0; margin-right:0; padding-right:0;}
.poster-proof strong {display:block;}
.hero-pay-link {white-space:nowrap;}
.shard-main img {object-position:50% 18%; transform:scale(1.06); filter:saturate(.85) contrast(1.04) brightness(.88);}
.shard-left img {object-position:50% 12%; transform:scale(1.12); filter:saturate(.72) contrast(1.12) brightness(.76);}
.shard-right img {object-position:51% 12%; transform:scale(1.10); filter:saturate(.78) contrast(1.08) brightness(.87);}

@media (max-width: 900px){
  .site-header .brand strong {font-size:18px;}
  .site-header .brand small {font-size:11px;}
  .site-header .brand-logo-tae {width:30px; height:30px;}
  .site-header .brand-logo-fob {width:54px; height:22px;}
  .poster-proof {grid-template-columns:1fr;}
  .poster-proof div {border-right:0; margin-right:0; padding-right:0; padding-bottom:10px; margin-bottom:10px; border-bottom:1px solid rgba(184,106,255,.20);}
  .poster-proof div:last-child {border-bottom:0; padding-bottom:0; margin-bottom:0;}
}
@media (max-width: 640px){
  .site-header .brand-dot.brand-dot-combo {padding:5px 8px; gap:6px;}
  .site-header .brand-logo-tae {width:26px; height:26px;}
  .site-header .brand-logo-fob {width:46px; height:18px;}
  .site-header .brand strong {letter-spacing:.08em; font-size:15px;}
  .site-header .brand small {font-size:10px; margin-top:4px;}
}

/* =========================================================
   V11.1 — HERO PHOTO COMPOSITION: SHOW ALL 3 PHOTOS
   ========================================================= */
.poster-visual{
  min-height:700px !important;
  overflow:visible !important;
}

/* Give every portrait its own readable zone instead of stacking heavily. */
.portrait-shard{
  overflow:hidden !important;
  border:1px solid rgba(202,151,255,.18) !important;
  background:#0c0714 !important;
  box-shadow:0 28px 54px rgba(0,0,0,.36) !important;
  filter:none !important;
}

.portrait-shard::after{
  background:linear-gradient(180deg,rgba(69,18,108,.04),rgba(21,5,33,.12)) !important;
  box-shadow:inset 0 0 0 1px rgba(210,170,255,.09) !important;
  pointer-events:none;
}

/* CENTER / GLASSES — still the hero image */
.shard-main{
  z-index:3 !important;
  width:44% !important;
  height:76% !important;
  left:28% !important;
  right:auto !important;
  top:2% !important;
  clip-path:polygon(9% 0,100% 0,94% 94%,50% 100%,0 92%,5% 8%) !important;
}
.shard-main img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:50% 18% !important;
  transform:scale(1.01) !important;
  filter:saturate(.88) contrast(1.05) brightness(.90) !important;
}

/* LEFT / BLACK — fully visible, no longer hidden behind center */
.shard-left{
  z-index:2 !important;
  width:31% !important;
  height:59% !important;
  left:0 !important;
  top:18% !important;
  clip-path:polygon(8% 3%,100% 0,94% 96%,8% 100%,0 80%,3% 13%) !important;
  transform:rotate(-2deg);
  transform-origin:center center;
}
.shard-left img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:50% 13% !important;
  transform:scale(1.015) !important;
  filter:saturate(.80) contrast(1.07) brightness(.86) !important;
}

/* RIGHT / RED — fully visible and balanced with the left */
.shard-right{
  z-index:4 !important;
  width:31% !important;
  height:59% !important;
  right:0 !important;
  left:auto !important;
  top:20% !important;
  clip-path:polygon(5% 0,92% 3%,100% 84%,91% 100%,8% 95%,0 16%) !important;
  transform:rotate(2deg);
  transform-origin:center center;
}
.shard-right img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:50% 12% !important;
  transform:scale(1.015) !important;
  filter:saturate(.88) contrast(1.04) brightness(.93) !important;
}

/* Keep decorative V behind, but don't let it compete with the images. */
.giant-v{
  right:13% !important;
  top:5% !important;
  opacity:.52 !important;
}

@media(max-width:1100px){
  .poster-visual{min-height:650px !important;}
  .shard-main{width:46% !important;left:27% !important;height:73% !important;}
  .shard-left{width:32% !important;height:55% !important;top:20% !important;}
  .shard-right{width:32% !important;height:55% !important;top:22% !important;}
}

@media(max-width:900px){
  .poster-visual{
    min-height:640px !important;
    margin-top:20px;
  }
  .shard-main{width:46% !important;left:27% !important;height:72% !important;top:0 !important;}
  .shard-left{width:31% !important;height:55% !important;left:0 !important;top:19% !important;}
  .shard-right{width:31% !important;height:55% !important;right:0 !important;top:21% !important;}
}

@media(max-width:620px){
  /* On small phones use a 3-card row so no photo disappears. */
  .poster-visual{
    min-height:520px !important;
    display:grid !important;
    grid-template-columns:.88fr 1.15fr .88fr !important;
    gap:8px !important;
    align-items:center !important;
    padding:24px 0 8px !important;
  }
  .portrait-shard{
    position:relative !important;
    inset:auto !important;
    width:100% !important;
    transform:none !important;
  }
  .shard-left,
  .shard-right{
    height:360px !important;
    clip-path:polygon(5% 2%,95% 0,100% 94%,7% 100%,0 9%) !important;
  }
  .shard-main{
    height:440px !important;
    clip-path:polygon(6% 0,96% 2%,100% 95%,50% 100%,0 94%,3% 6%) !important;
  }
  .shard-left img,
  .shard-main img,
  .shard-right img{
    transform:none !important;
  }
  .shard-left img{object-position:50% 15% !important;}
  .shard-main img{object-position:50% 17% !important;}
  .shard-right img{object-position:50% 14% !important;}
  .giant-v{display:none !important;}
}


/* =========================================================
   V11.2 — FINAL V + BUS SITE LOGO
   ========================================================= */
.site-header .brand-dot.brand-dot-combo.brand-site-logo{
  width:58px !important;
  height:58px !important;
  min-width:58px !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:visible !important;
}

.site-header .brand-dot.brand-dot-combo.brand-site-logo img{
  display:block !important;
  width:58px !important;
  height:58px !important;
  object-fit:contain !important;
  background:transparent !important;
  filter:drop-shadow(0 5px 14px rgba(138,62,225,.22));
}

@media(max-width:760px){
  .site-header .brand-dot.brand-dot-combo.brand-site-logo{
    width:48px !important;
    height:48px !important;
    min-width:48px !important;
  }
  .site-header .brand-dot.brand-dot-combo.brand-site-logo img{
    width:48px !important;
    height:48px !important;
  }
}


/* V11.3 — brighter, more visible site logo */
.site-header .brand-dot.brand-dot-combo.brand-site-logo{
  width:66px !important;
  height:56px !important;
  min-width:66px !important;
}

.site-header .brand-dot.brand-dot-combo.brand-site-logo img{
  width:66px !important;
  height:56px !important;
  object-fit:contain !important;
  filter:
    drop-shadow(0 0 8px rgba(211,176,255,.36))
    drop-shadow(0 4px 10px rgba(0,0,0,.24)) !important;
  opacity:1 !important;
}

@media(max-width:760px){
  .site-header .brand-dot.brand-dot-combo.brand-site-logo{
    width:56px !important;
    height:48px !important;
    min-width:56px !important;
  }
  .site-header .brand-dot.brand-dot-combo.brand-site-logo img{
    width:56px !important;
    height:48px !important;
  }
}


/* =========================================================
   V11.4 — FOOTER PARTNER LOCKUP
   ========================================================= */
.footer-brand-reference{
  display:flex !important;
  align-items:center !important;
  gap:22px !important;
}
.footer-project-logos-reference{
  display:flex !important;
  align-items:center !important;
  gap:9px !important;
  padding:0 !important;
  border:0 !important;
  flex:0 0 auto;
}
.footer-project-logos-reference .footer-tae-logo{
  width:54px !important;
  height:54px !important;
  border-radius:50% !important;
  object-fit:cover !important;
  display:block !important;
}
.footer-project-logos-reference .footer-fob-logo{
  width:105px !important;
  height:54px !important;
  object-fit:contain !important;
  display:block !important;
  background:transparent !important;
  filter:drop-shadow(0 5px 12px rgba(0,0,0,.24));
}
.footer-logo-x{
  color:rgba(255,255,255,.72) !important;
  font-size:15px !important;
  font-weight:800 !important;
}
.footer-project-copy strong{
  display:block !important;
  color:#fff !important;
  font-size:22px !important;
  line-height:1.05 !important;
  letter-spacing:.13em !important;
  font-weight:800 !important;
}
.footer-project-copy small{
  display:block !important;
  margin-top:9px !important;
  color:rgba(255,255,255,.54) !important;
  font-size:12px !important;
  line-height:1.4 !important;
}
@media(max-width:760px){
  .footer-brand-reference{
    align-items:flex-start !important;
    gap:15px !important;
  }
  .footer-project-logos-reference .footer-tae-logo{
    width:44px !important;
    height:44px !important;
  }
  .footer-project-logos-reference .footer-fob-logo{
    width:84px !important;
    height:44px !important;
  }
  .footer-project-copy strong{
    font-size:17px !important;
    letter-spacing:.09em !important;
  }
  .footer-project-copy small{
    font-size:11px !important;
    margin-top:6px !important;
  }
}
@media(max-width:520px){
  .footer-brand-reference{
    flex-direction:column !important;
  }
}

/* V11.5 — removed hero partner/event strip */
.poster-copy{
  padding-top:0 !important;
}

.poster-hero .hero-kicker{
  margin-top:0 !important;
}


/* =========================================================
   V11.6 — BUS UNDER HERO PHOTO COLLAGE
   ========================================================= */
.poster-visual{
  min-height:820px !important;
  padding-bottom:165px;
}

.hero-collage-bus{
  left:4% !important;
  right:2% !important;
  bottom:-18px !important;
  height:245px !important;
  z-index:8 !important;
  align-items:flex-end !important;
}

.hero-collage-bus .bus-mockup{
  max-width:650px !important;
  height:238px !important;
  transform:perspective(1000px) rotateY(-4deg) rotateX(1deg) scale(.82) !important;
  transform-origin:center bottom !important;
  margin:0 auto !important;
}

.hero-collage-bus .bus-shadow{
  bottom:12px !important;
  left:15% !important;
  width:70% !important;
  height:28px !important;
  opacity:.6 !important;
}

.hero-collage-bus .bus-window-row{
  top:22px !important;
  height:58px !important;
}

.hero-collage-bus .bus-wrap-panel{
  top:87px !important;
  bottom:35px !important;
}

.hero-collage-bus .bus-front-cap{
  height:184px !important;
  width:68px !important;
  top:13px !important;
}

.hero-collage-bus .bus-front-cap::before{
  top:16px !important;
  height:67px !important;
}

.hero-collage-bus .bus-lower-line{
  bottom:26px !important;
}

.hero-collage-bus .wheel{
  width:62px !important;
  height:62px !important;
  bottom:-20px !important;
  border-width:7px !important;
}

.hero-collage-bus .wheel i{
  inset:11px !important;
}

.hero-collage-bus .wheel-one{
  left:98px !important;
}

.hero-collage-bus .wheel-two{
  right:82px !important;
}

.hero-collage-bus .bus-wrap-copy{
  left:18px !important;
  top:17px !important;
}

.hero-collage-bus .bus-wrap-copy strong{
  font-size:27px !important;
}

@media(max-width:900px){
  .poster-visual{
    min-height:780px !important;
    padding-bottom:145px;
  }

  .hero-collage-bus{
    left:-7% !important;
    right:-7% !important;
    bottom:-24px !important;
    height:220px !important;
  }

  .hero-collage-bus .bus-mockup{
    transform:perspective(900px) rotateY(-4deg) scale(.70) !important;
  }
}

@media(max-width:600px){
  .poster-visual{
    min-height:610px !important;
    padding-bottom:115px;
  }

  .hero-collage-bus{
    left:-24% !important;
    right:-24% !important;
    bottom:-35px !important;
    height:190px !important;
  }

  .hero-collage-bus .bus-mockup{
    transform:perspective(800px) rotateY(-3deg) scale(.55) !important;
  }
}


/* =========================================================
   V11.7 — SUBTLE SITE ANIMATIONS
   ========================================================= */

/* Hero entrance */
.poster-copy{
  animation: heroCopyIn .9s cubic-bezier(.22,.8,.32,1) both;
}

.poster-visual{
  animation: heroVisualIn 1.05s .12s cubic-bezier(.22,.8,.32,1) both;
}

.poster-hero .solid-line{
  animation: titleRise .8s .12s cubic-bezier(.22,.8,.32,1) both;
}

.poster-hero .outline-line{
  animation: titleRise .8s .22s cubic-bezier(.22,.8,.32,1) both;
}

.poster-hero .hero-subtitle{
  animation: softFadeUp .75s .34s ease-out both;
}

.poster-hero .hero-actions{
  animation: softFadeUp .75s .44s ease-out both;
}

.poster-proof{
  animation: softFadeUp .75s .54s ease-out both;
}

/* Gentle portrait movement */
.shard-left{
  animation: portraitFloatLeft 7s ease-in-out infinite;
}
.shard-main{
  animation: portraitFloatMain 8s ease-in-out infinite;
}
.shard-right{
  animation: portraitFloatRight 7.5s ease-in-out infinite;
}

/* Bus subtle motion */
.hero-collage-bus{
  animation: busHover 5.5s ease-in-out infinite;
}

/* Background details */
.poster-beam{
  animation: beamPulse 4.8s ease-in-out infinite;
}
.beam-b{
  animation-delay:1.3s;
}
.poster-orbit{
  animation: orbitBreath 7s ease-in-out infinite;
}

/* Interactive hover */
.btn,
.availability-book,
.nav-cta{
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease,
    color .22s ease;
}

.btn:hover,
.availability-book:hover,
.nav-cta:hover{
  transform:translateY(-2px);
}

.availability-card,
.partner-card,
.fare-price-card,
.trip-inclusion-board,
.booking-form,
.faq-item,
.balance-panel,
.balance-method-card{
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.availability-card:hover,
.partner-card:hover,
.fare-price-card:hover,
.faq-item:hover{
  transform:translateY(-4px);
}

/* Scroll reveal states */
.reveal-on-scroll{
  opacity:0;
  transform:translateY(28px);
  transition:
    opacity .72s cubic-bezier(.22,.8,.32,1),
    transform .72s cubic-bezier(.22,.8,.32,1);
  will-change:opacity,transform;
}

.reveal-on-scroll.reveal-visible{
  opacity:1;
  transform:translateY(0);
}

/* Slight stagger for groups */
.reveal-stagger > *{
  opacity:0;
  transform:translateY(20px);
  transition:
    opacity .62s cubic-bezier(.22,.8,.32,1),
    transform .62s cubic-bezier(.22,.8,.32,1);
}

.reveal-stagger.reveal-visible > *{
  opacity:1;
  transform:translateY(0);
}

.reveal-stagger.reveal-visible > *:nth-child(1){transition-delay:.04s}
.reveal-stagger.reveal-visible > *:nth-child(2){transition-delay:.10s}
.reveal-stagger.reveal-visible > *:nth-child(3){transition-delay:.16s}
.reveal-stagger.reveal-visible > *:nth-child(4){transition-delay:.22s}
.reveal-stagger.reveal-visible > *:nth-child(5){transition-delay:.28s}
.reveal-stagger.reveal-visible > *:nth-child(6){transition-delay:.34s}

/* Route bus animation keeps moving but adds subtle bob */
.moving-bus-icon{
  animation:
    routeBusMove 11s linear infinite,
    routeBusBob 1.8s ease-in-out infinite;
}

/* Keyframes */
@keyframes heroCopyIn{
  from{opacity:0;transform:translateX(-28px)}
  to{opacity:1;transform:translateX(0)}
}

@keyframes heroVisualIn{
  from{opacity:0;transform:translateX(32px) scale(.985)}
  to{opacity:1;transform:translateX(0) scale(1)}
}

@keyframes titleRise{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes softFadeUp{
  from{opacity:0;transform:translateY(15px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes portraitFloatLeft{
  0%,100%{transform:translateY(0) rotate(-2.2deg)}
  50%{transform:translateY(-8px) rotate(-1.4deg)}
}

@keyframes portraitFloatMain{
  0%,100%{transform:translateY(0) rotate(.2deg)}
  50%{transform:translateY(-10px) rotate(-.2deg)}
}

@keyframes portraitFloatRight{
  0%,100%{transform:translateY(0) rotate(2deg)}
  50%{transform:translateY(-7px) rotate(1.3deg)}
}

@keyframes busHover{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-5px)}
}

@keyframes beamPulse{
  0%,100%{opacity:.42;filter:brightness(.9)}
  50%{opacity:.82;filter:brightness(1.18)}
}

@keyframes orbitBreath{
  0%,100%{opacity:.45;transform:rotate(-18deg) scale(1)}
  50%{opacity:.72;transform:rotate(-18deg) scale(1.025)}
}

@keyframes routeBusBob{
  0%,100%{margin-top:0}
  50%{margin-top:-3px}
}

/* Existing route motion compatibility fallback */
@keyframes routeBusMove{
  0%{left:0}
  100%{left:calc(100% - 50px)}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.001ms !important;
  }

  .reveal-on-scroll,
  .reveal-stagger,
  .reveal-stagger > *{
    opacity:1 !important;
    transform:none !important;
  }
}


/* =========================================================
   V11.9 — Minor waiver notice only
   ========================================================= */
.minor-waiver-notice{
  grid-column:1 / -1;
  margin-top:10px;
  padding:15px 17px;
  border:1px solid rgba(141,53,255,.25);
  border-radius:14px;
  background:rgba(141,53,255,.055);
}

.minor-waiver-notice[hidden]{
  display:none !important;
}

.minor-waiver-notice strong{
  display:block;
  margin-bottom:5px;
  color:#55207c;
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.minor-waiver-notice p{
  margin:0;
  color:#716679;
  font-size:12px;
  line-height:1.55;
}


/* V11.10 — seat hold rule shown only inside Step 02 */
#seats .seat-hold-banner{
  margin:18px 0 26px !important;
}


/* V11.11 — Seat Hold Rule is a separate full-width block above seat controls */
#seats > .seat-hold-banner{
  width:100% !important;
  max-width:none !important;
  margin:18px 0 26px !important;
  box-sizing:border-box !important;
}
#seats > .seat-date-toolbar{
  clear:both;
}


/* V11.12 — payment account data from Google Sheets */
.payment-qr-wrap{
  margin-top:14px;
  padding:14px;
  border:1px solid rgba(141,53,255,.16);
  border-radius:14px;
  background:rgba(255,255,255,.58);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}
.payment-qr-wrap small{
  font-size:9px;
  letter-spacing:.13em;
  font-weight:800;
  color:#6e3c91;
}
.payment-qr-wrap img{
  width:min(190px,100%);
  aspect-ratio:1/1;
  object-fit:contain;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(70,35,95,.10);
}

/* V15 backend connection status */
.backend-status{
  width:max-content;
  max-width:100%;
  margin:0 0 16px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(112,72,140,.18);
  background:rgba(255,255,255,.62);
  color:#75647e;
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
}
.backend-status.online{border-color:rgba(78,143,92,.28);color:#3f7650;background:rgba(91,173,108,.08)}
.backend-status.offline{border-color:rgba(173,77,92,.28);color:#985362;background:rgba(173,77,92,.07)}


/* V23.7 CLEAN FLOW */
.compact-trip-grid{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;
  gap:22px!important;
}
.compact-trip-grid .field{grid-column:auto!important;width:100%!important}

.checkline{
  display:flex!important;align-items:flex-start;gap:11px;padding:13px 14px;
  border:1px solid #ded8e5;border-radius:15px;background:#fff;cursor:pointer
}
.checkline input,.mini-check input{width:18px;height:18px;accent-color:#663d98;flex:0 0 auto;margin-top:2px}
.checkline span{display:flex;flex-direction:column;gap:2px}
.checkline strong{font-size:.95rem;color:#2d2334}
.checkline small{font-size:.78rem;color:#82788a;font-weight:500}
.checkbox-field{align-self:end}

.priority-seating-card{
  margin:18px 0;padding:16px;border:1px solid rgba(102,61,152,.18);
  background:#f8f4fc;border-radius:18px
}
.priority-reasons{padding:14px 4px 2px;display:flex;gap:10px 16px;flex-wrap:wrap;align-items:center}
.priority-reasons[hidden]{display:none}
.priority-caption{width:100%;font-size:.78rem;font-weight:800;color:#776b80;text-transform:uppercase;letter-spacing:.06em}
.mini-check{display:inline-flex;align-items:center;gap:7px;font-size:.88rem;font-weight:700;color:#43374c}
.priority-reasons p{width:100%;margin:4px 0 0;color:#817689;font-size:.78rem}

.pre-seat-waiver-card{
  margin:24px 0 4px;padding:20px;border:1px solid #d8c9e8;border-radius:22px;
  background:linear-gradient(135deg,#fbf8ff,#f4eefb)
}
.pre-seat-waiver-head{margin-bottom:14px}
.pre-seat-waiver-head>span{display:block;margin-bottom:5px;color:#7a4eaa;font-size:.72rem;font-weight:900;letter-spacing:.12em}
.pre-seat-waiver-head>strong{display:block;color:#30243a;font-size:1.05rem}
.pre-seat-waiver-head p{margin:6px 0 0;color:#756b7c;font-size:.88rem;line-height:1.5}
.pre-seat-waiver-card .consent-box{margin:0;background:#fff}

.legend-seat.priority{background:#efc84f!important;border:2px solid #8b6507!important}
.seat.priority-seat{
  background:linear-gradient(180deg,#fff1a9,#eac245)!important;
  border:2px solid #987007!important;color:#533b00!important;
  box-shadow:0 4px 12px rgba(152,112,7,.16)!important
}
.seat.priority-seat::after{
  content:"PRIORITY";display:block;margin-top:3px;font-size:.43rem;line-height:1;
  font-weight:950;letter-spacing:.06em;color:#694c00!important
}
.seat.priority-seat.priority-locked{opacity:.76!important;cursor:not-allowed!important}
.seat.priority-seat.priority-locked::before{content:"★ ";font-size:.62rem}
.seat.priority-seat.selected{background:#683b99!important;border-color:#4f2879!important;color:#fff!important;opacity:1!important}
.seat.priority-seat.selected::after{color:#ffe593!important}

@media(max-width:760px){
  .compact-trip-grid{grid-template-columns:1fr!important}
  .pre-seat-waiver-card{padding:16px}
}


/* TRAVEL WITH V — bus animation sits ABOVE the trip info cards */
.hero-trip-strip,
.trip-strip,
.route-strip,
.bus-route-strip,
.bus-animation-wrap,
.hero-bus-route,
.bus-road-wrap{
  position:relative!important;
  z-index:4!important;
  order:-1!important;
  margin-bottom:18px!important;
}

.hero-stats,
.hero-cards,
.trip-cards,
.quick-cards,
.hero-info-grid,
.booking-highlights{
  position:relative!important;
  z-index:3!important;
}

/* If the bus itself was positioned underneath the cards, lift it into the route lane. */
.moving-bus,
.bus-animation,
.route-bus,
.hero-bus,
.bus-icon-moving{
  z-index:6!important;
}

/* Keep a dedicated clear lane above cards so the bus never passes behind them. */
.hero-trip-strip,
.trip-strip,
.route-strip,
.bus-route-strip,
.bus-animation-wrap,
.hero-bus-route,
.bus-road-wrap{
  min-height:64px!important;
  overflow:visible!important;
}


/* V25.1 — TRAVEL WITH V hero title */
.travel-v-title .solid-line,
.travel-v-title .outline-line{
  display:block;
}
.travel-v-title .outline-line{
  white-space:nowrap;
}
@media (min-width:900px){
  .travel-v-title .solid-line{font-size:.92em}
  .travel-v-title .outline-line{font-size:.92em}
}


/* V25.3 — hero brand on one line */
.travel-v-single-line{
  display:block!important;
  white-space:nowrap!important;
  font-size:.82em!important;
  letter-spacing:-.055em!important;
}
@media(max-width:760px){
  .travel-v-single-line{
    white-space:normal!important;
    font-size:.88em!important;
    line-height:.9!important;
  }
}


/* V25.4 — dedicated moving-bus lane ABOVE the route cards */
.moving-route{
  position:relative!important;
  padding-top:92px!important; /* creates a real lane above the cards */
}

/* The rail now lives only in the clear space above the cards. */
.moving-route > .route-rail{
  display:block!important;
  position:absolute!important;
  left:4%!important;
  right:4%!important;
  top:24px!important;
  height:24px!important;
  z-index:20!important;
  pointer-events:none!important;
}

/* Keep the moving bus above everything, never behind a card. */
.moving-route > .route-rail .moving-bus-icon{
  top:0!important;
  z-index:25!important;
  transform:translateZ(0);
}

/* Glowing route line is also above the cards. */
.moving-route > .route-rail .route-rail-base,
.moving-route > .route-rail .route-rail-glow{
  z-index:19!important;
}

/* Cards start below the bus lane. */
.moving-route > .moving-route-stops{
  position:relative!important;
  z-index:3!important;
}

/* Prevent card shadows/backgrounds from visually covering the route lane. */
.moving-route > .moving-route-stops .moving-stop{
  z-index:3!important;
}

/* Tablet: keep a smaller but still separate bus lane. */
@media (max-width:980px) and (min-width:721px){
  .moving-route{
    padding-top:78px!important;
  }
  .moving-route > .route-rail{
    top:20px!important;
  }
}

/* Mobile cards stack, so hide the horizontal animated rail instead of overlapping cards. */
@media (max-width:720px){
  .moving-route{
    padding-top:0!important;
  }
  .moving-route > .route-rail{
    display:none!important;
  }
}

.qr-open-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  padding:11px 16px;
  border-radius:999px;
  background:#6c2aa2;
  color:#fff!important;
  font-weight:800;
  text-decoration:none!important;
}
.qr-help{
  margin-top:8px;
  color:#8c8195;
  font-size:.72rem;
  line-height:1.4;
}


/* V26.5 — Balance lookup feedback */
.lookup-message{
  display:none;
  margin-top:14px;
  padding:12px 15px;
  border-radius:14px;
  font-size:.88rem;
  font-weight:700;
  line-height:1.45;
  background:rgba(126,66,184,.12);
  border:1px solid rgba(177,114,239,.32);
  color:#d7b7f4;
}
.lookup-message.show{display:block}
.lookup-message.error{
  background:rgba(201,62,92,.12);
  border-color:rgba(255,121,147,.36);
  color:#ffb6c5;
}

/* V28 — inline payment QR */
.payment-qr-wrap{
  margin-top:16px;
  padding:14px;
  border:1px solid rgba(118,62,168,.18);
  border-radius:16px;
  background:#fff;
  text-align:center;
}
.payment-qr-wrap small{
  display:block;
  margin-bottom:10px;
  color:#6e3e98;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
}
.payment-qr-image{
  display:block;
  width:min(280px,100%);
  height:auto;
  margin:0 auto;
  border-radius:12px;
  background:#fff;
}


/* V28.2 — Final booking review before submission */
.review-modal{
  width:min(920px,94vw);
  max-height:90vh;
  padding:0;
  border:1px solid #5d337f;
  border-radius:24px;
  background:#130c1c;
  color:#fff;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}
.review-modal::backdrop{
  background:rgba(4,2,8,.78);
  backdrop-filter:blur(5px);
}
.review-modal-card{padding:26px}
.review-modal-head>span{
  color:#c76cff;
  font-size:.74rem;
  letter-spacing:.14em;
  font-weight:900;
}
.review-modal-head h2{
  margin:7px 0 5px;
  font-size:1.7rem;
}
.review-modal-head p{
  margin:0;
  color:#b7aabd;
  line-height:1.55;
}
.review-summary{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.review-summary-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.review-section{
  padding:14px 16px;
  border:1px solid #3e2a4d;
  border-radius:16px;
  background:#1b1225;
  color:#f2eaf7;
  line-height:1.55;
}
.review-section-title{
  margin-bottom:6px;
  color:#b96af0;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.review-line+ .review-line{margin-top:8px}
.review-confirm-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:18px;
  padding:13px 15px;
  border:1px solid #523669;
  border-radius:15px;
  background:#21142d;
  color:#eee2f5;
  font-size:.88rem;
  font-weight:700;
  line-height:1.45;
}
.review-confirm-row input{
  width:18px;height:18px;margin-top:2px;
  accent-color:#a43cff;
}
.review-modal-actions{
  display:grid;
  grid-template-columns:minmax(160px,.38fr) minmax(0,1fr);
  gap:12px;
  margin-top:16px;
}
.review-modal-actions .secondary-btn{
  border:1px solid #69468a;
  color:#e8d8f3;
  background:transparent;
  border-radius:999px;
  padding:13px 16px;
  font-weight:800;
  cursor:pointer;
}
.review-modal-actions .primary-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
}
@media(max-width:720px){
  .review-summary-grid{grid-template-columns:1fr}
  .review-modal-actions{grid-template-columns:1fr}
}


/* V29.1 — clear submit state */
#submitBtn:disabled{
  opacity:.72;
  cursor:wait;
  pointer-events:none;
}


/* V29.3 — clean single-review flow */
.field-help{display:block;margin-top:7px;color:#756b7c;font-size:.76rem;line-height:1.45;font-weight:500}
.review-modal{width:min(980px,96vw);max-height:94vh;padding:0;border:0;border-radius:30px;background:#fff;color:#24182c;box-shadow:0 30px 90px rgba(39,18,53,.28)}
.review-modal::backdrop{background:rgba(18,10,24,.66);backdrop-filter:blur(5px)}
.review-modal-card{padding:42px 56px 34px;overflow:auto;max-height:94vh;text-align:center}
.review-success-icon{width:92px;height:92px;border-radius:50%;display:grid;place-items:center;margin:0 auto 28px;background:#f0e2f8;color:#5b2382;font-size:50px;font-weight:500}
.review-kicker{margin:0;color:#6b2b9b;letter-spacing:.17em;font-size:.88rem;font-weight:900}
.review-modal-head{display:none}
.review-modal-card>h2{margin:22px 0 12px;font-family:Georgia,'Times New Roman',serif;font-size:clamp(2.5rem,6vw,4.7rem);line-height:.98;color:#321044;font-weight:700}
.review-intro{max-width:720px;margin:0 auto 30px;color:#62586a;font-size:1.03rem;line-height:1.65}
.review-summary-card{overflow:hidden;border:1px solid #e0d3e7;border-radius:24px;background:#fff;text-align:left}
.review-summary-head{display:flex;justify-content:space-between;gap:18px;align-items:center;padding:24px 30px;background:#f2e5f8}
.review-summary-head small{display:block;color:#605467;font-size:.73rem;letter-spacing:.12em;font-weight:900}
.review-summary-head h3{margin:6px 0 0;color:#3d1153;font-size:1.45rem}
.review-status-pill{white-space:nowrap;padding:10px 18px;border-radius:999px;background:#fff;color:#6b2598;font-size:.72rem;font-weight:900;letter-spacing:.06em}
.review-summary-body{padding:18px 32px 10px}
.review-row{display:grid;grid-template-columns:minmax(160px,.7fr) minmax(0,1.3fr);gap:20px;align-items:start;padding:15px 0;border-bottom:1px solid #e9e0ed}
.review-row:last-child{border-bottom:0}
.review-row>span{color:#665b6d;font-size:.92rem}
.review-row>strong{text-align:right;color:#211927;font-size:.96rem;line-height:1.5;word-break:break-word}
.review-row-stack>strong div+div{margin-top:6px}
.review-confirm-row{display:flex;gap:11px;align-items:flex-start;margin:22px 0 0;padding:15px 18px;border:1px solid #e1d4e7;border-radius:16px;background:#faf7fc;text-align:left;color:#4d4054;font-weight:700;line-height:1.5}
.review-confirm-row input{width:18px;height:18px;margin-top:2px;accent-color:#702b9d}
.review-modal-actions{display:grid;grid-template-columns:.42fr 1fr;gap:12px;margin-top:16px}
.review-modal-actions .secondary-btn,.review-modal-actions .primary-btn{min-height:54px;border-radius:999px;font-weight:900}
.review-modal-actions .secondary-btn{border:1px solid #d5c3df;background:#fff;color:#5d376f}
.review-modal-actions .primary-btn{border:0;background:#5f2784;color:#fff}
.review-modal-actions .primary-btn:disabled{opacity:.42}
.booking-notice{position:fixed;left:50%;bottom:26px;transform:translateX(-50%);z-index:99999;width:min(560px,calc(100vw - 32px));padding:15px 18px;border-radius:16px;background:#2b1838;color:#fff;box-shadow:0 16px 44px rgba(0,0,0,.25);font-weight:750;line-height:1.45;text-align:center}
.booking-notice[data-type="success"]{background:#2f633c}
@media(max-width:720px){.review-modal-card{padding:28px 18px 22px}.review-success-icon{width:76px;height:76px;font-size:42px}.review-summary-head{align-items:flex-start;padding:20px}.review-summary-head{flex-direction:column}.review-summary-body{padding:10px 20px}.review-row{grid-template-columns:1fr;gap:6px}.review-row>strong{text-align:left}.review-modal-actions{grid-template-columns:1fr}.review-modal-card>h2{font-size:2.6rem}}

.mobile-section-toggle,.mobile-payment-summary{display:none}
@media(max-width:760px){
  .hero,.hero-section,.hero-inner{min-height:auto!important}
  .hero-content,.hero-copy{padding-top:24px!important;padding-bottom:18px!important}
  .hero-kicker{font-size:.7rem!important;letter-spacing:.15em!important;line-height:1.35!important;margin-bottom:10px!important}
  .hero h1,.hero-title{font-size:clamp(2.8rem,14vw,4.2rem)!important;line-height:.88!important;letter-spacing:-.05em!important;margin:0 0 12px!important;max-width:100%!important}
  .hero h1 br,.hero-title br{display:none!important}
  .hero-description,.hero-copy>p,.hero-subtitle{font-size:.9rem!important;line-height:1.5!important;margin-bottom:14px!important}
  .hero-media,.hero-photo,.hero-image-wrap{height:230px!important;min-height:230px!important;border-radius:20px!important;overflow:hidden!important}
  .hero-media img,.hero-photo img,.hero-image-wrap img{width:100%!important;height:100%!important;object-fit:cover!important}
  .mobile-inline-actions,.hero-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important;width:100%!important}
  .mobile-inline-actions a,.mobile-inline-actions button,.hero-actions a,.hero-actions button{width:100%!important;min-width:0!important;padding:12px 8px!important;font-size:.76rem!important;white-space:nowrap!important}
  .hero-stats,.hero-info-grid,.hero-route-info,.hero-meta-grid,.hero-details{display:none!important}

  .date-options,.date-grid,.concert-date-options{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:7px!important}
  .date-card,.date-option,label.date-card,.concert-date-card{min-height:132px!important;padding:12px 8px!important;border-radius:18px!important}
  .date-card .date-number,.date-option .date-number{font-size:2.5rem!important;line-height:.9!important}
  .date-card .slots,.date-card .slots-remaining,.date-option .slots-remaining{font-size:.7rem!important;margin-top:9px!important}

  .mobile-section-toggle{display:flex!important;width:100%;justify-content:space-between;align-items:center;padding:13px 15px;margin:0 0 10px;border:1px solid #ded0ea;border-radius:16px;background:#fff;color:#3d164f;font:inherit;font-weight:800}
  .mobile-collapsible-section:not(.mobile-open)>.mobile-collapsible-content{display:none!important}

  .form-section,.booking-section,.form-step{padding-left:14px!important;padding-right:14px!important}
  .section-head h2,.section-head h3{font-size:1.5rem!important;line-height:1.05!important}
  .field input,.field select,.field textarea{min-height:48px!important;padding:12px 14px!important;border-radius:15px!important}

  .payment-option-header,.payment-heading-layout,.payment-intro{display:block!important}
  .payment-option-header h2,.payment-heading-layout h2,.payment-intro h2{font-size:2.1rem!important;line-height:1!important;margin-bottom:8px!important}
  .payment-option-header p,.payment-heading-layout p,.payment-intro p{text-align:left!important;font-size:.88rem!important;line-height:1.45!important}

  .mobile-payment-summary{display:grid;grid-template-columns:auto auto 1fr;align-items:center;gap:8px;padding:11px 13px;margin:12px 0;border:1px solid #dfd1e9;border-radius:15px;background:#f8f1fb}
  .mobile-payment-summary span{font-size:.72rem;font-weight:800;text-transform:uppercase}
  .mobile-payment-summary strong{font-size:1.05rem;color:#5f1988}
  .mobile-payment-summary small{text-align:right;font-size:.7rem;color:#7c6d83}
}
@media(max-width:390px){
  .hero h1,.hero-title{font-size:2.7rem!important}
}


/* V29.6.1 — restore hero, center only the photo trio */
@media(max-width:760px){
  .mobile-centered-hero-photos{
    width:min(94%, 620px) !important;
    margin:18px auto 0 !important;
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:8px !important;
    align-items:center !important;
    justify-items:center !important;
  }

  .mobile-centered-hero-photos > *{
    width:100% !important;
    min-width:0 !important;
    margin:0 !important;
  }

  .mobile-centered-hero-photos img{
    width:100% !important;
    height:clamp(220px,58vw,340px) !important;
    object-fit:cover !important;
    object-position:center top !important;
    border-radius:14px !important;
    display:block !important;
  }

  .mobile-centered-hero-photos > *:nth-child(2){
    transform:translateY(-8px) !important;
  }
}


/* =========================================================
   V29.7 — mobile hero order
   Explanation → centered photos/bus → buttons
   ========================================================= */

.hero-actions-mobile-only{
  display:none;
}

@media(max-width:760px){
  .poster-hero{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    padding-bottom:26px !important;
  }

  .poster-copy{
    width:100% !important;
    max-width:none !important;
    padding:24px 18px 0 !important;
    text-align:left !important;
  }

  .poster-copy .hero-kicker{
    margin:0 0 12px !important;
  }

  .poster-copy h1{
    margin-bottom:14px !important;
  }

  .poster-copy .hero-subtitle{
    margin:0 !important;
    padding:0 !important;
    font-size:.94rem !important;
    line-height:1.55 !important;
  }

  /* Hide desktop CTA placement on mobile */
  .poster-copy > .hero-actions{
    display:none !important;
  }

  /* Photos immediately after explanation */
  .poster-visual{
    order:2 !important;
    position:relative !important;
    width:min(94%, 620px) !important;
    min-height:0 !important;
    height:auto !important;
    margin:22px auto 0 !important;
    padding:0 !important;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    transform:none !important;
    overflow:visible !important;
  }

  .poster-visual .giant-v{
    display:none !important;
  }

  .poster-visual .portrait-shard{
    position:absolute !important;
    top:0 !important;
    width:31.5% !important;
    height:clamp(260px, 64vw, 390px) !important;
    margin:0 !important;
    transform:none !important;
    overflow:hidden !important;
    border-radius:12px !important;
  }

  .poster-visual .portrait-shard img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center top !important;
    display:block !important;
  }

  .poster-visual .shard-left{
    left:0 !important;
    top:18px !important;
  }

  .poster-visual .shard-main{
    left:34.25% !important;
    top:0 !important;
    width:31.5% !important;
  }

  .poster-visual .shard-right{
    left:68.5% !important;
    right:auto !important;
    top:18px !important;
  }

  /* Reserve vertical room for portraits and center the bus below them */
  .poster-visual{
    padding-top:clamp(280px, 68vw, 410px) !important;
  }

  .poster-visual .mini-bus-stage{
    position:relative !important;
    width:90% !important;
    max-width:520px !important;
    margin:-4px auto 0 !important;
    left:auto !important;
    right:auto !important;
    bottom:auto !important;
    top:auto !important;
    transform:none !important;
  }

  .poster-visual .bus-mockup{
    margin:0 auto !important;
  }

  /* CTAs after image block */
  .hero-actions-mobile-only{
    order:3 !important;
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
    width:calc(100% - 36px) !important;
    margin:20px auto 0 !important;
    align-items:center !important;
  }

  .hero-actions-mobile-only .btn{
    width:100% !important;
    min-width:0 !important;
    padding:13px 8px !important;
    font-size:.78rem !important;
    white-space:nowrap !important;
    text-align:center !important;
  }

  .hero-actions-mobile-only .hero-pay-link{
    grid-column:1 / -1 !important;
    text-align:center !important;
    margin-top:4px !important;
    font-size:.82rem !important;
  }
}

@media(max-width:390px){
  .poster-copy{
    padding-left:14px !important;
    padding-right:14px !important;
  }

  .poster-visual{
    width:96% !important;
    margin-top:18px !important;
  }

  .hero-actions-mobile-only{
    width:calc(100% - 28px) !important;
    gap:8px !important;
  }

  .hero-actions-mobile-only .btn{
    font-size:.72rem !important;
    padding-left:6px !important;
    padding-right:6px !important;
  }
}


/* =========================================================
   V29.7.1 — MOBILE BUS PROPORTION FIX
   Keep the desktop bus geometry intact and scale the whole unit.
   ========================================================= */
@media(max-width:760px){

  .poster-visual .mini-bus-stage{
    position:relative !important;
    width:100% !important;
    max-width:none !important;
    height:clamp(150px, 34vw, 220px) !important;
    margin:-2px auto 0 !important;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    bottom:auto !important;
    transform:none !important;
    overflow:visible !important;
    display:flex !important;
    align-items:flex-start !important;
    justify-content:center !important;
  }

  .poster-visual .mini-bus-stage .bus-mockup{
    position:relative !important;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    bottom:auto !important;

    /* Restore desktop geometry instead of squeezing it */
    width:760px !important;
    min-width:760px !important;
    max-width:none !important;
    height:250px !important;
    margin:0 !important;

    transform-origin:top center !important;
    transform:scale(.48) !important;
  }

  /* Undo any mobile rules that distorted bus internals */
  .poster-visual .bus-window-row,
  .poster-visual .bus-wrap-panel,
  .poster-visual .bus-front-cap,
  .poster-visual .bus-roofline,
  .poster-visual .bus-lower-line{
    transform:none !important;
  }
}

@media(max-width:520px){
  .poster-visual .mini-bus-stage{
    height:140px !important;
  }

  .poster-visual .mini-bus-stage .bus-mockup{
    transform:scale(.40) !important;
  }
}

@media(max-width:390px){
  .poster-visual .mini-bus-stage{
    height:128px !important;
  }

  .poster-visual .mini-bus-stage .bus-mockup{
    transform:scale(.35) !important;
  }
}


/* =========================================================
   V29.7.2 — MOBILE BUS TRUE CENTERING FIX
   ========================================================= */
@media(max-width:760px){

  .poster-visual .mini-bus-stage{
    position:relative !important;
    width:100% !important;
    height:clamp(150px,34vw,220px) !important;
    margin:0 auto !important;
    overflow:visible !important;
    display:block !important;
  }

  .poster-visual .mini-bus-stage .bus-mockup{
    position:absolute !important;
    top:0 !important;

    /* Put the unscaled desktop bus exactly in the middle,
       then scale from its own center. */
    left:50% !important;
    right:auto !important;

    width:680px !important;
    min-width:680px !important;
    max-width:680px !important;
    height:270px !important;

    margin:0 !important;
    transform-origin:top center !important;
    transform:
      translateX(-50%)
      perspective(1100px)
      rotateY(-5deg)
      rotateX(1deg)
      scale(.48) !important;
  }

  .poster-visual .mini-bus-stage .bus-shadow{
    left:50% !important;
    right:auto !important;
    width:520px !important;
    transform:translateX(-50%) scale(.48) !important;
    transform-origin:top center !important;
  }
}

@media(max-width:520px){
  .poster-visual .mini-bus-stage{
    height:135px !important;
  }

  .poster-visual .mini-bus-stage .bus-mockup{
    transform:
      translateX(-50%)
      perspective(1100px)
      rotateY(-5deg)
      rotateX(1deg)
      scale(.40) !important;
  }

  .poster-visual .mini-bus-stage .bus-shadow{
    transform:translateX(-50%) scale(.40) !important;
  }
}

@media(max-width:390px){
  .poster-visual .mini-bus-stage{
    height:120px !important;
  }

  .poster-visual .mini-bus-stage .bus-mockup{
    transform:
      translateX(-50%)
      perspective(1100px)
      rotateY(-5deg)
      rotateX(1deg)
      scale(.35) !important;
  }

  .poster-visual .mini-bus-stage .bus-shadow{
    transform:translateX(-50%) scale(.35) !important;
  }
}


/* =========================================================
   V29.8 — MOBILE SLOTS + PICKUP SCHEDULE COMPACT
   ========================================================= */
@media(max-width:760px){

  /* Remaining slots: 3 compact cards in one horizontal slider */
  .availability-grid,
  .availability-cards,
  .date-options,
  .date-grid,
  .concert-date-options{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:10px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scroll-snap-type:x mandatory !important;
    -webkit-overflow-scrolling:touch !important;
    padding:2px 14px 12px !important;
    margin-left:-14px !important;
    margin-right:-14px !important;
    scrollbar-width:none !important;
  }

  .availability-grid::-webkit-scrollbar,
  .availability-cards::-webkit-scrollbar,
  .date-options::-webkit-scrollbar,
  .date-grid::-webkit-scrollbar,
  .concert-date-options::-webkit-scrollbar{
    display:none !important;
  }

  .availability-card,
  .date-card,
  .date-option,
  label.date-card,
  .concert-date-card{
    flex:0 0 72vw !important;
    max-width:280px !important;
    min-width:230px !important;
    scroll-snap-align:start !important;
    min-height:260px !important;
    height:auto !important;
    padding:22px 20px !important;
    border-radius:24px !important;
  }

  .availability-card .date-number,
  .date-card .date-number,
  .date-option .date-number{
    font-size:4rem !important;
    line-height:.9 !important;
  }

  .availability-card .slots,
  .availability-card .slots-remaining,
  .date-card .slots,
  .date-card .slots-remaining,
  .date-option .slots-remaining{
    font-size:.82rem !important;
  }

  /* Pickup schedule: collapsed by default */
  .mobile-pickup-toggle{
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    width:calc(100% - 28px);
    margin:0 14px 14px;
    padding:14px 16px;
    border:1px solid rgba(185,117,235,.35);
    border-radius:16px;
    background:#1d1027;
    color:#fff;
    font:inherit;
    font-weight:800;
  }

  .mobile-pickup-toggle-action{
    color:#ca83ff;
    font-size:.78rem;
    font-weight:800;
  }

  .mobile-pickup-section:not(.mobile-pickup-open) > *:not(.mobile-pickup-toggle){
    display:none !important;
  }

  .mobile-pickup-section.mobile-pickup-open{
    padding-bottom:18px !important;
  }

  /* Once opened, make route cards tighter */
  .mobile-pickup-section.mobile-pickup-open .route-grid,
  .mobile-pickup-section.mobile-pickup-open .pickup-grid,
  .mobile-pickup-section.mobile-pickup-open .schedule-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
  }

  .mobile-pickup-section.mobile-pickup-open .route-card,
  .mobile-pickup-section.mobile-pickup-open .pickup-card,
  .mobile-pickup-section.mobile-pickup-open .schedule-card{
    min-height:0 !important;
    padding:18px !important;
    border-radius:20px !important;
  }

  /* Hide old generic reservation schedule toggle if any survived */
  .mobile-section-toggle{
    display:none !important;
  }
}

/* V29.8.1 — desktop pickup untouched, mobile-only collapse */
.mobile-pickup-toggle{display:none !important;}

@media(min-width:761px){
  .mobile-pickup-section{display:block !important;}
  .mobile-pickup-section > *{display:revert !important;}
  .mobile-pickup-section .route-grid,
  .mobile-pickup-section .pickup-grid,
  .mobile-pickup-section .schedule-grid{display:grid !important;}
}

@media(max-width:760px){
  .mobile-pickup-toggle{display:flex !important;}
  .mobile-pickup-section:not(.mobile-pickup-open) > *:not(.mobile-pickup-toggle){
    display:none !important;
  }
}


/* =========================================================
   V29.9 — PICKUP SCHEDULE REBUILD
   Desktop and mobile are intentionally separated.
   ========================================================= */

#route.route-section{
  position:relative;
  background:#100718;
  color:#fff;
  overflow:hidden;
}

#route .route-section-inner{
  width:min(1440px,100%);
  margin:0 auto;
  padding:92px clamp(24px,5vw,84px) 88px;
}

#route .route-heading{
  max-width:900px;
}

#route .route-heading .kicker{
  margin:0 0 18px;
  color:#b96df1;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.20em;
}

#route .route-title{
  margin:0;
  font-family:"Manrope",sans-serif;
  font-size:clamp(4rem,8vw,8rem);
  line-height:.82;
  letter-spacing:-.07em;
}

#route .route-title span{
  display:block;
}

#route .route-title span:first-child{
  color:#fff;
}

#route .route-title span:last-child{
  color:transparent;
  -webkit-text-stroke:1.5px #a766d4;
}

#route .route-intro{
  margin:22px 0 0;
  max-width:720px;
  color:#9f94aa;
  font-size:1rem;
  line-height:1.6;
}

#route .route-mobile-toggle{
  display:none;
}

#route .route-content{
  margin-top:70px;
}

#route .route-line{
  position:relative;
  height:62px;
  margin:0 8% 18px;
}

#route .route-line-track{
  position:absolute;
  left:0;
  right:0;
  top:30px;
  height:2px;
  background:linear-gradient(90deg,rgba(171,90,230,.18),#8b3bd1,rgba(171,90,230,.18));
}

#route .route-bus-icon{
  position:absolute;
  left:42%;
  top:10px;
  width:48px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:#8d43ce;
  color:#fff;
  font-size:.62rem;
  font-weight:900;
  box-shadow:0 0 22px rgba(163,77,225,.55);
}

#route .route-stops{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}

#route .route-stop{
  position:relative;
  min-height:245px;
  padding:42px 28px 28px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  background:linear-gradient(145deg,#1a1022,#21122d);
}

#route .route-stop-dot{
  position:absolute;
  top:-10px;
  left:28px;
  width:20px;
  height:20px;
  border-radius:50%;
  border:5px solid #12091a;
  background:#ba63ef;
  box-shadow:0 0 22px rgba(185,86,238,.65);
}

#route .route-stop small{
  display:block;
  margin-bottom:30px;
  color:#bc69ec;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
}

#route .route-time{
  display:block;
  margin-bottom:12px;
  color:#c986f4;
  font-size:.93rem;
  letter-spacing:.14em;
}

#route .route-stop h3{
  margin:0;
  color:#fff;
  font-size:clamp(1.5rem,2.1vw,2.2rem);
  line-height:1.05;
}

#route .route-stop p{
  margin:10px 0 0;
  color:#8f8299;
}

#route .route-destination{
  background:linear-gradient(145deg,#7c35a8,#502070);
  border-color:rgba(210,153,246,.35);
}

#route .route-destination-label{
  display:block;
  margin-bottom:16px;
  color:#d5a2f5;
  font-size:.76rem;
  letter-spacing:.16em;
}

@media(max-width:760px){

  #route .route-section-inner{
    padding:24px 14px 26px;
  }

  #route .route-heading{
    display:none;
  }

  #route .route-mobile-toggle{
    display:flex;
    width:100%;
    align-items:center;
    justify-content:space-between;
    padding:16px 18px;
    border:1px solid #6f368f;
    border-radius:18px;
    background:#1c1026;
    color:#fff;
    font:inherit;
    font-weight:800;
  }

  #route .route-mobile-toggle-action{
    color:#ca7ef7;
    font-size:.8rem;
  }

  #route .route-content{
    display:none;
    margin-top:14px;
  }

  #route.route-mobile-open .route-content{
    display:block;
  }

  #route .route-line{
    display:none;
  }

  #route .route-stops{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }

  #route .route-stop{
    min-height:0;
    padding:18px 18px 17px;
    border-radius:18px;
  }

  #route .route-stop-dot{
    display:none;
  }

  #route .route-stop small{
    margin-bottom:14px;
    font-size:.68rem;
  }

  #route .route-time{
    margin-bottom:7px;
    font-size:.82rem;
  }

  #route .route-stop h3{
    font-size:1.35rem;
  }

  #route .route-stop p{
    margin-top:6px;
    font-size:.82rem;
  }

  #route .route-destination{
    margin-top:2px;
  }

  #route .route-destination-label{
    margin-bottom:8px;
    font-size:.68rem;
  }
}


/* V29.9.1 — Mobile pickup section title */
#route .route-mobile-heading{
  display:none;
}

@media(max-width:760px){
  #route .route-mobile-heading{
    display:block;
    margin:0 2px 16px;
  }

  #route .route-mobile-heading p{
    margin:0 0 8px;
    color:#bd6df0;
    font-size:.67rem;
    line-height:1.35;
    font-weight:900;
    letter-spacing:.15em;
  }

  #route .route-mobile-heading h2{
    margin:0;
    color:#fff;
    font-family:"Manrope",sans-serif;
    font-size:2.15rem;
    line-height:.92;
    letter-spacing:-.05em;
  }

  #route .route-mobile-heading h2 span{
    display:block;
    margin-top:3px;
    color:transparent;
    -webkit-text-stroke:1px #a962d4;
  }
}


/* =========================================================
   V29.9.2 — DESKTOP PICKUP LAYOUT FIX
   Mobile remains unchanged.
   ========================================================= */
@media(min-width:761px){

  #route .route-section-inner{
    max-width:1500px;
    padding-left:clamp(36px,5vw,76px);
    padding-right:clamp(36px,5vw,76px);
  }

  #route .route-content{
    max-width:1360px;
    margin:72px auto 0;
  }

  #route .route-line{
    width:82%;
    max-width:1080px;
    margin:0 auto 24px;
  }

  #route .route-stops{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:18px !important;
    width:100%;
    max-width:1320px;
    margin:0 auto;
    align-items:stretch;
  }

  #route .route-stop{
    min-width:0 !important;
    min-height:300px !important;
    padding:42px 26px 30px !important;
    border-radius:26px !important;
    overflow:hidden !important;
  }

  #route .route-stop small{
    margin-bottom:34px !important;
  }

  #route .route-time{
    font-size:1rem !important;
    line-height:1.3 !important;
    letter-spacing:.11em !important;
    white-space:normal !important;
  }

  #route .route-stop h3{
    font-size:clamp(1.55rem,2vw,2.25rem) !important;
    line-height:1.03 !important;
    overflow-wrap:normal !important;
    word-break:normal !important;
    hyphens:none !important;
  }

  #route .route-stop p{
    font-size:.95rem !important;
    line-height:1.45 !important;
    max-width:15ch;
  }

  /* Keep names on cleaner line breaks */
  #route .route-stop:nth-child(1) h3{
    white-space:nowrap;
  }

  #route .route-stop:nth-child(2) h3{
    font-size:clamp(1.45rem,1.8vw,2rem) !important;
  }

  #route .route-stop:nth-child(3) h3{
    font-size:clamp(1.45rem,1.8vw,2rem) !important;
  }

  #route .route-destination{
    padding-right:24px !important;
  }

  #route .route-destination h3{
    font-size:clamp(1.4rem,1.75vw,2rem) !important;
    line-height:1.02 !important;
  }

  #route .route-stop-dot{
    left:26px !important;
  }

  #route .route-bus-icon{
    left:50% !important;
    transform:translateX(-50%) !important;
  }
}

@media(min-width:1100px){
  #route .route-stops{
    grid-template-columns:repeat(4,1fr) !important;
  }

  #route .route-stop{
    min-height:315px !important;
  }
}


/* =========================================================
   V29.9.3 — TRUE DESKTOP PICKUP FIX
   Force a centered, readable 4-card row and neutralize old widths.
   ========================================================= */
@media(min-width:761px){

  #route.route-section{
    width:100% !important;
    overflow:visible !important;
  }

  #route .route-section-inner{
    width:100% !important;
    max-width:1600px !important;
    margin:0 auto !important;
    padding-left:48px !important;
    padding-right:48px !important;
  }

  #route .route-content{
    width:100% !important;
    max-width:1440px !important;
    margin:72px auto 0 !important;
    overflow:visible !important;
  }

  #route .route-line{
    width:min(100%,1180px) !important;
    max-width:none !important;
    margin:0 auto 28px !important;
  }

  #route .route-stops{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    justify-content:center !important;
    align-items:stretch !important;
    gap:22px !important;

    width:100% !important;
    max-width:none !important;
    margin:0 auto !important;
    padding:0 !important;
    overflow:visible !important;
  }

  #route .route-stop{
    flex:0 0 290px !important;
    width:290px !important;
    min-width:290px !important;
    max-width:290px !important;
    min-height:330px !important;
    height:auto !important;

    padding:44px 30px 32px !important;
    margin:0 !important;
    overflow:visible !important;
    box-sizing:border-box !important;
  }

  #route .route-stop:nth-child(1),
  #route .route-stop:nth-child(2),
  #route .route-stop:nth-child(3),
  #route .route-destination{
    flex-basis:290px !important;
    width:290px !important;
    min-width:290px !important;
    max-width:290px !important;
  }

  #route .route-stop small{
    display:block !important;
    margin:0 0 34px !important;
  }

  #route .route-time{
    display:block !important;
    white-space:nowrap !important;
    margin-bottom:14px !important;
    font-size:1.05rem !important;
  }

  #route .route-stop h3{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
    word-break:normal !important;
    overflow-wrap:normal !important;
    hyphens:none !important;

    font-size:2rem !important;
    line-height:1.04 !important;
    letter-spacing:-.035em !important;
  }

  #route .route-stop:nth-child(1) h3{
    white-space:nowrap !important;
  }

  #route .route-stop:nth-child(2) h3{
    font-size:1.85rem !important;
  }

  #route .route-stop:nth-child(3) h3{
    font-size:1.82rem !important;
  }

  #route .route-destination h3{
    font-size:1.8rem !important;
    line-height:1.03 !important;
  }

  #route .route-stop p{
    width:auto !important;
    max-width:100% !important;
    margin-top:12px !important;
    font-size:.95rem !important;
    line-height:1.45 !important;
  }

  #route .route-stop-dot{
    left:30px !important;
  }

  #route .route-bus-icon{
    left:50% !important;
    transform:translateX(-50%) !important;
  }
}

/* Slightly smaller desktop/laptop widths */
@media(min-width:761px) and (max-width:1250px){
  #route .route-section-inner{
    padding-left:24px !important;
    padding-right:24px !important;
  }

  #route .route-stops{
    gap:14px !important;
  }

  #route .route-stop,
  #route .route-stop:nth-child(1),
  #route .route-stop:nth-child(2),
  #route .route-stop:nth-child(3),
  #route .route-destination{
    flex-basis:235px !important;
    width:235px !important;
    min-width:235px !important;
    max-width:235px !important;
  }

  #route .route-stop h3{
    font-size:1.65rem !important;
  }

  #route .route-stop:nth-child(2) h3,
  #route .route-stop:nth-child(3) h3,
  #route .route-destination h3{
    font-size:1.5rem !important;
  }
}

/* =========================================================
   V29.10 — RESPONSIVE ALIGNMENT + STRUCTURE CLEANUP
   One spacing system for the pickup section, a centered mobile
   bus, and a readable tablet layout.
   ========================================================= */

#route.route-section{
  display:block !important;
  padding:0 !important;
}

#route .route-section-inner{
  margin-inline:auto !important;
}

@media(min-width:761px) and (max-width:1100px){
  #route .route-content{
    max-width:820px !important;
  }

  #route .route-line{
    width:76% !important;
  }

  #route .route-stops{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:18px !important;
    max-width:820px !important;
  }

  #route .route-stop,
  #route .route-stop:nth-child(1),
  #route .route-stop:nth-child(2),
  #route .route-stop:nth-child(3),
  #route .route-destination{
    width:auto !important;
    min-width:0 !important;
    max-width:none !important;
    min-height:270px !important;
    flex-basis:auto !important;
  }
}

@media(max-width:760px){
  .poster-visual .mini-bus-stage{
    grid-column:1 / -1 !important;
    justify-self:stretch !important;
    width:100% !important;
    max-width:100% !important;
  }

  #route .route-section-inner{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
  }
}

/* V29.10.2 — PHONE-ONLY FARE SUMMARY SIZE */
@media(max-width:520px){
  .booking-section .multi-fare-preview{
    width:calc(100% + 44px) !important;
    min-height:104px !important;
    margin:22px -22px 0 !important;
    padding:14px 12px !important;
    border-radius:22px !important;
    grid-template-columns:minmax(68px,1.05fr) 10px minmax(48px,.72fr) 10px minmax(38px,.62fr) 10px minmax(78px,1.1fr) !important;
    gap:4px !important;
    align-items:center !important;
  }

  .booking-section .multi-fare-preview > div{
    min-width:0 !important;
  }

  .booking-section .multi-fare-preview > span:nth-of-type(2){
    display:block !important;
  }

  .booking-section .multi-fare-preview > div:nth-of-type(3){
    grid-column:auto !important;
  }

  .booking-section .multi-fare-preview small{
    font-size:6px !important;
    line-height:1.2 !important;
    letter-spacing:.06em !important;
    white-space:nowrap !important;
  }

  .booking-section .multi-fare-preview strong{
    font-size:24px !important;
    line-height:1 !important;
  }

  .booking-section .multi-fare-preview > span{
    transform:none !important;
    text-align:center !important;
    font-size:14px !important;
  }

  .booking-section .multi-fare-preview .fare-total{
    grid-column:auto !important;
    min-height:68px !important;
    margin:0 !important;
    padding:8px 4px !important;
    border-radius:14px !important;
    display:grid !important;
    align-content:center !important;
  }
}

/* V29.10.5 — MOVING ROUTE BUS + CENTERED STOP DOTS */
@media(min-width:761px){
  #route .route-bus-icon{
    left:0 !important;
    margin-left:0;
    transform:translateX(-50%) !important;
    animation:routeVBusTravel 10s ease-in-out infinite alternate !important;
    will-change:margin-left,transform;
  }

  #route .route-stop-dot{
    left:50% !important;
    transform:translateX(-50%) !important;
  }
}

@keyframes routeVBusTravel{
  0%,6%{
    margin-left:0;
  }
  31%{
    margin-left:33.333%;
  }
  64%{
    margin-left:66.666%;
  }
  94%,100%{
    margin-left:100%;
  }
}

/* V29.10.7 — MINI BUS SHAPE FOR THE MOVING V MARKER */
@media(min-width:761px){
  #route .route-bus-icon{
    top:6px !important;
    width:64px !important;
    height:34px !important;
    padding-top:7px;
    overflow:visible;
    border:1px solid rgba(255,255,255,.42);
    border-radius:8px 14px 7px 7px !important;
    background:linear-gradient(135deg,#7427af 0%,#a94fea 62%,#6d269b 100%) !important;
    font-size:.68rem !important;
    letter-spacing:.08em;
    box-shadow:0 0 26px rgba(174,76,236,.72),0 8px 18px rgba(0,0,0,.32) !important;
  }

  #route .route-bus-icon::before{
    content:"";
    position:absolute;
    top:4px;
    left:7px;
    width:42px;
    height:7px;
    border-radius:3px 5px 2px 2px;
    background:repeating-linear-gradient(90deg,rgba(244,226,255,.94) 0 7px,rgba(82,26,116,.8) 7px 9px);
    box-shadow:9px 0 0 -7px rgba(255,255,255,.3);
  }

  #route .route-bus-icon::after{
    content:"";
    position:absolute;
    left:7px;
    right:7px;
    bottom:-6px;
    height:11px;
    background:
      radial-gradient(circle at 22% 50%,#0e0814 0 4px,#e8d8f4 4px 5px,transparent 5.5px),
      radial-gradient(circle at 78% 50%,#0e0814 0 4px,#e8d8f4 4px 5px,transparent 5.5px);
    pointer-events:none;
  }
}
