:root {
  --brand-indigo: #202080;
  --brand-purple: #402080;
  --brand-magenta: #E00060;
  --brand-magenta-dark: #b8004e;
  --ink: #12122A;
  --ink-soft: #4a4a63;
  --paper: #FFFFFF;
  --mist: #F4F4FA;
  --line: #E2E2EE;
  --gold: #C9A227;
  --brand-gradient: linear-gradient(135deg, #202080 0%, #402080 100%);
  --brand-gradient-btn: linear-gradient(135deg, #402080 0%, #E00060 100%);
  --shadow-sm: 0 1px 3px rgba(18,18,42,.08);
  --shadow-md: 0 6px 20px rgba(18,18,42,.10);
  --shadow-lg: 0 18px 48px rgba(18,18,42,.16);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1180px;
  --font: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-magenta); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--brand-indigo); line-height: 1.2; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--brand-magenta); outline-offset: 2px; }

/* Container */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--mist { background: var(--mist); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section__head p { color: var(--ink-soft); font-size: 1.08rem; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-size: 1.2rem; font-weight: 800; color: var(--brand-magenta); margin-bottom: .6rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: 1rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--brand-gradient-btn); background-size: 160% 160%; color: #fff; box-shadow: var(--shadow-md); transition: transform .15s ease, background-position .3s ease, box-shadow .15s ease; }
.btn--primary:hover { background-position: 100% 100%; color: #fff; box-shadow: var(--shadow-lg); }
.btn--indigo { background: var(--brand-indigo); color: #fff; }
.btn--indigo:hover { background: var(--brand-purple); color: #fff; }
.btn--ghost { background: transparent; color: var(--brand-indigo); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand-indigo); color: var(--brand-indigo); }
.btn--lg { padding: 0.8rem 1rem; font-size: 0.9rem; }
.btn--block { width: 100%; justify-content: center; }
.btn__stack { display: inline-flex; flex-direction: column; align-items: center; text-align: center; gap: .15rem; line-height: 1.1; }
.btn__sub { font-size: .72rem; font-weight: 600; letter-spacing: .01em; opacity: .85; }
.hero__cta-quote { background: #fff; color: var(--brand-indigo); box-shadow: var(--shadow-md); }
.hero__cta-quote:hover { background: var(--brand-indigo); color: #fff; box-shadow: var(--shadow-lg); }

/* Header (optional) */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line); }
.site-header__bar { display: flex; align-items: center; justify-content: space-between; gap: 1.10rem; padding: .6rem 0; }
.site-brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.site-brand img { height: 52px; width: auto; }
.site-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.site-brand__name { font-weight: 800; color: var(--brand-indigo); font-size: clamp(0.72rem, 0.4rem + 0.9vw, 1.05rem); white-space: nowrap; }
.site-brand__tag { font-size: .72rem; color: var(--ink-soft); letter-spacing: .02em; }
.main-nav ul { list-style: none; display: flex; gap: 1.10rem; margin: 0; padding: 0; align-items: center; }
.main-nav a { color: var(--ink); font-weight: 700; font-size: .96rem; }
.main-nav a:hover { color: var(--brand-magenta); text-decoration: none; }
/* Action CTAs live inside the mobile drawer (hidden on desktop where the
   header already shows .header-actions). */
.nav-cta { display: none; }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
  background: var(--brand-gradient-btn); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--brand-magenta);
}
.header-actions { display: flex; align-items: center; justify-content: center; gap: .75rem; text-align: center; flex-wrap: wrap; }
.header-actions .btn { text-align: center; }
.header-phone { font-weight: 800; color: var(--brand-indigo); white-space: nowrap; }
.header-phone:hover { color: var(--brand-magenta); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--brand-indigo); border-radius: 3px; margin: 5px 0; transition: .2s; }

