:root {
      --navy: #131E2B;
      --navy-deep: #0B131C;
      --navy-soft: #21303F;
      --orange: #F2580D;
      --orange-deep: #C4430A;
      --orange-soft: #FCEDE4;
      --orange-line: #F7CFB8;
      --bg: #FBF4EC;
      --surface: #FFFFFF;
      --line: #EDE4DD;
      --line-soft: #F6EFEA;
      --text: #131E2B;
      --muted: #586472;
      --muted-soft: #8A94A0;
      --wa: #131E2B;
      --max: 1200px;
      --fd: "Bricolage Grotesque", "Segoe UI", sans-serif;
      --h2: 50px;
      --header-h: 77px;
      --marquee-h: 69px;
      --fb: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
      --sh-sm: 0 1px 2px rgba(16, 24, 32, .04), 0 6px 16px -8px rgba(16, 24, 32, .10);
      --sh-md: 0 2px 6px rgba(16, 24, 32, .05), 0 20px 44px -16px rgba(16, 24, 32, .18);
      --sh-lg: 0 4px 10px rgba(16, 24, 32, .06), 0 34px 60px -20px rgba(16, 24, 32, .26);
      --r: 18px;
      --r-lg: 26px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--fb);
      background: var(--bg);
      color: var(--text);
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

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

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--fd);
      color: var(--navy);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -.025em;
      text-wrap: balance;
    }

    p,
    li {
      text-wrap: pretty;
    }

    h2 {
      font-size: var(--h2);
      letter-spacing: -.03em;
    }

    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 28px;
    }

    section {
      padding: clamp(64px, 9vw, 128px) 0;
    }

    /* keep anchored sections clear of the sticky header */
    section[id],
    [id]:target {
      scroll-margin-top: calc(var(--header-h) + 18px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      font-family: var(--fb);
      font-weight: 600;
      font-size: 12.5px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--orange-deep);
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }

    .sec-head {
      margin-bottom: clamp(44px, 5vw, 64px);
    }

    .sec-head:not(.mid) {
      display: grid;
      grid-template-columns: minmax(150px, 210px) 1fr;
      column-gap: clamp(28px, 4vw, 60px);
      row-gap: 10px;
      align-items: start;
    }

    .sec-head:not(.mid) .eyebrow {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 0;
      padding-top: 11px;
    }

    .sec-head:not(.mid) h2 {
      grid-column: 2;
      grid-row: 1;
      margin-bottom: 0;
    }

    .sec-head:not(.mid) p {
      grid-column: 2;
      grid-row: 2;
      margin-top: 4px;
      max-width: 60ch;
    }

    .sec-head.mid {
      max-width: 660px;
      margin-inline: auto;
      text-align: center;
    }

    .sec-head.mid .eyebrow {
      justify-content: center;
    }

    .sec-head h2 {
      font-size: var(--h2);
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: -.03em;
    }

    .sec-head p {
      color: var(--muted);
      font-size: 18.5px;
      line-height: 1.6;
    }

    @media(max-width:720px) {
      .sec-head:not(.mid) {
        grid-template-columns: 1fr;
        row-gap: 8px;
      }

      .sec-head:not(.mid) .eyebrow,
      .sec-head:not(.mid) h2,
      .sec-head:not(.mid) p {
        grid-column: 1;
        grid-row: auto;
      }

      .sec-head:not(.mid) .eyebrow {
        padding-top: 0;
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-family: var(--fb);
      font-weight: 600;
      font-size: 15.5px;
      padding: 15px 26px;
      border-radius: 14px;
      cursor: pointer;
      border: none;
      transition: transform .22s cubic-bezier(.2, .7, .3, 1), box-shadow .22s ease, background .2s;
      white-space: nowrap;
    }

    .btn svg {
      width: 19px;
      height: 19px;
    }

    .btn-wa {
      background: var(--wa);
      color: #fff;
      box-shadow: 0 10px 24px -10px rgba(19, 30, 43, .5);
    }

    .btn-wa:hover {
      background: var(--navy-soft);
      transform: translateY(-2px);
      box-shadow: 0 18px 34px -12px rgba(19, 30, 43, .55);
    }

    .btn-orange {
      background: var(--orange);
      color: #fff;
      box-shadow: 0 10px 24px -10px rgba(242, 88, 13, .65);
    }

    .btn-orange:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px -12px rgba(242, 88, 13, .7);
    }

    .btn-line {
      background: var(--surface);
      color: var(--navy);
      border: 1.5px solid var(--line);
    }

    .btn-line:hover {
      border-color: var(--navy);
      transform: translateY(-2px);
    }

    .btn-ghost-light {
      background: rgba(255, 255, 255, .1);
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, .28);
    }

    .btn-ghost-light:hover {
      background: rgba(255, 255, 255, .18);
    }


    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 60;
      background: #FFFFFF;
      border-bottom: 1px solid var(--line);
      box-shadow: 0 1px 3px rgba(19, 30, 43, .04), 0 4px 16px -8px rgba(19, 30, 43, .08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      max-width: var(--max);
      margin: 0 auto;
      padding: 13px 28px;
    }

    .brand-logo {
      height: 50px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      position: relative;
    }

    .nav-links a {
      position: relative;
      z-index: 1;
      font-size: 15px;
      font-weight: 500;
      color: var(--muted);
      padding: 8px 15px;
      border-radius: 999px;
      transition: color .22s ease;
    }

    .nav-links a:hover {
      color: var(--navy);
    }

    .nav-links a.active {
      color: var(--orange-deep);
    }

    .nav-pill {
      position: absolute;
      z-index: 0;
      top: 50%;
      left: 0;
      width: 0;
      height: 36px;
      transform: translateY(-50%);
      border-radius: 999px;
      background: var(--orange-soft);
      border: 1px solid var(--orange-line);
      opacity: 0;
      pointer-events: none;
      transition: left .42s cubic-bezier(.4, 0, .2, 1), width .42s cubic-bezier(.4, 0, .2, 1), opacity .25s ease;
    }

    @media(prefers-reduced-motion:reduce) {
      .nav-pill {
        transition: opacity .2s ease;
      }
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-call {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      color: var(--navy);
      font-size: 15px;
    }

    .nav-call svg {
      width: 17px;
      height: 17px;
      color: var(--orange-deep);
    }

    .nav-book {
      padding: 11px 20px;
      font-size: 14.5px;
      border-radius: 12px;
    }

    /* hamburger + mobile menu (below 1024px) */
    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      background: var(--surface);
      border-radius: 12px;
      cursor: pointer;
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition: border-color .2s, background .2s;
    }

    .nav-toggle:hover {
      border-color: var(--orange-line);
      background: var(--orange-soft);
    }

    .nav-toggle span {
      display: block;
      width: 19px;
      height: 2px;
      border-radius: 2px;
      background: var(--navy);
      transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .menu-overlay {
      position: fixed;
      inset: 0;
      z-index: 70;
      background: rgba(11, 19, 28, .45);
      -webkit-backdrop-filter: blur(3px);
      backdrop-filter: blur(3px);
      opacity: 0;
      visibility: hidden;
      transition: opacity .28s ease, visibility .28s;
    }

    .menu-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 80;
      width: min(320px, 86vw);
      background: var(--surface);
      border-left: 1px solid var(--line);
      box-shadow: var(--sh-lg);
      padding: 26px 24px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      transform: translateX(100%);
      transition: transform .34s cubic-bezier(.4, 0, .2, 1);
      overflow-y: auto;
    }

    .mobile-menu.open {
      transform: none;
    }

    .mm-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .mm-head img {
      height: 40px;
      width: auto;
    }

    .mm-close {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: var(--line-soft);
      color: var(--muted);
      font-size: 21px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, color .2s;
    }

    .mm-close:hover {
      background: var(--orange-soft);
      color: var(--orange-deep);
    }

    .mobile-menu>a {
      font-size: 16.5px;
      font-weight: 600;
      color: var(--navy);
      padding: 13px 14px;
      border-radius: 12px;
      transition: background .2s, color .2s;
    }

    .mobile-menu>a:hover,
    .mobile-menu>a.active {
      background: var(--orange-soft);
      color: var(--orange-deep);
    }

    .mm-actions {
      margin-top: auto;
      padding-top: 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    @media(prefers-reduced-motion:reduce) {

      .mobile-menu,
      .menu-overlay,
      .nav-toggle span {
        transition: none;
      }
    }

    @media(max-width:1023px) {
      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-book {
        display: none;
      }
    }

    @media(min-width:1024px) {

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

    @media(max-width:560px) {
      .nav-call span {
        display: none;
      }
    }

    /* Hero */
    .hero {
      position: relative;
      padding: clamp(60px, 6vw, 100px) 0 clamp(250px, 24vw, 330px);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      min-height: 700px;
      min-height: max(700px, calc(100vh - var(--header-h) - var(--marquee-h)));
      min-height: max(700px, calc(100svh - var(--header-h) - var(--marquee-h)));
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image: url(../hero-bg.jpg);
      background-image: image-set(url(../hero-bg.webp) type("image/webp"), url(../hero-bg.jpg) type("image/jpeg"));
      background-position: center bottom -100px;
      background-size: 100% auto;
      background-repeat: no-repeat;
    }

    @media(max-width:860px) {
      .hero {
        padding-bottom: clamp(230px, 44vw, 320px);
      }

      .hero::before {
        background-size: 135% auto;
        background-position: center calc(100% + 20px);
      }
    }

    @media(max-width:560px) {
      .hero {
        padding-bottom: clamp(180px, 50vw, 150px);
        padding-top: 30px;
      }

      .hero::before {
        background-size: 170% auto;
        background-position: center calc(100% + 12px);
      }
    }

    /* on desktop, lock the hero to exactly one fold so the marquee always shows */
    @media(min-width:920px) and (min-height:620px) {
      .hero {
        height: calc(100svh - var(--header-h) - var(--marquee-h));
        min-height: 700px;
        padding-bottom: clamp(190px, 20vh, 330px);
      }
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) clamp(340px, 33%, 430px);
      gap: clamp(36px, 5vw, 68px);
      align-items: center;
    }

    @media(max-width:920px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--orange-soft);
      border: 1px solid var(--orange-line);
      color: var(--orange-deep);
      font-weight: 600;
      font-size: 13.5px;
      padding: 7px 15px;
      border-radius: 999px;
      margin-bottom: 22px;
    }

    .hero-badge svg {
      width: 15px;
      height: 15px;
    }

    .hero h1 {
      font-size: 74px;
      font-weight: 800;
      letter-spacing: -.038em;
      line-height: 1.03;
      margin-bottom: 22px;
    }

    .hero h1 .u {
      color: var(--orange);
      position: relative;
    }

    @media(min-width:1200px) {
      .hero h1 .u {
        white-space: nowrap;
      }
    }

    .hero-sub {
      font-size: 20px;
      color: var(--muted);
      max-width: 35ch;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .hero-cta {
      display: flex;
      gap: 13px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .hero-trust {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .hero-trust .t {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 7px 16px 7px 8px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--navy);
      box-shadow: var(--sh-sm);
    }

    .hero-trust .t .ic {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--orange-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero-trust .t svg {
      width: 13px;
      height: 13px;
      color: var(--orange-deep);
      flex-shrink: 0;
    }

    /* Booking card */
    .book-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 26px 24px 24px;
      box-shadow: var(--sh-lg);
      position: relative;
      overflow: hidden;
    }

    .book-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--orange-deep));
    }

    .bc-head {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line-soft);
    }

    .bc-head .ic {
      width: 38px;
      height: 38px;
      border-radius: 11px;
      background: var(--orange-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .bc-head .ic svg {
      width: 19px;
      height: 19px;
      color: var(--orange-deep);
    }

    .book-card h3 {
      font-size: 18.5px;
      margin-bottom: 3px;
      letter-spacing: -.02em;
    }

    .book-card .bc-sub {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .bc-field {
      margin-bottom: 13px;
    }

    .bc-field label {
      display: block;
      font-size: 10.5px;
      font-weight: 700;
      color: var(--muted-soft);
      margin-bottom: 5px;
      letter-spacing: .09em;
      text-transform: uppercase;
    }

    .bc-field input,
    .bc-field select {
      width: 100%;
      min-width: 0;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: 10px;
      font-family: var(--fb);
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text);
      background: var(--surface);
      transition: border-color .18s, box-shadow .18s, background .18s;
    }

    .bc-field input::placeholder {
      color: var(--muted-soft);
      font-weight: 400;
    }

    .bc-field select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C857F' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 14px;
      padding-right: 30px;
      cursor: pointer;
    }

    .bc-field input:hover,
    .bc-field select:hover {
      border-color: var(--orange-line);
    }

    .bc-field input:focus,
    .bc-field select:focus {
      outline: none;
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(242, 88, 13, .14);
    }

    .bc-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 11px;
    }

    @media(max-width:430px) {
      .bc-row {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }

    .book-card .btn {
      font-size: 14.5px;
      padding: 13px 20px;
      margin-top: 5px;
    }

    .bc-note {
      text-align: center;
      font-size: 11.5px;
      color: var(--muted-soft);
      margin-top: 11px;
    }



    /* "page under construction" modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 22px;
      background: rgba(11, 19, 28, .55);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s ease, visibility .25s;
    }

    .modal-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .modal {
      position: relative;
      width: 100%;
      max-width: 420px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 32px 28px 26px;
      box-shadow: var(--sh-lg);
      text-align: center;
      transform: translateY(14px) scale(.98);
      transition: transform .3s cubic-bezier(.2, .7, .3, 1);
    }

    .modal-overlay.open .modal {
      transform: none;
    }

    .modal-ico {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--orange-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }

    .modal-ico svg {
      width: 27px;
      height: 27px;
      color: var(--orange-deep);
    }

    .modal h3 {
      font-size: 21px;
      margin-bottom: 9px;
    }

    .modal p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 22px;
    }

    .modal-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .modal-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: var(--line-soft);
      color: var(--muted);
      font-size: 20px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, color .2s;
    }

    .modal-close:hover {
      background: var(--orange-soft);
      color: var(--orange-deep);
    }

    @media(prefers-reduced-motion:reduce) {

      .modal-overlay,
      .modal {
        transition: none;
      }
    }

    /* Locations marquee */
    .marquee-band {
      padding: 0;
      background: var(--surface);
      border-block: 1px solid var(--line);
      overflow: hidden;
    }

    .marquee {
      position: relative;
      padding: 18px 0;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    }

    .mq-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: mq 46s linear infinite;
    }

    .marquee:hover .mq-track {
      animation-play-state: paused;
    }

    .mq-item {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 19px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--navy);
      padding: 0 16px;
      white-space: nowrap;
    }

    .mq-dot {
      color: var(--orange);
      font-size: 9px;
      opacity: .85;
    }

    @keyframes mq {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    @media(prefers-reduced-motion:reduce) {
      .mq-track {
        animation: none;
      }

      .marquee {
        overflow-x: auto;
      }
    }

    /* Stats strip */
    .stats {
      background: var(--navy);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .stat {
      text-align: center;
      color: #fff;
    }

    .stat .n {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 48px;
      color: #fff;
      letter-spacing: -.03em;
      line-height: 1;
    }

    .stat .n .plus {
      color: var(--orange);
    }

    .stat .l {
      color: rgba(255, 255, 255, .66);
      font-size: 14px;
      font-weight: 500;
      margin-top: 8px;
      letter-spacing: .01em;
    }

    @media(max-width:640px) {
      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
      }
    }

    /* Offer grid */
    .offer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .offer {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 30px 28px;
      box-shadow: var(--sh-sm);
      transition: transform .28s cubic-bezier(.2, .7, .3, 1), box-shadow .28s, border-color .28s;
    }

    .offer:hover {
      transform: translateY(-5px);
      box-shadow: var(--sh-md);
      border-color: var(--orange-line);
    }

    .offer-ico {
      height: 80px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      display: block;
      margin-bottom: 18px;
    }

    .offer h3 {
      font-size: 20px;
      margin-bottom: 9px;
      font-weight: 700;
    }

    .offer p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    @media(max-width:860px) {
      .offer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:560px) {
      .offer-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Fleet */
    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .car {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r);
      overflow: hidden;
      box-shadow: var(--sh-sm);
      transition: transform .28s cubic-bezier(.2, .7, .3, 1), box-shadow .28s;
    }

    .car:hover {
      transform: translateY(-6px);
      box-shadow: var(--sh-md);
    }

    .car-photo {
      aspect-ratio: 3/2;
      background: #fff;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .car-photo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform .45s ease;
    }

    .car:hover .car-photo img {
      transform: scale(1.04);
    }

    .car-photo .ph {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--muted-soft);
    }

    .car-photo .ph svg {
      width: 52px;
      height: 52px;
      opacity: .6;
    }

    .car-photo .ph span {
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .car-cat {
      position: absolute;
      top: 13px;
      left: 13px;
      background: var(--navy);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 7px;
    }

    .car-body {
      padding: 22px 22px 24px;
    }

    .car-body h3 {
      font-size: 19px;
      margin-bottom: 3px;
      font-weight: 700;
    }

    .car-body .seats {
      color: var(--orange-deep);
      font-weight: 600;
      font-size: 13.5px;
      margin-bottom: 12px;
    }

    .car-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .car-specs span {
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      background: var(--line-soft);
      border-radius: 7px;
      padding: 5px 10px;
    }

    @media(max-width:640px) {
      .fleet-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Destinations - image cards */
    .dest-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .trip {
      display: block;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r);
      overflow: hidden;
      box-shadow: var(--sh-sm);
      transition: transform .3s cubic-bezier(.2, .7, .3, 1), box-shadow .3s;
    }

    .trip:hover {
      transform: translateY(-7px);
      box-shadow: var(--sh-lg);
    }

    .trip-img {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
    }

    .trip-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }

    .trip:hover .trip-img img {
      transform: scale(1.05);
    }

    .trip-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(14, 24, 34, .82), rgba(14, 24, 34, .05) 55%);
    }

    .trip-tag {
      position: absolute;
      top: 13px;
      left: 13px;
      z-index: 2;
      background: rgba(255, 255, 255, .94);
      color: var(--navy);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 7px;
    }

    .trip-cap {
      position: absolute;
      left: 17px;
      right: 17px;
      bottom: 15px;
      z-index: 2;
      color: #fff;
    }

    .trip-cap h3 {
      color: #fff;
      font-size: 21px;
      font-weight: 700;
      letter-spacing: -.02em;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .trip-cap h3 .a {
      color: var(--orange);
    }

    .trip-cap .m {
      font-size: 13px;
      color: rgba(255, 255, 255, .85);
      font-weight: 500;
      margin-top: 3px;
    }

    .trip-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 18px;
      font-weight: 600;
      font-size: 14.5px;
      color: var(--navy);
    }

    .trip-foot .arr {
      color: var(--orange-deep);
      transition: transform .2s;
      font-size: 17px;
    }

    .trip:hover .trip-foot .arr {
      transform: translateX(4px);
    }

    .also {
      margin-top: 38px;
      text-align: center;
    }

    .also-label {
      font-size: 14.5px;
      color: var(--muted);
      margin-bottom: 18px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      justify-content: center;
    }

    .chip-loc {
      display: inline-flex;
      align-items: center;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--navy);
      box-shadow: var(--sh-sm);
      white-space: nowrap;
      transition: transform .2s ease, border-color .2s, background .2s, color .2s;
    }

    .chip-loc:hover {
      transform: translateY(-2px);
      border-color: var(--orange-line);
      background: var(--orange-soft);
      color: var(--orange-deep);
    }

    .chip-ask {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
    }

    .chip-ask:hover {
      background: var(--orange-deep);
      border-color: var(--orange-deep);
      color: #fff;
    }

    @media(max-width:900px) {
      .dest-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:560px) {
      .dest-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Why bento */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .why {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 26px 24px;
      box-shadow: var(--sh-sm);
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: transform .28s cubic-bezier(.2, .7, .3, 1), box-shadow .28s, border-color .28s;
    }

    .why:hover {
      transform: translateY(-5px);
      box-shadow: var(--sh-md);
      border-color: var(--orange-line);
    }

    .why-ico {
      flex-shrink: 0;
      width: 46px;
      height: 46px;
      border-radius: 13px;
      background: var(--orange-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .28s;
    }

    .why:hover .why-ico {
      background: var(--orange);
    }

    .why-ico svg {
      width: 23px;
      height: 23px;
      color: var(--orange-deep);
      transition: color .28s;
    }

    .why:hover .why-ico svg {
      color: #fff;
    }

    .why h3 {
      font-size: 16.5px;
      margin-bottom: 5px;
      font-weight: 700;
    }

    .why p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    @media(max-width:860px) {
      .why-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:520px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Steps */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
    }

    .steps::before {
      content: "";
      position: absolute;
      top: 193px;
      left: 17%;
      right: 17%;
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--orange-line) 0 10px, transparent 10px 20px);
      z-index: 0;
    }

    @media(max-width:820px) {
      .steps::before {
        display: none;
      }
    }

    .step {
      position: relative;
      z-index: 1;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r);
      box-shadow: var(--sh-sm);
      overflow: hidden;
      transition: transform .28s cubic-bezier(.2, .7, .3, 1), box-shadow .28s, border-color .28s;
    }

    .step:hover {
      transform: translateY(-5px);
      box-shadow: var(--sh-md);
      border-color: var(--orange-line);
    }

    .step-img {
      background: var(--surface);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 26px 22px 18px;
      min-height: 172px;
    }

    .step-img img {
      height: 118px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
    }

    .step-body {
      padding: 0 26px 28px;
      text-align: center;
    }

    .step .num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--fd);
      font-weight: 800;
      font-size: 14px;
      color: #fff;
      background: var(--orange);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      margin: -17px auto 14px;
      position: relative;
      box-shadow: 0 6px 16px -6px rgba(242, 88, 13, .6), 0 0 0 5px var(--surface);
    }

    .step h3 {
      font-size: 19px;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .step p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    @media(max-width:820px) {
      .steps {
        grid-template-columns: 1fr;
      }
    }

    /* CTA band */
    .cta-band {
      background-color: #071424;
      position: relative;
      overflow: hidden;
      padding: clamp(74px, 9vw, 124px) 0 250px;
    }

    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image: url(../cta-bg.jpg);
      background-image: image-set(url(../cta-bg.webp) type("image/webp"), url(../cta-bg.jpg) type("image/jpeg"));
      background-position: center calc(100% + 26px);
      background-size: 100% auto;
      background-repeat: no-repeat;
    }

    .cta-band::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 62%;
      z-index: 0;
      pointer-events: none;
      background: linear-gradient(to bottom, #071424 56%, rgba(7, 20, 36, .72) 84%, transparent);
    }

    @media(max-width:860px) {
      .cta-band {
        padding-bottom: 170px;
      }

      .cta-band::before {
        background-size: 150% auto;
        background-position: center calc(100% + 16px);
      }
    }

    @media(max-width:560px) {

      .cta-band::before {
        background-size: 190% auto;
      }
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }

    .cta-inner h2 {
      color: #fff;
      font-size: var(--h2);
      margin-bottom: 15px;
      letter-spacing: -.03em;
    }

    .cta-inner p {
      color: rgba(255, 255, 255, .75);
      font-size: 18px;
      margin-bottom: 30px;
    }

    .cta-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* FAQ */
    .faq-wrap {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq {
      border-bottom: 1px solid var(--line);
    }

    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      cursor: pointer;
      padding: 24px 0;
      font-family: var(--fd);
      font-weight: 600;
      font-size: 19px;
      color: var(--navy);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      letter-spacing: -.01em;
    }

    .faq-q .pl {
      color: var(--orange-deep);
      font-size: 26px;
      font-weight: 300;
      transition: transform .25s;
      flex-shrink: 0;
      line-height: 1;
    }

    .faq.open .faq-q .pl {
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }

    .faq-a p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      padding-bottom: 24px;
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .contact-art {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-art img {
      width: 100%;
      max-width: 540px;
      height: auto;
      display: block;
    }

    @media(max-width:820px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
      }
    }

    /* Footer */
    footer {
      background: var(--navy-deep);
      color: rgba(255, 255, 255, .72);
      padding: 56px 0 30px;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .foot-logo {
      background: #fff;
      border-radius: 14px;
      padding: 12px 16px;
      display: inline-block;
      margin-bottom: 16px;
    }

    .foot-logo img {
      height: 42px;
      width: auto;
      display: block;
    }

    footer p {
      font-size: 14.5px;
      line-height: 1.65;
      max-width: 38ch;
    }

    footer h4 {
      color: #fff;
      font-family: var(--fd);
      font-size: 16px;
      margin-bottom: 16px;
      font-weight: 600;
    }

    footer ul {
      list-style: none;
    }

    footer ul li {
      margin-bottom: 10px;
    }

    footer ul li a {
      font-size: 14.5px;
      color: rgba(255, 255, 255, .7);
      transition: color .2s;
    }

    footer ul li a:hover {
      color: var(--orange);
    }

    .foot-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 13.5px;
      color: rgba(255, 255, 255, .5);
    }

    @media(max-width:820px) {
      .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    /* sticky + fab */
    .sticky {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 70;
      display: none;
      gap: 10px;
      padding: 11px 14px;
      background: rgba(251, 244, 236, .97);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--line);
    }

    .sticky .btn {
      flex: 1;
      padding: 13px;
    }

    .fab {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 65;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--wa);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 28px -8px rgba(19, 30, 43, .5);
    }

    .fab svg {
      width: 31px;
      height: 31px;
      color: #fff;
    }

    @media(max-width:560px) {
      .sticky {
        display: flex;
      }

      .fab {
        display: none;
      }

      body {
        padding-bottom: 72px;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    @media(prefers-reduced-motion:reduce) {
      * {
        scroll-behavior: auto;
      }

      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .offer:hover,
      .car:hover,
      .dest:hover,
      .btn:hover {
        transform: none;
      }
    }

    /* type scales only below 768px — above that it stays at desktop size */
    @media(max-width:767px) {
      :root {
        --h2: clamp(36px, 6.4vw, 42px);
      }

      .hero h1 {
        font-size: clamp(42px, 9.4vw, 58px);
      }

      .hero-sub {
        font-size: clamp(16px, 2.5vw, 18.5px);
      }

      .sec-head p {
        font-size: clamp(14px, 2.4vw, 17.5px);
      }

      .stat .n {
        font-size: clamp(32px, 7vw, 42px);
      }

      .mq-item {
        font-size: clamp(14px, 2.4vw, 17px);
      }

      .cta-actions {
        gap: 8px;
      }

      .cta-inner p,
      .faq-q {
        font-size: 16px;
      }

      .contact-grid p {
        font-size: 16px !important;
      }

      .hero-trust .t,
      .hero-badge,
      .chip-loc {
        font-size: 10px;
      }

      footer ul li a,
      .foot-bottom,
      footer p {
        font-size: 12px;
      }

      .foot-logo img {
        height: 30px;
      }

    }

    /* compact UI below 768px */
    @media(max-width:767px) {

      /* buttons */
      .btn {
        font-size: 13.5px;
        padding: 11px 16px;
        border-radius: 11px;
        gap: 7px;
      }

      .btn svg {
        width: 16px;
        height: 16px;
      }

      .book-card .btn {
        font-size: 13.5px;
        padding: 12px 16px;
      }

      /* hero buttons stay on one line */
      .hero-cta {
        flex-wrap: nowrap;
        gap: 9px;
      }

      .hero-cta .btn {
        flex: 0 1 auto;
        min-width: 0;
      }

      /* no bottom CTA bar — the hero already has both buttons */
      .sticky {
        display: none;
      }

      .fab {
        display: flex;
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
      }

      .fab svg {
        width: 27px;
        height: 27px;
      }

      body {
        padding-bottom: 0;
      }

      /* smaller hamburger + drawer */
      .nav-toggle {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        gap: 4px;
      }

      .nav-toggle span {
        width: 16px;
      }

      .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
      }

      .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
      }

      .mobile-menu {
        width: min(280px, 82vw);
        padding: 20px 18px;
      }

      .mobile-menu>a {
        font-size: 14.5px;
        padding: 11px 12px;
        border-radius: 10px;
      }

      .mm-head {
        margin-bottom: 12px;
      }

      .mm-head img {
        height: 34px;
      }

      .mm-close {
        width: 32px;
        height: 32px;
        font-size: 19px;
      }

      .mm-actions {
        padding-top: 16px;
        gap: 8px;
      }

      /* header a touch tighter */
      .nav {
        padding: 10px 20px;
      }

      .brand-logo {
        height: 40px;
      }

      .nav-call {
        font-size: 13.5px;
      }

      .nav-call svg {
        width: 15px;
        height: 15px;
      }
    }
  
    /* on the dark CTA band the navy button would vanish — invert it there */
    .cta-band .btn-wa {
      background: #FFFFFF;
      color: var(--navy);
      box-shadow: 0 12px 28px -12px rgba(0, 0, 0, .55);
    }

    .cta-band .btn-wa:hover {
      background: #FFFFFF;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px -14px rgba(0, 0, 0, .6);
    }

