  :root{
    --navy:#14213D;
    --navy-deep:#0D1730;
    --parchment:#F5EFE0;
    --parchment-dim:#EDE4CE;
    --brass:#A9824C;
    --brass-light:#C7A876;
    --teal:#1C5D5E;
    --stamp:#9A3324;
    --ink:#26221C;
    --paper-line:rgba(38,34,28,0.18);
    --white:#FBF8F1;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--parchment);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces',serif;
    font-weight:600;
    letter-spacing:-0.01em;
    margin:0;
  }
  .mono{
    font-family:'JetBrains Mono',monospace;
    letter-spacing:0.02em;
  }
  a{color:inherit;}
  img{max-width:100%;display:block;}
  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  @media (max-width:640px){ .wrap{padding:0 20px;} }

  /* Perforated divider */
  .perf{
    position:relative;
    height:0;
    border-top:2px dashed rgba(38,34,28,0.28);
    margin:0;
  }
  .perf::before,.perf::after{
    content:"";
    position:absolute;
    top:-11px;
    width:22px;height:22px;
    border-radius:50%;
    background:var(--parchment);
    box-shadow:0 0 0 2px rgba(38,34,28,0.28) inset;
  }
  .perf::before{left:-11px;}
  .perf::after{right:-11px;}
  .perf.on-navy::before,.perf.on-navy::after{background:var(--navy);}

  /* Header */
  header{
    background:var(--navy);
    color:var(--white);
    position:sticky;
    top:0;
    z-index:50;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:'Fraunces',serif;
    font-weight:700;
    font-size:1.35rem;
    color:var(--white);
    text-decoration:none;
  }
  .logo img{
    height:38px;
    width:auto;
    background:var(--white);
    border-radius:6px;
    padding:2px 6px;
  }
  .logo .dot{color:var(--brass-light);}
  nav.primary-nav{
    display:flex;
    gap:30px;
    font-size:0.95rem;
  }
  nav.primary-nav a{
    text-decoration:none;
    color:rgba(251,248,241,0.82);
    transition:color .15s ease;
  }
  nav.primary-nav a:hover{color:var(--white);}
  .header-cta{
    background:var(--brass);
    color:var(--navy-deep);
    padding:10px 20px;
    border-radius:2px;
    font-weight:600;
    font-size:0.9rem;
    text-decoration:none;
    white-space:nowrap;
  }
  .header-cta:hover{background:var(--brass-light);}
  .care-bar{
    background:var(--navy-deep);
    color:rgba(251,248,241,0.82);
    font-size:0.82rem;
  }
  .care-bar .wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:7px 32px;
    gap:16px;
    flex-wrap:wrap;
  }
  .care-bar a{color:var(--brass-light);text-decoration:none;font-weight:600;}
  .care-bar a:hover{text-decoration:underline;}
  .care-bar .care-links{display:flex;gap:22px;flex-wrap:wrap;}
  .care-bar .care-tag{color:rgba(251,248,241,0.6);}
  .nav-toggle{display:none;background:none;border:none;color:var(--white);font-size:1.6rem;cursor:pointer;}
  @media (max-width:860px){
    nav.primary-nav{display:none;}
    .nav-toggle{display:block;}
  }

  /* HERO — boarding pass */
  .hero-section{
    background:var(--navy);
    color:var(--white);
    padding:64px 0 90px;
    position:relative;
    overflow:hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:56px;
    align-items:center;
  }
  @media (max-width:900px){ .hero-grid{grid-template-columns:1fr;gap:40px;} }
  .eyebrow-route{
    font-family:'JetBrains Mono',monospace;
    font-size:0.82rem;
    color:var(--brass-light);
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
  }
  .eyebrow-route .line{flex:0 0 40px;height:1px;background:var(--brass-light);opacity:0.6;}
  .hero-section h1{
    font-size:clamp(2.4rem,5vw,3.6rem);
    line-height:1.06;
    color:var(--white);
  }
  .hero-section h1 em{
    font-style:italic;
    color:var(--brass-light);
  }
  .hero-sub{
    margin-top:22px;
    font-size:1.08rem;
    line-height:1.6;
    color:rgba(251,248,241,0.78);
    max-width:46ch;
  }
  .hero-stats{
    display:flex;
    gap:34px;
    margin-top:36px;
  }
  .hero-stats div{border-left:1px solid rgba(255,255,255,0.2);padding-left:14px;}
  .hero-stats .num{font-family:'Fraunces',serif;font-size:1.6rem;font-weight:600;color:var(--white);}
  .hero-stats .label{font-size:0.82rem;color:rgba(251,248,241,0.62);margin-top:2px;}

  /* Boarding pass card */
  .boarding-pass{
    background:var(--white);
    color:var(--ink);
    border-radius:6px;
    box-shadow:0 30px 60px -20px rgba(0,0,0,0.5);
    overflow:hidden;
    position:relative;
  }
  .bp-top{
    padding:24px 26px 18px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    border-bottom:1px dashed rgba(38,34,28,0.25);
  }
  .bp-top .bp-brand{font-family:'Fraunces',serif;font-weight:700;font-size:1.05rem;display:flex;align-items:center;gap:8px;}
  .bp-top .bp-brand img{height:22px;width:auto;}
  .bp-top .bp-brand span{color:var(--brass);}
  .bp-code{font-family:'JetBrains Mono',monospace;font-size:0.78rem;color:var(--ink);opacity:0.55;}
  .tabs{
    display:flex;
    flex-wrap:wrap;
    gap:0;
    padding:16px 20px 0;
    border-bottom:1px solid var(--paper-line);
  }
  .tab-btn{
    appearance:none;
    background:none;
    border:none;
    padding:10px 14px 12px;
    font-family:'Inter',sans-serif;
    font-size:0.86rem;
    font-weight:600;
    color:rgba(38,34,28,0.5);
    cursor:pointer;
    border-bottom:2px solid transparent;
    margin-bottom:-1px;
  }
  .tab-btn.active{
    color:var(--navy);
    border-bottom:2px solid var(--brass);
  }
  .bp-form{padding:22px 26px 26px;}
  .field-row{display:flex;gap:12px;margin-bottom:12px;}
  .field-row.stack{flex-direction:column;}
  @media (max-width:480px){ .field-row{flex-direction:column;} }
  .field{flex:1;display:flex;flex-direction:column;gap:5px;}
  .field label{
    font-size:0.72rem;
    text-transform:uppercase;
    letter-spacing:0.04em;
    color:rgba(38,34,28,0.5);
    font-weight:600;
  }
  .field input, .field select{
    border:1px solid rgba(38,34,28,0.22);
    border-radius:3px;
    padding:10px 12px;
    font-family:'Inter',sans-serif;
    font-size:0.92rem;
    color:var(--ink);
    background:var(--white);
  }
  .field input:focus, .field select:focus, button:focus-visible, a:focus-visible{
    outline:2px solid var(--teal);
    outline-offset:2px;
  }
  .submit-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:16px;
    gap:16px;
  }
  .submit-row .note{font-size:0.78rem;color:rgba(38,34,28,0.5);}
  .btn-primary{
    background:var(--navy);
    color:var(--white);
    border:none;
    padding:13px 24px;
    border-radius:3px;
    font-weight:600;
    font-size:0.92rem;
    cursor:pointer;
    white-space:nowrap;
  }
  .btn-primary:hover{background:var(--navy-deep);}
  .perf-mini{
    height:0;border-top:1px dashed rgba(38,34,28,0.25);
    position:relative;margin:0 -2px;
  }
  .perf-mini::before,.perf-mini::after{
    content:"";position:absolute;top:-7px;width:14px;height:14px;border-radius:50%;
    background:var(--parchment);
  }
  .perf-mini::before{left:-9px;} .perf-mini::after{right:-9px;}

  /* Route / services section */
  .services-section{padding:96px 0 92px;background:var(--parchment);}
  .section-head{max-width:60ch;margin-bottom:56px;}
  .section-kicker{
    font-family:'JetBrains Mono',monospace;
    font-size:0.8rem;
    color:var(--teal);
    margin-bottom:10px;
  }
  .section-head h2{font-size:clamp(1.8rem,3.4vw,2.4rem);line-height:1.15;}

  .route-map{position:relative;padding-top:8px;}
  .route-line-svg{
    position:absolute;
    top:34px;
    left:0;
    width:100%;
    height:6px;
    z-index:0;
  }
  .route-path{
    stroke:var(--brass);
    stroke-width:2;
    fill:none;
    stroke-dasharray:2000;
    stroke-dashoffset:2000;
    animation:draw 2.2s ease forwards 0.3s;
  }
  @keyframes draw{ to{stroke-dashoffset:0;} }
  @media (prefers-reduced-motion:reduce){
    .route-path{animation:none;stroke-dashoffset:0;}
  }
  .stops{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:18px;
  }
  @media (max-width:1040px){ .stops{grid-template-columns:repeat(4,1fr);} }
  @media (max-width:600px){ .stops{grid-template-columns:repeat(2,1fr);} }
  .stop{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
  }
  .stop-dot{
    width:14px;height:14px;border-radius:50%;
    background:var(--navy);
    border:3px solid var(--parchment);
    box-shadow:0 0 0 2px var(--brass);
    margin-bottom:16px;
  }
  .stop h3{font-size:1.05rem;margin-bottom:8px;}
  .stop p{font-size:0.88rem;line-height:1.5;color:rgba(38,34,28,0.68);margin:0 0 12px;}
  .stop-link{
    font-size:0.82rem;
    font-weight:600;
    color:var(--navy);
    text-decoration:none;
    border-bottom:1px solid var(--brass);
    padding-bottom:1px;
  }

  /* Trust strip */
  .trust-strip{
    background:var(--navy);
    color:var(--white);
    padding:52px 0;
  }
  .trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:28px;
  }
  @media (max-width:980px){ .trust-grid{grid-template-columns:repeat(3,1fr);} }
  @media (max-width:600px){ .trust-grid{grid-template-columns:repeat(2,1fr);} }
  .trust-item .num{font-family:'Fraunces',serif;font-size:2.1rem;font-weight:600;color:var(--brass-light);}
  .trust-item .label{font-size:0.86rem;color:rgba(251,248,241,0.72);margin-top:4px;}

  /* Destinations - ticket strip */
  .destinations-section{padding:96px 0;background:var(--parchment);}
  .ticket-strip{
    display:flex;
    gap:20px;
    overflow-x:auto;
    padding-bottom:14px;
    scroll-snap-type:x proximity;
  }
  .ticket-strip::-webkit-scrollbar{height:6px;}
  .ticket-strip::-webkit-scrollbar-thumb{background:var(--brass-light);border-radius:4px;}
  .dest-ticket{
    scroll-snap-align:start;
    flex:0 0 280px;
    background:var(--white);
    border-radius:5px;
    overflow:hidden;
    box-shadow:0 12px 30px -14px rgba(20,33,61,0.35);
    position:relative;
  }
  .dest-img{
    height:170px;
    background-size:cover;
    background-position:center;
  }
  .dest-body{padding:16px 18px 18px;}
  .dest-route{
    font-family:'JetBrains Mono',monospace;
    font-size:0.72rem;
    color:var(--teal);
    margin-bottom:6px;
  }
  .dest-body h3{font-size:1.08rem;margin-bottom:4px;}
  .dest-body p{font-size:0.84rem;color:rgba(38,34,28,0.62);margin:0;}
  .dest-stub{
    position:absolute;
    top:0;right:0;
    background:var(--brass);
    color:var(--navy-deep);
    font-family:'JetBrains Mono',monospace;
    font-size:0.7rem;
    font-weight:700;
    padding:5px 10px;
    border-bottom-left-radius:5px;
  }

  /* Testimonials - postcards */
  .testimonials-section{padding:92px 0;background:var(--parchment-dim);}
  .postcards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
  }
  @media (max-width:860px){ .postcards{grid-template-columns:1fr;} }
  .postcard{
    background:var(--white);
    border:1px solid rgba(38,34,28,0.14);
    padding:26px 24px;
    position:relative;
  }
  .stamp{
    position:absolute;
    top:20px;right:22px;
    width:52px;height:52px;
    border:2px solid var(--stamp);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:rotate(-9deg);
    color:var(--stamp);
    font-family:'JetBrains Mono',monospace;
    font-size:0.58rem;
    font-weight:700;
    text-align:center;
    line-height:1.15;
    opacity:0.85;
  }
  .postcard p.quote{
    font-family:'Fraunces',serif;
    font-style:italic;
    font-size:1.02rem;
    line-height:1.5;
    margin:0 0 18px;
    padding-right:50px;
  }
  .postcard .who{font-size:0.85rem;font-weight:600;color:var(--navy);}
  .postcard .where{font-size:0.78rem;color:rgba(38,34,28,0.55);}

  /* Process steps */
  .process-section{padding:92px 0;background:var(--parchment);}
  .steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  @media (max-width:860px){ .steps{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:520px){ .steps{grid-template-columns:1fr;} }
  .step{border-top:2px solid var(--brass);padding-top:16px;}
  .step .step-num{font-family:'JetBrains Mono',monospace;font-size:0.8rem;color:var(--teal);margin-bottom:10px;}
  .step h3{font-size:1.02rem;margin-bottom:8px;}
  .step p{font-size:0.86rem;line-height:1.55;color:rgba(38,34,28,0.65);margin:0;}

  /* Contact - ticket stub */
  .contact-section{padding:100px 0 40px;background:var(--navy);color:var(--white);}
  .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    background:var(--white);
    color:var(--ink);
    border-radius:6px;
    overflow:hidden;
  }
  @media (max-width:860px){ .contact-grid{grid-template-columns:1fr;} }
  .contact-info{
    padding:44px 40px;
    background:var(--parchment-dim);
  }
  .contact-info h2{font-size:1.7rem;margin-bottom:16px;}
  .contact-info p{font-size:0.95rem;line-height:1.6;color:rgba(38,34,28,0.7);margin-bottom:26px;}
  .contact-line{
    display:flex;gap:10px;align-items:baseline;
    font-size:0.92rem;margin-bottom:12px;
  }
  .contact-line .k{font-weight:600;min-width:80px;color:var(--navy);}
  .contact-tear{
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
  }
  @media (min-width:861px){
    .contact-tear::before{
      content:"";
      position:absolute;left:0;top:0;bottom:0;
      border-left:2px dashed rgba(38,34,28,0.25);
    }
  }
  .contact-form{padding:44px 40px;width:100%;}
  .contact-form h3{font-size:1.15rem;margin-bottom:18px;}
  .contact-form .field{margin-bottom:14px;}
  .contact-form textarea{
    border:1px solid rgba(38,34,28,0.22);
    border-radius:3px;
    padding:10px 12px;
    font-family:'Inter',sans-serif;
    font-size:0.92rem;
    min-height:90px;
    resize:vertical;
  }

  footer{
    background:var(--navy);
    color:rgba(251,248,241,0.6);
    padding:34px 0 40px;
    font-size:0.82rem;
  }
  .footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:24px;
  }
  .footer-links{display:flex;gap:20px;}
  .footer-links a{text-decoration:none;color:rgba(251,248,241,0.6);}
  .footer-links a:hover{color:var(--white);}

  .whatsapp-fab{
    position:fixed;
    bottom:24px;right:24px;
    width:56px;height:56px;
    border-radius:50%;
    background:#1C5D5E;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 26px rgba(20,33,61,0.4);
    z-index:60;
    text-decoration:none;
    color:var(--white);
  }
  .whatsapp-fab svg{width:26px;height:26px;}

  .hero-banner{
    width:100%;
    line-height:0;
    background:var(--navy);
  }
  .hero-banner img{
    width:100%;
    height:auto;
    max-height:560px;
    object-fit:cover;
    display:block;
  }

  .visually-hidden{
    position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
    clip:rect(0,0,0,0);white-space:nowrap;border:0;
  }

  /* Taxi highlight band */
  .taxi-highlight{
    background:var(--navy);
    color:var(--white);
    padding:72px 0;
  }
  .taxi-highlight-grid{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:52px;
    align-items:start;
  }
  @media (max-width:900px){ .taxi-highlight-grid{grid-template-columns:1fr;} }
  .taxi-highlight-copy h2{
    font-size:clamp(1.8rem,3.4vw,2.5rem);
    line-height:1.15;
    margin:12px 0 18px;
  }
  .taxi-highlight-copy p{
    font-size:1rem;
    line-height:1.6;
    color:rgba(251,248,241,0.78);
    max-width:52ch;
    margin:0 0 22px;
  }
  .taxi-highlight-list{
    list-style:none;
    margin:0 0 28px;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:12px;
    max-width:50ch;
  }
  .taxi-highlight-list li{
    position:relative;
    padding-left:22px;
    font-size:0.92rem;
    color:rgba(251,248,241,0.86);
    line-height:1.5;
  }
  .taxi-highlight-list li::before{
    content:"";
    position:absolute;
    left:0;top:7px;
    width:9px;height:9px;
    border-radius:50%;
    background:var(--brass-light);
  }
  .taxi-highlight-ctas{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
  }
  .taxi-highlight-ctas .btn-primary{
    background:var(--brass);
    color:var(--navy-deep);
  }
  .taxi-highlight-ctas .btn-primary:hover{background:var(--brass-light);}
  .taxi-highlight-call{
    color:var(--white);
    text-decoration:none;
    font-weight:600;
    font-size:0.95rem;
    border-bottom:1px solid rgba(251,248,241,0.4);
    padding-bottom:2px;
  }
  .taxi-highlight-card{
    background:var(--white);
    color:var(--ink);
    border-radius:6px;
    padding:26px 26px 28px;
    box-shadow:0 24px 50px -18px rgba(0,0,0,0.5);
  }
  .service-badge{
    display:inline-block;
    background:var(--brass);
    color:var(--navy-deep);
    font-size:0.68rem;
    font-weight:700;
    padding:3px 8px;
    border-radius:2px;
    margin-bottom:8px;
  }

  /* FAQ accordion (ticket-style) */
  .faq-list{
    display:flex;
    flex-direction:column;
  }
  .faq-item{
    border-bottom:1px dashed rgba(38,34,28,0.25);
    padding:18px 0;
  }
  .faq-item:first-child{border-top:1px dashed rgba(38,34,28,0.25);}
  .faq-item summary{
    cursor:pointer;
    font-family:'Fraunces',serif;
    font-weight:600;
    font-size:1.02rem;
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
  }
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary::after{
    content:"+";
    font-family:'Inter',sans-serif;
    font-size:1.3rem;
    color:var(--brass);
    flex-shrink:0;
  }
  .faq-item[open] summary::after{content:"–";}
  .faq-item p{
    margin:12px 0 0;
    font-size:0.92rem;
    line-height:1.6;
    color:rgba(38,34,28,0.7);
    max-width:70ch;
  }

  /* Simple page hero (non-boarding-pass pages) */
  .page-hero{
    background:var(--navy);
    color:var(--white);
    padding:56px 0 0;
  }
  .breadcrumb{
    font-family:'JetBrains Mono',monospace;
    font-size:0.78rem;
    color:rgba(251,248,241,0.55);
    margin-bottom:18px;
  }
  .breadcrumb a{color:var(--brass-light);text-decoration:none;}
