:root {
  --navy: #1a1a1a;
  --navy-2: #2a2a2a;
  --navy-3: #3a3a3a;
  --red: #D80621;
  --red-2: #A30518;
  --white: #ffffff;
  --paper: #F7F4F2;
  --ink: #1a1a1a;
  --muted: #5c534e;
  --line: #e4d9d4;
  --star: #ffffff;
  --shadow: 0 10px 28px rgba(216, 6, 33, .14);
  --radius: 14px;
  --max: 1180px;
  --body: 16px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.gta {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: var(--body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
h1, h2, h3 {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(1.7rem, 4vw, 2.55rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Canadian flag bar — red / white / red */
.stripe {
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--red) 0 22%,
    var(--white) 22% 78%,
    var(--red) 78% 100%
  );
}
.stars { display: none; }

/* Header */
.site-header {
  background: var(--white);
  color: var(--ink);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 4px 18px rgba(26,26,26,.08);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { position: relative; }
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}
.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: 58px;
  width: auto;
}
.brand em { color: var(--red); font-style: normal; font-weight: 800; }
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
}
.nav a {
  color: #3a3330;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.nav a:hover { color: var(--red); }
.nav .btn-nav {
  background: var(--red);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 999px;
}
.phone-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

/* Hero + slider — centered pair: copy + fleet pod (never under the text) */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 720px) minmax(240px, 480px);
  justify-content: center;
  align-items: start;
  column-gap: 28px;
  padding: 0 24px 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.16) 0, transparent 38%),
    linear-gradient(135deg, #D80621 0%, #A30518 48%, #5C030E 100%);
  color: #fff;
  overflow: visible;
  min-height: 560px;
}
.hero-slides {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 420px;
  width: 100%;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 8px 40px;
}
.hero-slide.is-on { opacity: 1; z-index: 1; }
.hero-slide img.pod {
  max-height: min(320px, 42vh);
  max-width: 100%;
  width: auto;
  margin: 0;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.45));
  object-fit: contain;
}
.hero-slide .eyebrow {
  position: absolute;
  top: 18px;
  right: 8px;
  margin: 0;
}
.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 720px;
  margin: 0;
  padding: 54px 0 12px;
}
.hero-quote,
.hero .kpis {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  width: 100%;
}
.hero-quote { margin-top: 4px; }
.hero .kpis { margin-top: 14px; }
.hero .kicker {
  color: #ffd0d8;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1, .hero p { color: #fff; }
.hero .lead { max-width: 720px; font-size: 16px; color: #e8eef8; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px; }
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 20px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}
.btn-red { background: var(--red); color: #fff !important; }
.btn-red:hover { background: var(--red-2); }
.btn-ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.55); }
.btn-navy { background: var(--navy); color: #fff !important; }
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.kpis div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 12px 14px;
}
.kpis strong { display: block; color: #ffd7de; font-size: 1.25rem; }
.hero-nav {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  right: 24px;
  display: flex;
  gap: 8px;
}
.hero-nav button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.4); cursor: pointer;
}
.hero-nav button.is-on { background: var(--red); }

/* Quote bar */
.quote-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  margin-top: 18px;
  box-shadow: var(--shadow);
}
.quote-bar label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
}
.quote-bar input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.quote-bar .btn { align-self: end; }

/* Sections */
.sec { padding: 56px 0; }
.sec-navy { background: var(--navy); color: #fff; }
.sec-navy h2, .sec-navy h3, .sec-navy p { color: #fff; }
.sec-white { background: #fff; }
.eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Cards */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card, .vcard, .tile, .route, .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  overflow: hidden;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card:has(.card-img), .route:has(.card-img) { padding: 0 0 16px; }
.card-img {
  display: block;
  width: 100%;
  height: 158px;
  object-fit: cover;
  background: #1a1a1a;
}
.card-body { padding: 14px 16px 0; }
.card:hover, .vcard:hover, .tile:hover, .route:hover {
  background: #fff5f7;
  border-color: rgba(216,6,33,.75);
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  transform: translateY(-3px);
  cursor: pointer;
}
.card a.stretched { text-decoration: none; color: inherit; display: block; }
.card h3 { margin-bottom: .35em; }
.fleet-note { margin-top: 28px; }

.kw-block { margin: 28px 0 8px; }
.kw-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}
.kw-cloud a {
  display: inline-block;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  color: var(--navy);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.kw-cloud a:hover {
  background: #4a3a42;
  border-color: rgba(216,6,33,.75);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  transform: translateY(-2px);
}

/* Coverage flags */
.flag-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 2px 16px;
  scroll-snap-type: x mandatory;
}
.flag-card {
  min-width: 168px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
}
.flag-card img { width: 36px; height: 27px; margin-bottom: 8px; }
.flag-card strong { display: block; }

/* Fleet scroller */
.vscroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.vcard { min-width: 220px; text-align: center; }
.vcard img {
  height: 110px;
  width: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}

/* Travel center */
.travel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
}
.travel .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0;
}
.bcard {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e6ddc8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  transition: transform .15s, box-shadow .15s;
}
.bcard:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.bcard .img, .bcard-img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #eee;
}
.bcard .lab { padding: 14px; font-weight: 800; }