/* ---------- route detail pages ---------- */
.route-hero{height:auto;min-height:0;padding:clamp(34px,5vw,58px) 0 clamp(40px,5vw,62px);
  display:block;background:var(--bg);}
.route-hero::before,.route-hero::after{display:none;}
.crumb{font-size:13.5px;color:var(--muted);margin-bottom:18px;}
.crumb a{color:var(--muted);border-bottom:1px solid transparent;transition:color .2s,border-color .2s;}
.crumb a:hover{color:var(--orange-deep);border-bottom-color:var(--orange-line);}
.crumb span{margin:0 7px;color:var(--muted-soft);}
.crumb strong{color:var(--navy);font-weight:600;}
.route-hero h1{font-size:clamp(34px,5vw,58px);max-width:20ch;margin-bottom:18px;}
.route-hero h1 .u{color:var(--orange);white-space:normal;}
.route-hero .hero-sub{max-width:64ch;margin-bottom:26px;}
.route-facts{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:30px;}
.route-facts > div{background:var(--surface);border:1px solid var(--line);border-radius:14px;
  padding:15px 17px;box-shadow:var(--sh-sm);display:flex;flex-direction:column;gap:4px;}
.rf-l{font-size:10.5px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--muted-soft);}
.rf-v{font-size:14.5px;font-weight:600;color:var(--navy);line-height:1.35;}
@media(max-width:860px){.route-facts{grid-template-columns:1fr 1fr;}}
@media(max-width:460px){.route-facts{grid-template-columns:1fr;}}