/* Hero */
.hero { position: relative; color: #fff; background: var(--brand-gradient); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/hero-pattern.svg") center/cover no-repeat;
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(224,0,96,.35), transparent 55%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; padding: clamp(3.5rem, 8vw, 7rem) 0; max-width: 720px; margin: 0 auto; text-align: center; }
.hero h1 { color: #fff; }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,.92); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.75rem; justify-content: center; }
.hero__cta .btn { text-align: center; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2rem; font-size: .92rem; color: rgba(255,255,255,.9); justify-content: center; }
.hero__badges span { display: inline-flex; align-items: center; gap: .4rem; }

/* Cards / services grid */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 16/10; background: var(--mist) var(--brand-gradient); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.4rem; display: flex; flex-direction:column; gap: .5rem; flex: 1; }
.card__body h3 { margin: 0; }
.card__body p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.card__link { margin-top: auto; font-weight: 800; }

/* Trust row */
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; text-align: center; }
.trust__item .num { font-size: 2.1rem; font-weight: 800; color: var(--brand-indigo); display: block; }
.trust__item .lbl { color: var(--ink-soft); font-size: .95rem; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* Forms */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .92rem; color: var(--brand-indigo); }
.field input, .field select, .field textarea {
  font: inherit; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-indigo); outline: none; }
.field .hint { font-size: .82rem; color: var(--ink-soft); }
.field-error { color: var(--brand-magenta); font-size: .85rem; font-weight: 700; }
.honeypot { position: absolute !important; left: -9999px !important; }