/* Members */
.members {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
  justify-content: center;
}
.members a,
.member-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  min-height: 120px;
  text-decoration: none;
  color: var(--navy);
  text-align: center;
  font-weight: 800;
  font-size: 14px;
}
.members img { max-height: 56px; width: auto; }
.member-card span { display: block; line-height: 1.35; }
.members a.member-lwd,
.member-card.member-lwd {
  background: #000;
  border-color: #000;
  color: #fff;
}
.members .member-lwd img {
  max-height: 92px;
  width: auto;
}
.members a.member-bww,
.member-card.member-bww {
  background: #000;
  border-color: #000;
  color: #fff;
}
.members .member-bww img {
  max-height: 92px;
  width: auto;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}
.hero-links a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(11, 31, 75, .18);
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
}
.hero .hero-links a {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: #fff;
}
.hero-links a:hover { border-color: var(--red); color: var(--red); }

.bww-mark-link {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 12px auto 16px;
}
.bww-mark {
  display: block;
  width: min(220px, 72vw);
  height: auto;
  margin: 0 auto;
  background: #000;
  border-radius: 10px;
}
.travel h2,
.travel > p { text-align: center; }
.foot-bww img {
  width: 168px;
  height: auto;
  background: #000;
  border-radius: 8px;
  margin-bottom: 10px;
}
.sources {
  columns: 2;
  gap: 28px;
  margin: 0;
  padding-left: 18px;
}
.sources li { margin: 0 0 .45em; }
@media (max-width: 720px) {
  .sources { columns: 1; }
}
.members a.member-lai,
.member-card.member-lai {
  background: #f5b43a;
  border-color: #e0a22e;
  color: #111;
}
.members .member-lai img {
  max-height: 92px;
  width: auto;
}

/* Booker */
.book-wrap {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
}
.book-wrap h2, .book-wrap p { color: #fff; }
.book-frame {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  min-height: 720px;
}
.book-frame iframe { width: 100%; min-height: 720px; border: 0; display: block; }

/* FAQ */
.faq-item { margin-bottom: 10px; }
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 10px; color: var(--ink); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #d7e0f0;
  padding: 36px 0 18px;
}
.site-footer a { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 20px; }
.site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 0 0 8px; }
.foot-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.foot-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  min-height: 58px;
  min-width: 128px;
}
.foot-logo img {
  max-height: 88px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.foot-logo:last-child {
  background: #000;
}
.foot-logo:last-child img {
  max-height: 72px;
}
.foot-desk {
  margin-top: 16px;
}
.foot-desk-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #000;
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: #fff;
}
.foot-desk-card img {
  width: 88px;
  height: auto;
  flex-shrink: 0;
}
.foot-desk-card span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #d7e0f0;
}
.foot-desk-card strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.copy { border-top: 1px solid rgba(255,255,255,.12); margin-top: 22px; padding-top: 14px; font-size: 13px; }

.prose { max-width: 820px; }
.field {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}
.breadcrumbs { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.breadcrumbs a { color: var(--navy); }
.page-hero {
  position: relative;
  overflow: hidden;
  background: #5C030E;
  color: #fff;
  padding: 56px 0 40px;
}
.page-hero-media,
.page-hero-shade { position: absolute; inset: 0; }
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-shade {
  background: linear-gradient(135deg, rgba(92,3,14,.84), rgba(216,6,33,.74) 55%, rgba(163,5,24,.8));
}
.page-hero-copy { position: relative; z-index: 1; }
.page-hero h1, .page-hero p { color: #fff; }
.page-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.page-photo img {
  display: block;
  width: 100%;
  height: min(42vw, 380px);
  object-fit: cover;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 800;
}
@media (max-width: 900px) {
  .kpis, .grid-4, .grid-3, .travel .cards, .foot-grid, .quote-bar { grid-template-columns: 1fr 1fr; }
  .quote-bar { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; }
  .hero-slides { grid-column: 1; grid-row: 1; min-height: 240px; }
  .hero-copy { grid-column: 1; grid-row: 2; width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding-top: 12px; }
  .hero-quote { grid-column: 1; grid-row: 3; }
  .hero .kpis { grid-column: 1; grid-row: 4; }
  .hero-nav { position: relative; grid-column: 1; grid-row: 1; align-self: end; justify-self: center; right: auto; bottom: 12px; }
  .hero-slide { padding: 36px 16px 40px; }
  .hero-slide img.pod { max-height: 200px; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0; right: 0; top: 72px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 20px;
  }
  .menu-toggle { display: inline-block; }
}
@media (max-width: 640px) {
  .kpis, .grid-2, .grid-3, .grid-4, .travel .cards, .foot-grid, .quote-bar { grid-template-columns: 1fr; }
  .hero-slides { min-height: 200px; }
}
.gta-float { position: relative; z-index: 9999; }
.foot-brand {
  display: inline-block;
  margin-bottom: 10px;
}
.foot-brand img {
  height: 72px;
  width: auto;
  border-radius: 50%;
  background: #0b111a;
}
.gta-float__btn {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 10000;
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  font-weight: 800;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gta-float__btn img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #0b111a;
}
.gta-float__btn:hover { background: var(--red-2); }
.gta-float__panel {
  position: fixed;
  left: 18px;
  bottom: 72px;
  width: min(420px, 94vw);
  height: min(640px, 78vh);
  background: #111;
  border: 1px solid var(--red);
  border-radius: 14px;
  overflow: hidden;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.gta-float__panel[hidden] { display: none; }
.gta-float__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
}
.gta-float__bar a,
.gta-float__bar button {
  color: #ffd0d8;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-family: inherit;
}
.gta-float iframe {
  flex: 1;
  width: 100%;
  border: 0;
  background: #111;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { transition: none; }
}