.band-white{background:var(--surface);border-block:1px solid var(--line);}
.prose{max-width:70ch;}
.prose p{color:var(--muted);font-size:17px;line-height:1.7;margin-bottom:16px;}
.prose p:last-child{margin-bottom:0;}
.prose-p{color:var(--muted);font-size:16.5px;line-height:1.7;margin-top:12px;max-width:56ch;}

.two-col{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(34px,5vw,64px);align-items:start;}
@media(max-width:900px){.two-col{grid-template-columns:1fr;}}
.tip-card,.fare-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);
  padding:26px 24px;box-shadow:var(--sh-sm);}
.tip-card{margin-bottom:18px;}
.tip-card h3,.fare-card h3{font-size:18.5px;margin-bottom:12px;}
.tip-list{list-style:none;display:flex;flex-direction:column;gap:11px;}
.tip-list li{position:relative;padding-left:24px;color:var(--muted);font-size:15px;line-height:1.6;}
.tip-list li::before{content:"";position:absolute;left:0;top:8px;width:8px;height:8px;border-radius:50%;
  background:var(--orange);opacity:.85;}
.fare-card{border-color:var(--orange-line);background:var(--orange-soft);}
.fare-card p{color:var(--muted);font-size:15px;line-height:1.65;margin-bottom:16px;}
.fare-card .btn{width:100%;}

