:root{
    --navy-950:#0b1220;
    --navy-900:#0f1a2e;
    --navy-800:#152847;
    --paper:#edeee9;
    --paper-2:#e3e5dd;
    --rust:#D61F26;
    --rust-dark:#a8161d;
    --yellow:#e8b93e;
    --ink:#12161c;
    --steel:#5b6670;
    --steel-light:#8c96a1;
    --line-dark:rgba(255,255,255,0.14);
    --line-light:rgba(18,22,28,0.12);
    --radius:2px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    letter-spacing:0.02em;
    margin:0;
  }
  .mono{
    font-family:'IBM Plex Mono',monospace;
    letter-spacing:0.03em;
  }
  a{color:inherit;text-decoration:none;}
  img,svg{display:block;max-width:100%;}
  .wrap{
    max-width:1160px;
    margin:0 auto;
    padding:0 28px;
  }
  section{position:relative;}

  /* ---------- reveal on scroll ---------- */
  .reveal{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .7s ease, transform .7s ease;
  }
  .reveal.is-visible{opacity:1;transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1;transform:none;transition:none;}
    html{scroll-behavior:auto;}
  }

  /* ---------- manifest strip ---------- */
  .manifest-strip{
    background:var(--navy-950);
    color:var(--paper-2);
    font-size:11px;
    border-bottom:1px solid var(--line-dark);
  }
  .manifest-strip .wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 28px;
    gap:16px;
    flex-wrap:wrap;
  }
  .manifest-strip span{opacity:.85;}
  .manifest-strip .divider{opacity:.35;margin:0 10px;}
  .manifest-strip .call{color:var(--yellow);}
  .strip-link{color:var(--paper-2);text-decoration:none;transition:color .2s ease;}
  .strip-link:hover{color:var(--yellow);}

  /* ---------- nav ---------- */
  header.site{
    background:var(--navy-950);
    color:var(--paper);
    position:sticky;
    top:0;
    z-index:50;
  }
  nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 28px;
    max-width:1160px;
    margin:0 auto;
  }
  .logo{
    display:flex;
    align-items:baseline;
    gap:10px;
  }
  .logo-badge{
    display:inline-flex;
    align-items:center;
    background:#fff;
    border-radius:6px;
    padding:6px 12px;
  }
  .logo-badge img{
    height:34px;
    width:auto;
    display:block;
  }
  @media(min-width:640px){.logo-badge img{height:40px;}}
  .logo .mark{
    font-family:'Oswald',sans-serif;
    font-weight:700;
    font-size:20px;
    letter-spacing:0.03em;
    text-transform:uppercase;
  }
  .logo .mark .accent{color:var(--rust);}
  .logo .tag{
    font-size:10px;
    color:var(--steel-light);
    text-transform:uppercase;
    letter-spacing:0.12em;
    display:none;
  }
  @media(min-width:640px){.logo .tag{display:inline;}}
  .nav-links{
    display:none;
    gap:32px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:0.08em;
  }
  @media(min-width:860px){.nav-links{display:flex;}}
  .nav-links a{
    opacity:.8;
    transition:opacity .2s ease;
    padding:4px 0;
    border-bottom:1px solid transparent;
  }
  .nav-links a:hover{opacity:1;border-color:var(--rust);}
  .nav-cta{
    background:var(--rust);
    color:#fff;
    padding:10px 18px;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.06em;
    border-radius:var(--radius);
    transition:background .2s ease;
    white-space:nowrap;
  }
  .nav-cta:hover{background:var(--rust-dark);}

  /* ---------- hero ---------- */
  .hero{
    position:relative;
    background:var(--navy-950);
    color:var(--paper);
    padding:64px 0 0;
    overflow:hidden;
  }
  .hero-bg-slideshow{position:absolute;inset:0;z-index:0;}
  .hero-bg-layer{
    position:absolute;inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
  }
  .hero-bg-layer.layer-1{
    background-image:url('images/hero-bg-cars.jpg');
    animation:heroFade1 21s ease-in-out infinite;
  }
  .hero-bg-layer.layer-2{
    background-image:url('images/brand-splash.jpg');
    background-position:center 30%;
    animation:heroFade2 21s ease-in-out infinite;
  }
  .hero-bg-layer.layer-3{
    background-image:url('images/hero-bg-shipping.jpg');
    animation:heroFade3 21s ease-in-out infinite;
  }
  .hero::before{
    content:"";
    position:absolute;inset:0;z-index:1;
    background:
      radial-gradient(ellipse 900px 500px at 85% -10%, rgba(214,31,38,0.25), transparent 60%),
      linear-gradient(180deg, rgba(11,18,32,0.68), rgba(11,18,32,0.90));
  }
  .hero .wrap{position:relative;z-index:2;}
  @keyframes heroFade1{
    0%,4%{opacity:0;}
    10%,26%{opacity:0.6;}
    33%,100%{opacity:0;}
  }
  @keyframes heroFade2{
    0%,33%{opacity:0;}
    37%,43%{opacity:0;}
    43%,59%{opacity:0.6;}
    66%,100%{opacity:0;}
  }
  @keyframes heroFade3{
    0%,66%{opacity:0;}
    70%,76%{opacity:0;}
    76%,92%{opacity:0.6;}
    96%,100%{opacity:0;}
  }
  @media (prefers-reduced-motion: reduce){
    .hero-bg-layer{animation:none;}
    .hero-bg-layer.layer-1{opacity:0.6;}
    .hero-bg-layer.layer-2{opacity:0;}
    .hero-bg-layer.layer-3{opacity:0;}
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    align-items:center;
  }
  @media(min-width:920px){
    .hero-grid{grid-template-columns:1.1fr 0.9fr;gap:48px;}
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--yellow);
    border:1px solid rgba(232,185,62,0.4);
    padding:6px 12px;
    border-radius:100px;
    margin-bottom:22px;
  }
  .eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--yellow);}
  .hero h1{
    font-size:clamp(34px,5.4vw,58px);
    line-height:1.04;
    font-weight:700;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--rust);
  }
  .hero p.lede{
    margin-top:22px;
    font-size:17px;
    line-height:1.65;
    color:var(--paper-2);
    max-width:46ch;
  }
  .hero-ctas{
    margin-top:32px;
    display:flex;
    flex-wrap:wrap;
    gap:14px;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 24px;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.06em;
    border-radius:var(--radius);
    transition:transform .2s ease, background .2s ease, border-color .2s ease;
    cursor:pointer;
    border:1px solid transparent;
  }
  .btn-primary{background:var(--rust);color:#fff;}
  .btn-primary:hover{background:var(--rust-dark);transform:translateY(-2px);}
  .btn-ghost{border-color:rgba(237,238,233,0.35);color:var(--paper);}
  .btn-ghost:hover{border-color:var(--paper);transform:translateY(-2px);}

  .hero-founder{
    margin-top:34px;
    font-size:12px;
    color:var(--steel-light);
    display:flex;
    gap:10px;
    align-items:center;
  }
  .hero-founder .line{width:24px;height:1px;background:var(--steel-light);}

  /* route diagram */
  .route-card{
    background:var(--navy-900);
    border:1px solid var(--line-dark);
    border-radius:4px;
    padding:26px 22px 22px;
  }
  .route-card .rc-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
    font-family:'IBM Plex Mono',monospace;
    font-size:10.5px;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:var(--steel-light);
  }
  .route-card .rc-head .stamp-mini{
    color:var(--yellow);
    border:1px solid rgba(232,185,62,0.5);
    padding:3px 8px;
    border-radius:100px;
  }
  .route-svg text{
    font-family:'IBM Plex Mono',monospace;
    fill:var(--paper-2);
  }
  .route-dash{
    stroke-dasharray:6 7;
    animation:dashmove 2.2s linear infinite;
  }
  @keyframes dashmove{to{stroke-dashoffset:-52;}}
  @media (prefers-reduced-motion: reduce){.route-dash{animation:none;}}
  .rc-foot{
    margin-top:16px;
    display:flex;
    justify-content:space-between;
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    color:var(--steel-light);
    border-top:1px dashed var(--line-dark);
    padding-top:14px;
  }
  .rc-foot b{color:var(--paper);font-weight:600;}

  /* ---------- savings / stamp section ---------- */
  .savings{
    background:var(--paper);
    padding:88px 0;
  }
  .section-label{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.16em;
    color:var(--rust);
    margin-bottom:12px;
    display:block;
  }
  .savings h2{
    font-size:clamp(26px,3.4vw,38px);
    max-width:16ch;
    line-height:1.1;
  }
  .savings-grid{
    margin-top:44px;
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    border:1px solid var(--line-light);
    border-radius:4px;
    overflow:hidden;
    position:relative;
  }
  @media(min-width:760px){.savings-grid{grid-template-columns:1fr 1fr;}}
  .savings-col{
    padding:34px 30px;
    background:#fff;
  }
  .savings-col.away{
    background:var(--paper-2);
  }
  .savings-col .sc-label{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:var(--steel);
  }
  .savings-col .sc-price{
    font-family:'Oswald',sans-serif;
    font-size:38px;
    margin-top:10px;
    font-weight:600;
  }
  .savings-col.away .sc-price{
    color:var(--steel);
    text-decoration:line-through;
    text-decoration-color:var(--rust);
    text-decoration-thickness:2px;
  }
  .savings-col.direct .sc-price{color:var(--rust-dark);}
  .savings-col ul{
    list-style:none;
    padding:0;
    margin:18px 0 0;
    font-size:14px;
    color:var(--steel);
    line-height:1.9;
  }
  .savings-col ul li::before{
    content:"—";
    margin-right:8px;
    color:var(--rust);
  }
  .stamp{
    position:absolute;
    top:-18px;
    right:24px;
    width:118px;
    height:118px;
    border:2.5px solid var(--rust);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    transform:rotate(-14deg);
    color:var(--rust);
    font-family:'Oswald',sans-serif;
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.05em;
    text-transform:uppercase;
    line-height:1.3;
    background:var(--paper);
    padding:6px;
  }
  @media(max-width:759px){.stamp{position:static;transform:rotate(-4deg);margin:18px auto 0;}}

  /* ---------- inventory / categories ---------- */
  .inventory{padding:88px 0;background:var(--paper);border-top:1px solid var(--line-light);border-bottom:1px solid var(--line-light);}
  .inventory h2{font-size:clamp(26px,3.4vw,38px);max-width:22ch;}
  .inv-note{margin-top:14px;font-size:14px;color:var(--steel);max-width:60ch;}
  .inv-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }
  @media(max-width:359px){.inv-grid{grid-template-columns:1fr;gap:16px;}}
  @media(min-width:640px){.inv-grid{gap:18px;}}
  @media(min-width:1040px){.inv-grid{grid-template-columns:repeat(3,1fr);}}
  .inv-card{
    background:#fff;
    border:1px solid var(--line-light);
    border-radius:4px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:border-color .2s ease, transform .2s ease;
  }
  .inv-card:hover{border-color:var(--rust);transform:translateY(-3px);}
  .inv-visual{
    aspect-ratio:4/5;
    overflow:hidden;
    border-bottom:1px solid var(--line-light);
    background:var(--paper);
  }
  .inv-visual img{width:100%;height:100%;object-fit:cover;object-position:top;transition:transform .35s ease;}
  .inv-card:hover .inv-visual img{transform:scale(1.05);}
  .inv-visual svg{width:100%;height:100%;}
  .inv-body{padding:12px 12px 14px;display:flex;flex-direction:column;gap:4px;flex:1;}
  @media(min-width:640px){.inv-body{padding:20px 20px 24px;gap:6px;}}
  .inv-badge{
    font-family:'IBM Plex Mono',monospace;
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:var(--steel);
  }
  @media(min-width:640px){.inv-badge{font-size:10.5px;}}
  .inv-body h3{font-size:14px;font-weight:600;line-height:1.3;}
  @media(min-width:640px){.inv-body h3{font-size:20px;}}
  .inv-spec{
    font-size:10.5px;
    color:var(--rust);
    letter-spacing:0.05em;
  }
  .inv-price{
    font-family:'IBM Plex Mono',monospace;
    font-size:12px;
    font-weight:600;
    color:var(--rust-dark);
    display:flex;
    align-items:baseline;
    gap:5px;
    flex-wrap:wrap;
  }
  @media(min-width:640px){.inv-price{font-size:15px;gap:8px;}}
  .inv-was{
    font-size:9.5px;
    font-weight:400;
    color:var(--steel);
    text-decoration:line-through;
    text-decoration-color:var(--rust);
  }
  @media(min-width:640px){.inv-was{font-size:11.5px;}}
  .inv-body p{
    font-size:13.5px;
    color:var(--steel);
    line-height:1.7;
    margin:6px 0 4px;
    flex:1;
  }
  .inv-cta{
    font-size:10px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.03em;
    color:var(--rust-dark);
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:10px;
    transition:gap .2s ease;
  }
  .inv-cta:hover{gap:10px;}
  @media(min-width:640px){.inv-cta{font-size:12.5px;letter-spacing:0.04em;}}

  /* ---------- how it works ---------- */
  .how{
    background:var(--navy-950);
    color:var(--paper);
    padding:88px 0;
  }
  .how .section-label{color:var(--yellow);}
  .how h2{font-size:clamp(26px,3.4vw,38px);max-width:20ch;}
  .steps{
    margin-top:48px;
    display:grid;
    grid-template-columns:1fr;
    gap:1px;
    background:var(--line-dark);
    border:1px solid var(--line-dark);
  }
  @media(min-width:800px){.steps{grid-template-columns:repeat(4,1fr);}}
  .step{
    background:var(--navy-950);
    padding:30px 24px;
  }
  .step .num{
    font-family:'IBM Plex Mono',monospace;
    color:var(--rust);
    font-size:13px;
  }
  .step h3{
    margin-top:16px;
    font-size:18px;
    font-weight:600;
  }
  .step p{
    margin-top:10px;
    font-size:13.5px;
    color:var(--steel-light);
    line-height:1.7;
  }

  /* ---------- services ---------- */
  .services{padding:88px 0;background:var(--paper);}
  .services h2{font-size:clamp(26px,3.4vw,38px);max-width:18ch;}
  .service-grid{
    margin-top:44px;
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
  }
  @media(min-width:700px){.service-grid{grid-template-columns:1fr 1fr;}}
  .service-card{
    background:#fff;
    border:1px solid var(--line-light);
    padding:28px;
    border-radius:4px;
    transition:border-color .2s ease, transform .2s ease;
  }
  .service-card:hover{border-color:var(--rust);transform:translateY(-3px);}
  .service-card .icon{
    width:38px;height:38px;
    border-radius:50%;
    background:var(--paper-2);
    display:flex;align-items:center;justify-content:center;
    color:var(--rust);
    margin-bottom:16px;
  }
  .service-card h3{font-size:17px;font-weight:600;}
  .service-card p{font-size:14px;color:var(--steel);margin-top:8px;line-height:1.7;}

  /* ---------- why ---------- */
  .why{padding:88px 0;background:var(--navy-900);color:var(--paper);}
  .why-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
  }
  @media(min-width:900px){.why-grid{grid-template-columns:0.9fr 1.1fr;align-items:start;}}
  .why h2{font-size:clamp(26px,3.4vw,36px);max-width:16ch;}
  .why .section-label{color:var(--yellow);}
  .why-list{
    list-style:none;
    margin:0;padding:0;
    display:grid;
    gap:22px;
  }
  .why-list li{
    display:flex;
    gap:16px;
    border-bottom:1px solid var(--line-dark);
    padding-bottom:20px;
  }
  .why-list .n{
    font-family:'IBM Plex Mono',monospace;
    color:var(--rust);
    font-size:13px;
    flex-shrink:0;
  }
  .why-list h4{font-size:16px;font-weight:600;margin:0 0 6px;}
  .why-list p{margin:0;font-size:13.5px;color:var(--steel-light);line-height:1.7;}

  /* ---------- contact / cta band ---------- */
  .cta-band{
    background:var(--rust);
    color:#fff;
    padding:56px 0;
    text-align:center;
  }
  .cta-band h2{font-size:clamp(24px,3.6vw,34px);}
  .cta-band p{margin-top:12px;opacity:.92;font-size:15px;}
  .cta-band .btn-ghost{border-color:rgba(255,255,255,0.6);margin-top:26px;}
  .cta-band .btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,0.1);}

  /* ---------- contact form ---------- */
  .contact-form-section{padding:88px 0;background:var(--paper);border-top:1px solid var(--line-light);}
  .contact-form-section h2{font-size:clamp(26px,3.4vw,38px);}
  .cf-note{margin-top:14px;font-size:14px;color:var(--steel);max-width:60ch;}
  .cf-note a{color:var(--rust);font-weight:600;}
  .inquiry-form{
    margin-top:36px;
    max-width:640px;
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  .form-row{display:grid;grid-template-columns:1fr;gap:16px;}
  @media(min-width:560px){.form-row{grid-template-columns:1fr 1fr;}}
  .inquiry-form label{
    display:flex;flex-direction:column;gap:6px;
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;text-transform:uppercase;letter-spacing:0.08em;
    color:var(--steel);
  }
  .inquiry-form input,.inquiry-form textarea{
    font-family:'Inter',sans-serif;font-size:14px;
    padding:12px 14px;border-radius:2px;
    border:1px solid var(--line-light);background:#fff;color:var(--ink);
    resize:vertical;transition:border-color .2s ease;
  }
  .inquiry-form input:focus,.inquiry-form textarea:focus{outline:none;border-color:var(--rust);}
  .form-status{
    display:none;
    font-family:'IBM Plex Mono',monospace;font-size:12.5px;
    padding:12px 14px;border-radius:2px;margin-top:0;margin-bottom:18px;
    max-width:640px;
  }
  .form-status.success{color:var(--rust-dark);background:rgba(214,31,38,0.08);border:1px solid rgba(214,31,38,0.25);}
  .form-status.error{color:var(--rust-dark);background:rgba(214,31,38,0.08);border:1px solid rgba(214,31,38,0.25);}
  [data-fs-success][style*="block"],[data-fs-success].is-visible{display:block;}
  [data-fs-error][style*="block"],[data-fs-error].is-visible{display:block;}
  .field-error{
    display:block;font-family:'Inter',sans-serif;font-size:12px;
    color:var(--rust-dark);margin-top:4px;min-height:0;
  }
  .inquiry-form input[aria-invalid="true"],.inquiry-form textarea[aria-invalid="true"]{
    border-color:var(--rust);
  }

  footer{
    background:var(--navy-950);
    color:var(--steel-light);
    padding:56px 0 28px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:36px;
  }
  @media(min-width:760px){.footer-grid{grid-template-columns:1.3fr 1fr 1fr;}}
  .footer-grid .logo{margin-bottom:14px;}
  .footer-grid p{font-size:13.5px;line-height:1.8;max-width:34ch;}
  .footer-col h4{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.12em;
    color:var(--paper);
    margin-bottom:14px;
  }
  .footer-col a, .footer-col div{
    display:block;
    font-size:13.5px;
    margin-bottom:10px;
    color:var(--steel-light);
    transition:color .2s ease;
  }
  .footer-col a:hover{color:var(--yellow);}
  .footer-bottom{
    margin-top:44px;
    padding-top:22px;
    border-top:1px solid var(--line-dark);
    font-size:12px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
  }

  /* ---------- floating whatsapp ---------- */
  .whatsapp-float{
    position:fixed;
    bottom:22px;
    right:22px;
    background:#1fae5c;
    color:#fff;
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 20px rgba(0,0,0,0.3);
    z-index:60;
    transition:transform .2s ease;
  }
  .whatsapp-float:hover{transform:scale(1.07);}

  /* ---------- image lightbox ---------- */
  .inv-visual img{cursor:zoom-in;}
  .lightbox{
    position:fixed;inset:0;
    background:rgba(11,18,32,0.94);
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    z-index:300;
  }
  .lightbox.open{display:flex;}
  .lightbox img{
    max-width:90vw;
    max-height:88vh;
    border-radius:4px;
    box-shadow:0 20px 60px rgba(0,0,0,0.5);
    object-fit:contain;
  }
  .lightbox-close{
    position:absolute;
    top:18px;right:20px;
    width:42px;height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.25);
    color:var(--paper);
    font-size:26px;
    line-height:1;
    cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    transition:background .2s ease;
  }
  .lightbox-close:hover{background:rgba(255,255,255,0.2);}