/* Optional fare extras — checkbox options (Night Trip, Return Trip, etc.) */
.ltt-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; grid-auto-rows: 1fr; }
.ltt-check {
  display: flex; align-items: flex-start; gap: .55rem;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.ltt-check input[type="checkbox"] {
  flex: 0 0 auto; width: 1.15rem; height: 1.15rem;
  font-size: .95rem; /* keep em-based centring tied to the title size */
  margin-top: calc((1.4em - 1.15rem) / 2); /* centre against the title line */
  padding: 0; border: 0; border-radius: 0; background: none;
  accent-color: var(--brand-magenta); cursor: pointer;
}
.ltt-check__text { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.ltt-check__title { font-weight: 700; font-size: .95rem; line-height: 1.4; color: var(--brand-indigo); }
.ltt-check__desc { font-weight: 400; font-size: .82rem; line-height: 1.45; color: var(--ink-soft); }
.ltt-check:hover .ltt-check__title { color: var(--brand-magenta); }

/* Form card */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
.form-notice { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-weight: 700; }
.form-notice--ok { background: #e9f9ef; color: #12703a; border: 1.5px solid #4caf50; border-radius: var(--radius-sm); }
.form-notice--err { background: #fdeaf1; color: var(--brand-magenta-dark); }
.form-notice--warn { background: #fff6e6; color: #8a5a00; border: 1.5px solid #f0b429; }

/* Searchable select (Select2-style) */
.ltt-select-search { position: relative; }
/* The native <select> is hidden only once JS enhances it (.ltt-ss). */
.ltt-select-search.ltt-ss select { display: none; }
.ltt-ss__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  font: inherit; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); cursor: pointer; text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ltt-ss__trigger:hover { border-color: var(--brand-indigo); }
.ltt-select-search.is-open .ltt-ss__trigger {
  border-color: var(--brand-indigo); box-shadow: 0 0 0 3px rgba(32,32,128,.12);
}
.ltt-ss__value { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.88rem; }
.ltt-ss__value.is-empty { color: var(--ink-soft); }
.ltt-ss__caret {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--ink-soft);
  display: grid; place-items: center; transition: transform .2s ease;
}
.ltt-ss__caret svg { width: 100%; height: 100%; }
.ltt-select-search.is-open .ltt-ss__caret { transform: rotate(180deg); color: var(--brand-indigo); }
.ltt-ss__panel {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); overflow: hidden; display: none;
}
.ltt-select-search.is-open .ltt-ss__panel { display: block; animation: ltt-ss-in .16s ease; }
@keyframes ltt-ss-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.ltt-ss__search {
  width: 100%; border: 0; border-bottom: 1.5px solid var(--line); border-radius: 0;
  padding: .7rem .9rem; font: inherit; color: var(--ink); background: #fff;
}
.ltt-ss__search:focus { outline: none; border-bottom-color: var(--brand-indigo); }
.ltt-ss__options { list-style: none; margin: 0; padding: 0; max-height: 240px; overflow-y: auto; }
.ltt-ss__option {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .7rem .9rem; cursor: pointer; font-size: 0.88rem; line-height: 1.35; color: var(--ink);
}
.ltt-ss__option:hover,
.ltt-ss__option.is-active { background: var(--mist); color: var(--brand-indigo); }
.ltt-ss__option[aria-selected="true"] { font-weight: 800; }
.ltt-ss__option[aria-selected="true"]::after { content: "✓"; color: var(--brand-magenta); font-weight: 800; }
.ltt-ss__empty { padding: .8rem .9rem; color: var(--ink-soft); font-size: .9rem; }

/* Fare calculator result */
.fare-result { margin-top: 1.5rem; border: 2px dashed var(--line); border-radius: var(--radius); padding: 1.5rem; display: none; }
.fare-result.is-visible { display: block; border-color: var(--brand-magenta); background: var(--mist); }
.fare-result .amount { font-size: 2.4rem; font-weight: 800; color: var(--brand-indigo); }
.fare-result .meta { color: var(--ink-soft); }
.fare-result .disclaimer { font-size: .8rem; color: var(--ink-soft); margin-top: .5rem; }

/* Fare calculator page layout: form left, image right */
.fare-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.fare-layout__form { min-width: 0; }
.fare-layout__media { position: sticky; top: 5.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.fare-layout__media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Nominatim suggestions (Google Maps Place Autocomplete style) */
.nominatim-suggestions { position: absolute; z-index: 1000; background: #fff; border: 1px solid #d4d4d4; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,.3); max-height: 280px; overflow-y: auto; width: 100%; display: none; list-style: none; margin: 0; padding: 0; box-sizing: border-box; }
.nominatim-suggestions li { display: flex; align-items: center; gap: .65rem; padding: .55rem .85rem; cursor: pointer; font-size: .9rem; color: #202124; border-bottom: 1px solid #f1f1f1; line-height: 1.4; }
.nominatim-suggestions li:last-child { border-bottom: none; }
.nominatim-suggestions li:hover,
.nominatim-suggestions li.is-active { background: #f1f8ff; }
.nominatim-suggestions li:first-child { border-radius: 8px 8px 0 0; }
.nominatim-suggestions li:last-child { border-radius: 0 0 8px 8px; }
.nominatim-suggestions li::before { content: ''; display: block; width: 16px; height: 16px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234285f4'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1112 6.5a2.5 2.5 0 010 5z'/%3E%3C/svg%3E") no-repeat center center; background-size: contain; }
.nominatim-suggestions li.autocomplete-loading { cursor: default; color: #5f6368; justify-content: center; gap: .5rem; }
.nominatim-suggestions li.autocomplete-loading::before { display: none; }
.nominatim-suggestions li.autocomplete-loading::after { content: ''; display: inline-block; width: 18px; height: 18px; border: 2px solid #dadce0; border-top-color: #4285f4; border-radius: 50%; animation: ltt-spin .6s linear infinite; }
.nominatim-suggestions li.autocomplete-no-results { cursor: default; color: #5f6368; justify-content: center; font-style: italic; }
.nominatim-suggestions li.autocomplete-no-results::before,
.nominatim-suggestions li.autocomplete-no-results::after { display: none; }

/* Reviews */
.review-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:1.4rem; box-shadow: var(--shadow-sm); }
.review-card__head { display:flex; align-items:center; gap:.75rem; margin-bottom:.6rem; }
.review-card__avatar { width:42px; height:42px; border-radius:50%; background:var(--brand-gradient); color:#fff; display:grid; place-items:center; font-weight:800; }
.review-card__name { font-weight:800; color:var(--brand-indigo); }
.review-card__text { color:var(--ink-soft); font-size:.96rem; }

/* Floating action buttons */
.wa-float {
  position: fixed; right: 18px; bottom: 150px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color:#fff;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.wa-float:hover { text-decoration: none; transform: scale(1.05); }
.wa-float svg { width: 30px; height: 30px; fill:#fff; }
.share-float-wrapper {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.share-float-stack { position: relative; }
.share-float {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--brand-gradient-btn); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  border: none; cursor: pointer; padding: 0; outline: none;
  transition: transform .2s ease;
}
.share-float:hover { transform: scale(1.05); }
.share-float svg { width: 26px; height: 26px; fill: #fff; }
.to-top-float {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand-indigo); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  border: none; cursor: pointer; padding: 0; outline: none;
  transition: transform .2s ease, opacity .2s ease;
}
.to-top-float:hover { transform: scale(1.05); }
.to-top-float svg { width: 22px; height: 22px; fill: #fff; }
.share-popover {
  position: absolute; right: 0; bottom: 68px; width: 230px;
  max-width: calc(100vw - 36px);
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  padding: 12px; display: none; opacity: 0;
  transform: translateY(10px); transition: opacity .2s ease, transform .2s ease;
  z-index: 201;
}
.share-popover.is-open {
  display: block; opacity: 1; transform: translateY(0);
}
.share-popover__header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
  font-weight: 700; font-size: 0.9rem; color: var(--brand-indigo);
}
.share-popover__close {
  background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--ink-soft); padding: 0 4px; line-height: 1;
}
.share-popover__close:hover { color: var(--ink); }
.share-popover__options {
  display: flex; flex-direction: column; gap: 4px;
}
.share-option {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px;
  border-radius: var(--radius-sm); color: var(--ink); text-decoration: none;
  font-size: 0.88rem; font-weight: 600; border: none; background: transparent;
  width: 100%; text-align: left; cursor: pointer; transition: background .15s ease;
}
.share-option:hover {
  background: var(--mist); text-decoration: none; color: var(--brand-indigo);
}
.share-option svg { width: 18px; height: 18px; flex-shrink: 0; }
.share-option--wa svg { fill: #25D366; }
.share-option--fb svg { fill: #1877F2; }
.share-option--x svg { fill: #1DA1F2; }
.share-option--li svg { fill: #0A66C2; }
.share-option--email svg { fill: var(--brand-purple); }
.share-option--copy svg { fill: var(--ink-soft); }

/* Location overlay */
.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.5rem 0;
  /* height: 100%; */
  display: flex;
}
.textbox-overlay {
  flex: 0 0 33.333%;
  max-width: 20.333%;
  padding: 1.5rem 1.5rem 0;
  background: var(--paper);
  min-height: 80px;
  color: var(--ink);
}
@media (max-width: 760px) {
  .textbox-overlay {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Site footer */
.site-footer { background: var(--ink); color: #cfcfe0; padding: 3.5rem 0 1.5rem; }
.site-footer a { margin-top: -11px; color: #cfcfe0; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-social { display: none; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
/* Hide Privacy Policy link in footer */
.site-footer a[href*="privacy-policy"] {
  display: none;
}
.footer-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: .4rem; }
.footer-brand img { display: block; transition: opacity .2s ease; border-radius: 50%; width: 62px; height: 62px; object-fit: cover; }
.footer-brand:hover img { opacity: .8; }
@media (max-width: 1280px) {
  .footer-brand img { width: 45px; height: 45px; }
}
.footer-brand__text { display: flex; flex-direction: column; justify-content: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .86rem; color: #9a9ab5; }

/* Page hero (interior) */
.page-hero { position: relative; background: var(--brand-gradient); color:#fff; padding: clamp(2.5rem,6vw,1.5rem) 0; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/hero-pattern.svg") center/cover no-repeat; opacity: .7;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color:#fff; margin-bottom:.4rem; }
.page-hero p { color: rgba(255,255,255,.9); margin:0; }
.breadcrumbs { font-size:.85rem; color: rgba(255,255,255,.8); margin-bottom:1rem; }
.breadcrumbs a { color: rgba(255,255,255,.95); }

/* Prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }

/* About page intro: prose on the left, customizer image on the right. */
.about-intro { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
.about-intro .prose { max-width: none; }
.about-intro__media img { width: 100%; height: auto; border-radius: var(--radius); display: block; box-shadow: var(--shadow, 0 10px 30px rgba(18,18,42,.12)); }
@media (min-width: 768px) {
	.about-intro { grid-template-columns: 1.4fr 1fr; }
}

/* Blog */
.post-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card__body { padding:1.3rem; }
.post-card__meta { font-size:.82rem; color:var(--ink-soft); }

/* Blog filter toolbar */
.blog-toolbar { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1rem 1.5rem; margin-bottom:1.25rem; }
.blog-chips { display:flex; flex-wrap:wrap; gap:.5rem; }
.chip {
  display:inline-flex; alignims:center; padding:.45rem .95rem; border-radius:999px;
  border:1.5px solid var(--line); background:#fff; color:var(--brand-indigo);
  font-weight:700; font-size:.9rem; line-height:1; transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.chip:hover { text-decoration:none; border-color:var(--brand-indigo); }
.chip.is-active { background:var(--brand-gradient-btn); border-color:transparent; color:#fff; }
.blog-search { display:flex; flex-wrap:wrap; gap:.6rem; align-items:center; }
.blog-search input[type="search"], .blog-search select {
  font:inherit; padding:.6rem .8rem; border:1.5px solid var(--line); border-radius:var(--radius-sm);
  background:#fff; color:var(--ink);
}
.blog-search input[type="search"] { min-width:200px; }
.blog-search input:focus, .blog-search select:focus { border-color:var(--brand-indigo); outline:none; }
.blog-resultbar { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:1.5rem; }
.blog-count { margin:0; color:var(--ink-soft); font-weight:700; }
.blog-clear { font-weight:700; font-size:.9rem; }
.blog-empty { text-align:center; padding:3rem 1rem; border:2px dashed var(--line); border-radius:var(--radius); }
.blog-empty p { color:var(--ink-soft); }

/* Square post thumbnails on the blog listing. */
.blog-grid .card__media { aspect-ratio: 1 / 1; display:block; background: var(--mist) var(--brand-gradient); }
.blog-grid .card__media img { width:100%; height:100%; object-fit:cover; }

/* Pagination */
.pagination ul { list-style:none; display:flex; flex-wrap:wrap; justify-content:center; gap:.4rem; margin:2.5rem 0 0; padding:0; }
.pagination a, .pagination span {
  display:inline-flex; align-items:center; justify-content:center; min-width:42px; height:42px; padding:0 .8rem;
  border-radius:var(--radius-sm); border:1.5px solid var(--line); background:#fff; color:var(--brand-indigo); font-weight:800;
}
.pagination a:hover { text-decoration:none; border-color:var(--brand-indigo); }
.pagination .current { background:var(--brand-gradient-btn); border-color:transparent; color:#fff; }
.pagination .dots { border-color:transparent; }

/* Spinner */
@keyframes ltt-spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1200px) {
  /* Give the single-line site title room on small laptops/tablets: the phone
     number leaves the header (it stays in the footer and on the contact page). */
  .header-phone { display: none; }
}
@media (max-width: 1100px) {
  /* Collapse the full menu into the off-canvas drawer below 1100px so the
     single-line title + Book CTA never compete with 7 menu items on tablets
     and small laptops (general layout rules stay at 760px below). */
  .site-brand { gap: .5rem; }
  .site-brand img { height: 46px; }
  /* The header's backdrop-filter creates a containing block that traps the fixed
     drawer inside the (short) header bar, so it slides in but shows nothing. Drop
     it when the drawer is active — the header background is near-opaque, so the
     blur isn't missed — letting position:fixed resolve against the viewport. */
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; z-index: 140; }
  /* Off-canvas drawer. Kept off-screen with visibility (not just transform) so a
     fixed panel translated beyond the right edge can never create page overflow,
     and the whole panel — items included — is either fully shown or fully hidden. */
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 340px);
    background: linear-gradient(160deg, #181836, #201040);
    border-left: 1px solid rgba(255,255,255,.12);
    padding: 5rem 1.25rem 2rem; z-index: 120;
    box-shadow: -20px 0 60px rgba(18,18,42,.35);
    overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
    display: block; visibility: hidden;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22,1,.36,1), visibility 0s linear .35s;
  }
  .main-nav.is-open {
    transform: translateX(0); visibility: visible;
    transition: transform .35s cubic-bezier(.22,1,.36,1), visibility 0s;
  }
  /* Stack the list vertically and fill the panel width. */
  .main-nav ul { flex-direction: column; align-items: stretch; width: 100%; }
  .main-nav li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
  .nav-cta .btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
  .main-nav a {
    display: block; padding: .95rem .6rem; color: #f2f2fb;
    font-size: 1.05rem; border-radius: var(--radius-sm);
    -webkit-text-fill-color: currentColor; /* override desktop gradient-clip so text shows */
  }
  .main-nav a:hover { color: #fff; background: rgba(255,255,255,.06); }
  .main-nav .current-menu-item > a,
  .main-nav .current_page_item > a,
  .main-nav .current-menu-ancestor > a {
    color: #fff; -webkit-text-fill-color: #fff;
    background: linear-gradient(135deg, rgba(64,32,128,.55), rgba(224,0,96,.45));
    box-shadow: inset 3px 0 0 var(--brand-magenta);
  }
  /* Backdrop behind the panel. */
  .nav-backdrop { position: fixed; inset: 0; background: rgba(12,12,28,.5);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; z-index: 110; }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
  /* Hamburger sits above the panel and morphs into an X. */
  .nav-toggle { display: block; position: relative; z-index: 130; }
  .nav-toggle span { transition: transform .3s ease, opacity .2s ease, background .3s ease; }
  .nav-toggle[aria-expanded="true"] span { background: #fff; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  /* Lock the page and clip any residual overflow while the drawer is mounted. */
  body.nav-open { overflow: hidden; }
}
@media (max-width: 760px) {
  .form-grid { grid-template-columns: 1fr; }
  .ltt-options { grid-template-columns: 1fr; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .fare-layout { grid-template-columns: 1fr; }
  .fare-layout__media { position: static; }
  .fare-layout__media img { aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-toolbar { flex-direction: column; align-items: stretch; }
  .blog-search { flex-direction: column; align-items: stretch; }  .blog-search input[type="search"], .blog-search select, .blog-search .btn { width: 100%; min-width: 0; justify-content: center; }
}
@media (max-width: 520px) {
  /* Narrow phones: the header shows just the logo + single-line title +
     hamburger so the title never wraps. The Book now CTA remains in the
     hero and footer. */
  .header-actions { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Right-click protection: "© Copyright" bubble shown where the context
   menu is blocked (see main.js). */
img { -webkit-touch-callout: none; }
.rcp-tooltip {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  background: rgba(54, 54, 54, 0.4);
  border-radius: 2px;
  color: #fff;
  padding: 3px 8px;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* Checkout page specific overrides */

@media (min-width: 1200px) {
    .woocommerce-checkout .prose { max-width: var(--maxw); margin: 0 auto; }
    .woocommerce-checkout .wc-block-components-main { width: 70%; }
    .woocommerce-checkout .wc-block-components-sidebar { width: 26%; }
}

/* Sleek, modern vertical scrollbar (WebKit/Chromium + Firefox) */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-indigo) #ececf5;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #ececf5;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-indigo), var(--brand-magenta));
  border-radius: 999px;
  border: 2px solid #ececf5;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--brand-magenta), var(--brand-indigo));
  background-clip: padding-box;
}