.route-hero .hero-badge{margin-bottom:16px;}
.step-body{padding:26px 24px 28px;}
.route-hero + .band-white .sec-head p{max-width:60ch;}

/* header height fallback tracks the same breakpoint the header itself uses,
   so anchor offsets are right even before the script measures it */
@media(max-width:767px){
  :root{--header-h:61px;}
}

/* "See all round trips" — button styled, right aligned, with room above */
.dest-note.dest-note-cta{
  margin-top:38px;text-align:right;
}
.dest-note.dest-note-cta a{
  display:inline-flex;align-items:center;gap:9px;
  background:var(--navy);color:#fff;border:none;
  font-family:var(--fb);font-weight:600;font-size:15px;
  padding:13px 24px;border-radius:12px;
  box-shadow:0 10px 24px -10px rgba(19,30,43,.5);
  transition:transform .22s cubic-bezier(.2,.7,.3,1),box-shadow .22s ease,background .2s;
}
.dest-note.dest-note-cta a:hover{
  background:var(--navy-soft);transform:translateY(-2px);
  box-shadow:0 18px 34px -12px rgba(19,30,43,.55);
}
@media(max-width:560px){
  .dest-note.dest-note-cta{text-align:center;}
  .dest-note.dest-note-cta a{width:100%;justify-content:center;font-size:13.5px;padding:11px 16px;}
}
