.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand span {
  color: var(--night);
  font: 800 18px/1.15 Manrope, sans-serif;
  letter-spacing: -.03em;
  white-space: nowrap;
}

@media (max-width: 780px) {
  .brand { min-width: 0; gap: 8px; flex-shrink: 1; }
  .brand img { width: clamp(76px, 24vw, 112px); }
  .brand span { font-size: clamp(12px, 3.5vw, 14px); }
}

.benefit-icon {
  font-size: 44px;
  line-height: 1;
}

.benefit-icon svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-call {
  background: #fff;
  color: var(--night);
  border: 2px solid var(--gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.action-call .action-icon {
  background: var(--night);
  color: #fff;
  border-color: var(--night);
}

.action-call small,
.action-text small {
  margin-bottom: 4px;
  color: #47504d;
  font-size: 11px;
  font-weight: 700;
  opacity: 1;
}

.action-call strong,
.action-text strong {
  color: var(--night);
  font-size: 15px;
  font-weight: 800;
}

.action-call:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.call-mini {
  padding: 11px 16px;
  background: #fff;
  color: var(--night);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
  font-weight: 800;
}

.call-mini:hover {
  background: var(--gold);
  color: var(--night);
}

.topbar { gap: 30px; }
.topbar nav { gap: 22px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-left: auto; }
.footer-links a { margin-left: 0; }

.hero-top-phone {
  position: absolute;
  z-index: 2;
  top: 102px;
  left: clamp(22px, 6.2vw, 100px);
  color: #fff;
  font: 800 24px Manrope, sans-serif;
  letter-spacing: .02em;
}

.hero-top-phone:hover { color: var(--gold); }

@media (max-width: 1100px) {
  .hero-top-phone { display: none; }
}

.faq {
  padding: 110px clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: .8fr 1.3fr;
  gap: 100px;
  background: #f8f7f3;
}

.faq-intro h2 {
  margin: 0;
  font: 800 clamp(38px, 4vw, 58px)/1.04 Manrope, sans-serif;
  letter-spacing: -.05em;
}

.faq-intro > p:last-child {
  max-width: 430px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-list { border-top: 1px solid #cbd0cc; }
.faq-list details { border-bottom: 1px solid #cbd0cc; }

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  list-style: none;
  cursor: pointer;
  font: 700 15px Manrope, sans-serif;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 8px;
  color: #8a6b17;
  font-size: 22px;
}

.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 0;
  padding: 0 45px 23px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.faq-list details p a {
  font-weight: 700;
  text-decoration: underline;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

@media (max-width: 780px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    gap: 10px;
  }

  .menu-toggle {
    position: relative;
    z-index: 52;
    display: grid;
    flex: 0 0 50px;
    align-content: center;
    gap: 5px;
    width: 50px;
    min-width: 50px;
    height: 43px;
    margin-left: auto;
    padding: 8px;
    border: 2px solid var(--gold);
    background: #fff;
    box-shadow: 0 5px 14px rgba(0, 0, 0, .16);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--night);
    transition: transform .25s ease, opacity .2s ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible { background: var(--gold); }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: 45;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 34px 22px 82px;
    color: #fff;
    background: var(--night);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .25s ease, visibility .25s;
  }

  .mobile-menu[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-links { border-top: 1px solid rgba(255,255,255,.16); }
  .mobile-menu-links a {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
    font: 700 clamp(22px, 7vw, 30px) Manrope, sans-serif;
    letter-spacing: -.035em;
  }

  .mobile-menu-links a span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0;
  }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 28px;
  }

  .mobile-menu-actions a {
    padding: 15px 10px;
    border: 1px solid rgba(255,255,255,.22);
    text-align: center;
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-menu-actions a:last-child {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
  }

  .mobile-language {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 24px;
    color: #9eaaa6;
    border-top: 1px solid rgba(255,255,255,.16);
    font-size: 11px;
  }

  .mobile-language span { color: #fff; font-weight: 800; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 780px) {
  .faq {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.fare-section {
  display: grid;
  grid-template-columns: .78fr 1.5fr;
  gap: clamp(55px, 8vw, 130px);
  padding: 90px clamp(22px, 7vw, 110px);
  color: #fff;
  background: var(--night);
}

.fare-price { border-right: 1px solid rgba(255, 255, 255, .16); }
.price-line { display: flex; align-items: flex-end; gap: 18px; }
.price-line strong { font: 800 clamp(70px, 8vw, 118px)/.8 Manrope, sans-serif; letter-spacing: -.08em; }
.price-line sup { color: var(--gold); font-size: .38em; vertical-align: top; }
.price-line span { color: #9eaaa6; font-size: 10px; font-weight: 700; line-height: 1.5; text-transform: uppercase; }
.fare-price > p:last-child { margin: 25px 0 0; color: #c8d0cd; font-size: 12px; }
.fare-details { display: grid; align-content: center; }
.fare-details article { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.fare-details article:first-child { padding-top: 0; }
.fare-details article:last-child { border: 0; }
.fare-number { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; color: var(--gold); font-size: 9px; }
.fare-details h3 { margin: 1px 0 7px; font: 700 15px Manrope, sans-serif; }
.fare-details p { margin: 0; color: #9eaaa6; font-size: 12px; line-height: 1.6; }

.service-map { padding: 115px clamp(22px, 7vw, 110px); background: #eceae3; overflow: hidden; }
.map-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.map-heading h2 { margin: 0; font: 800 clamp(42px, 4.5vw, 68px)/1 Manrope, sans-serif; letter-spacing: -.055em; }
.map-heading > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.map-canvas { position: relative; min-height: 410px; border: 1px solid #c9cec8; background: #e4e7e1; overflow: hidden; }
.map-grid { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(17, 24, 22, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 22, .08) 1px, transparent 1px); background-size: 46px 46px; transform: rotate(-5deg) scale(1.15); }
.map-route { position: absolute; left: 16%; right: 16%; top: 52%; height: 3px; background: var(--night); transform: rotate(-7deg); transform-origin: center; }
.map-route::before, .map-route::after { content: ''; position: absolute; top: 50%; width: 13px; height: 13px; border: 3px solid var(--gold); border-radius: 50%; background: var(--night); transform: translateY(-50%); }
.map-route::before { left: -5px; }.map-route::after { right: -5px; }
.map-route span { position: absolute; inset: -7px 0 auto; border-top: 1px dashed rgba(255,255,255,.75); }
.map-city { position: absolute; display: flex; align-items: center; gap: 15px; z-index: 2; }
.map-city i { display: block; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(243,188,39,.2); }
.map-city small, .map-city strong, .map-city span { display: block; }
.map-city small { color: #777f7c; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.map-city strong { margin: 3px 0; font: 800 25px Manrope, sans-serif; letter-spacing: -.04em; }
.map-city span { color: #65706d; font-size: 10px; }
.map-ottawa { left: 7%; bottom: 16%; }.map-montreal { right: 6%; top: 14%; text-align: right; flex-direction: row-reverse; }
.map-stop { position: absolute; z-index: 2; display: flex; align-items: center; gap: 7px; color: #56605d; font-size: 9px; font-weight: 800; }
.map-stop i { width: 7px; height: 7px; border: 2px solid var(--night); border-radius: 50%; background: #e4e7e1; }
.map-yow { left: 23%; bottom: 28%; }.map-yul { right: 23%; top: 29%; }
.map-highway { position: absolute; left: 39%; top: 40%; z-index: 2; display: flex; align-items: center; gap: 11px; transform: rotate(-7deg); }
.map-highway span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--night); color: white; font-size: 8px; }
.map-highway small { padding: 7px 12px; background: rgba(255,255,255,.82); color: #4d5754; font-size: 9px; font-weight: 700; }

.founder { display: grid; grid-template-columns: auto 1.55fr .7fr; gap: clamp(35px, 6vw, 90px); align-items: center; padding: 100px clamp(22px, 7vw, 110px); color: white; background: #15282d; }
.founder-mark { display: grid; place-items: center; width: 105px; height: 105px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--gold); font: 800 24px Manrope, sans-serif; letter-spacing: -.05em; }
.founder blockquote { max-width: 800px; margin: 20px 0 30px; font: 600 clamp(24px, 2.4vw, 38px)/1.35 Manrope, sans-serif; letter-spacing: -.035em; }
.founder-signature { display: flex; align-items: center; gap: 13px; margin: 0; }
.founder-signature strong { font-size: 12px; }.founder-signature span { padding-left: 13px; border-left: 1px solid rgba(255,255,255,.25); color: #98a6a3; font-size: 10px; }
.founder-promise { padding: 24px 0 24px 28px; border-left: 1px solid rgba(255,255,255,.18); }
.founder-promise span { color: var(--gold); font: 800 9px Manrope, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.founder-promise p { margin: 15px 0 0; color: #aab5b2; font-size: 12px; line-height: 1.7; }

@media (max-width: 900px) {
  .fare-section, .founder { grid-template-columns: 1fr; }
  .fare-price { padding-bottom: 45px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .map-heading { grid-template-columns: 1fr; gap: 25px; }
  .founder-mark { width: 78px; height: 78px; }
  .founder-promise { padding: 0; border: 0; }
}

@media (max-width: 600px) {
  .fare-section, .service-map, .founder { padding-top: 78px; padding-bottom: 78px; }
  .map-canvas { min-height: 500px; }
  .map-route { left: 15%; right: 15%; top: 50%; transform: rotate(-48deg); }
  .map-ottawa { left: 7%; bottom: 8%; }.map-montreal { right: 7%; top: 7%; }
  .map-yow { left: 27%; bottom: 27%; }.map-yul { right: 26%; top: 25%; }
  .map-highway { left: 30%; top: 45%; transform: rotate(-48deg); }
  .map-highway small { display: none; }
  .map-city span { max-width: 135px; }
}

/* Lighter hero treatment: preserves text contrast without hiding the vehicle. */
@media (min-width: 1101px) {
  .hero-copy {
    top: 43%;
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 12, 16, .72) 0%, rgba(4, 12, 16, .48) 37%, rgba(4, 12, 16, .04) 68%),
    linear-gradient(0deg, rgba(4, 12, 16, .38), transparent 35%);
}

@media (max-width: 780px) {
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 12, 16, .70), rgba(4, 12, 16, .10)),
      linear-gradient(0deg, rgba(4, 12, 16, .58), transparent 55%);
  }
}

/* Readability: larger supporting copy and stronger contrast. */
.intro { color: #eef2f1; font-size: 16px; }
.booking-note { font-size: 13px; }
.field label { font-size: 11px; }
.field input,
.field select,
.field textarea { font-size: 14px; }
.secure,
.privacy { color: #59625f; font-size: 11px; }
.trust-row span { color: #c4cdca; font-size: 11px; }
.benefits p { color: #4f5a57; font-size: 14px; }
.routes-copy > p:last-child { color: #c1cbc8; font-size: 15px; }
.route-list b { color: #c1cbc8; font-size: 12px; }
.fare-price > p:last-child { color: #e0e5e3; font-size: 14px; }
.fare-details p { color: #c4cecb; font-size: 14px; }
.founder-signature span,
.founder-promise p { color: #c0cbc8; }
footer p { color: #4f5956; font-size: 13px; }
.copyright { display: block; margin-top: 5px; }

@media (max-width: 780px) {
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 12, 16, .84), rgba(4, 12, 16, .30)),
      linear-gradient(0deg, rgba(4, 12, 16, .82), transparent 58%);
  }

  .status,
  .overline,
  .eyebrow { font-size: 12px; }

  .intro {
    font-size: 17px;
    line-height: 1.65;
  }

  .action-call small,
  .action-text small { font-size: 12px; }

  .action-call strong,
  .action-text strong { font-size: 16px; }

  .booking-note { font-size: 14px; line-height: 1.5; }
  .field label { font-size: 12px; }
  .field input,
  .field select,
  .field textarea { font-size: 16px; }
  .secure,
  .privacy { font-size: 12px; line-height: 1.5; }

  .section-intro > p:last-child,
  .routes-copy > p:last-child,
  .map-heading > p,
  .faq-intro > p:last-child { font-size: 16px; line-height: 1.7; }

  .benefits h3 { font-size: 20px; }
  .benefits p { font-size: 16px; line-height: 1.65; }
  .benefits article > span { font-size: 11px; }

  .price-line span { color: #d1d9d7; font-size: 12px; }
  .fare-price > p:last-child { font-size: 15px; line-height: 1.6; }
  .fare-number { font-size: 11px; }
  .fare-details h3 { font-size: 18px; }
  .fare-details p { font-size: 15px; line-height: 1.65; }

  .map-city small { color: #535c59; font-size: 10px; }
  .map-city span { color: #4f5956; font-size: 12px; line-height: 1.45; }
  .map-stop { color: #3f4946; font-size: 11px; }

  .founder-signature strong { font-size: 14px; }
  .founder-signature span { font-size: 12px; }
  .founder-promise span { font-size: 11px; }
  .founder-promise p { font-size: 15px; }

  .route-list span { font-size: 18px; }
  .faq-list summary { font-size: 17px; line-height: 1.4; }
  .faq-list details p { font-size: 15px; }

  .mobile-menu-links a span { font-size: 11px; }
  .mobile-menu-actions a { font-size: 14px; }
  .mobile-language { color: #c1cbc8; font-size: 13px; }
  .mobile-contact a { font-size: 15px; }

  footer p { font-size: 14px; line-height: 1.55; }
  footer a { font-size: 15px; }
  footer {
    align-items: flex-start;
    gap: 20px;
    padding: 34px 20px 38px;
  }
  footer img { width: 104px; height: 46px; }
  footer p { width: 100%; }
  .footer-links {
    display: grid;
    width: 100%;
    margin-left: 0;
    border-top: 1px solid #d5dad5;
  }
  .footer-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid #d5dad5;
  }
  .footer-links a::after { content: "→"; color: #8a6b17; }
}
