/*
 * VaultPac marketing site.
 *
 * Lifted out of index.html so the site can have more than one page without
 * three copies of it drifting apart. Any page that links this gets the nav,
 * the buttons and the modal for nothing.
 */
    /* ===== A2 — LIGHT MODE (split-screen, brand logo, icon flow) ===== */
    :root {
      --bg: #ffffff; --surface: #f5f6f0; --surface-2: #eef0e7; --ink: #14160f; --muted: #646857;
      /* --green-text is the accent as *text*; the fill value --green is 1.6:1
         on white and cannot be read. It was #6F8512, which is 4.17:1 on the
         page and 3.62:1 on --surface-2 — under AA at the 12px every eyebrow
         uses it at. #5F730F clears 4.6:1 on the darkest of the three grounds
         and is the same hue, so nothing about the hierarchy moves. */
      --nav-h: 92px; --line: rgba(20,22,15,0.11); --green: #a8c520; --green-text: #5f730f; --green-bright: #bcd435; --ink-on-green: #14160f; --max: 1180px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    /* Anchors must clear the fixed header, or every in-page link lands with
       its heading hidden underneath it. */
    html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
    body { background: var(--bg); color: var(--ink); font-family: 'Montserrat', system-ui, sans-serif; font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    h1,h2,h3 { font-family: 'Kanit', sans-serif; font-weight: 700; line-height: 1.02; letter-spacing: -0.01em; }
    a { color: inherit; text-decoration: none; }
    .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
    .eyebrow { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-text); font-weight: 700; margin-bottom: 18px; }

    .btn { display: inline-block; padding: 15px 32px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; cursor: pointer; border: 1.5px solid var(--ink); border-radius: 3px; background: transparent; color: var(--ink); transition: all 0.2s; }
    .btn:hover { background: var(--ink); color: #fff; }
    .btn-solid { background: var(--green); border-color: var(--green); color: var(--ink-on-green); }
    .btn-solid:hover { background: var(--green-bright); border-color: var(--green-bright); transform: translateY(-1px); }

    /* ---- Brand logo lockup ---- */
    .brand { display: flex; align-items: center; gap: 11px; }
    .brand .logo { width: 38px; height: 38px; border: 2px solid var(--green); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
    .brand .logo svg { width: 21px; height: 21px; }
    .brand .txt { display: flex; flex-direction: column; line-height: 1.02; }
    .brand .name { font-family: 'Kanit', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: 0.01em; }
    .brand .name b { color: var(--green-text); font-weight: 800; }
    .brand .sub { font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 1px; }

    /* ---- 2026 logo lockup ----
       The logo is a transparent PNG with black type, so it belongs on the
       white nav and nowhere near the dark footer, which keeps the typographic
       wordmark below. `height` is the constraint and `width:auto` follows it,
       so the 3:1 artwork never stretches; the explicit width/height attributes
       on the tag reserve the space and stop the nav reflowing as it loads. */
    /* ---- Brand lockup: image above, descriptor centred under all of it ----
       A column. The descriptor centres on the complete image — icon, divider
       and wordmark — rather than on the wordmark alone, which is what a
       side-by-side arrangement gives you.

       The container is the mechanism: `width` is set once here, the image
       fills it, and the descriptor is 100% of the same container. The two
       share a centre by construction, so nothing has to be nudged when the
       artwork or the wording changes.

       `white-space: nowrap` keeps the descriptor on one line. If it is ever
       wider than the mark it will still be centred on it, because it is
       centred within a box of the mark's width. */
    .brand { flex: 0 0 auto; }
    .brand-lockup {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      width: 196px;
      text-decoration: none;
    }
    .brand-lockup img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
    }
    /* Edge to edge, not merely centred. `space-between` puts the first and
       last characters on the container's own edges, so the descriptor is
       exactly as wide as the image above it — which is what the mark's
       proportions actually ask for. Any leftover space is distributed between
       the characters rather than dumped into the word gaps. */
    .brand-descriptor {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: 8px;
      text-transform: uppercase;
      font-weight: 700;
      line-height: 1;
      color: var(--muted);
      white-space: nowrap;
    }
    .brand-descriptor > span { flex: 0 0 auto; }
    /* A space still needs to read as a word break once the letters are spread. */
    .brand-descriptor > span.sp { width: 0.22em; }

    /* Narrower viewports get a narrower lockup; the descriptor tracks it,
       because both are sized from the container rather than independently. */
    @media (max-width: 1100px) { .brand-lockup { width: 176px; } .brand-descriptor { font-size: 7.5px; } }
    @media (max-width: 560px)  { .brand-lockup { width: 158px; } .brand-descriptor { font-size: 7px; } }
    @media (max-width: 380px)  { .brand-lockup { width: 140px; } .brand-descriptor { font-size: 6px; } }

    nav { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); padding: 14px 24px; background: rgba(255,255,255,0.88); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
    nav .links { display: flex; gap: 28px; align-items: center; flex-wrap: nowrap; }
    /* A compressed flex item wraps its own label, which makes the header two
       rows tall without anything having overflowed. Measured: the row was
       fitting on width and still wrapping from 870 to 940. */
    nav .links > a { white-space: nowrap; }
    nav .links a:not(.btn) { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; transition: color 0.2s; }
    nav .links a:not(.btn):hover { color: var(--ink); }
    nav .links .btn { padding: 11px 22px; }
    /* The direct-child combinator matters. Without it this hid every anchor in
       the nav, and the Book panel lives inside the nav — so on a phone the menu
       opened to its heading and six invisible items.

       820, not 760: with six links the row stopped fitting at about 790 and
       wrapped to a two-line nav, which pushed the header taller than --nav-h
       and put nine pixels of every page underneath it. Hiding the links before
       they wrap is the fix; raising --nav-h would have made every page start
       lower to accommodate a state that should not exist. */
    /* Tighter at mid widths, where the row is closest to not fitting. This
       must come after the base rule above: same specificity, so source order
       is what decides, and the first attempt sat before it and lost. */
    @media (max-width: 1300px) { nav .links { gap: 13px; } nav .links a:not(.btn) { font-size: 11px; } }
    @media (max-width: 1100px) { nav .links { gap: 12px; } }
    /* 1000, measured rather than guessed. With the full masters in the header
       the mark is 181px at this size, and the luggage row — five links plus
       the cross-brand link plus the Book button — needs 978px to sit beside
       it. Links appearing at 951 left a 30px band where they did not fit. */
    @media (max-width: 1040px) { nav .links > a:not(.btn) { display: none; } }

    /* ---- Split hero ---- */
    .hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
    .hero-left { display: flex; align-items: center; padding: 120px 5vw 80px clamp(24px, 8vw, 110px); }
    .hero-left .inner { max-width: 520px; }
    .hero h1 { font-size: clamp(50px, 6.5vw, 94px); font-weight: 900; }
    .hero h1 .line2 { display: block; color: var(--green-text); font-size: clamp(22px, 2.6vw, 38px); font-weight: 800; margin-top: 8px; letter-spacing: 0; }
    .hero p.lead { font-size: 18px; color: var(--muted); margin: 28px 0 36px; }
    .hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero .near { margin-top: 30px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-text); font-weight: 700; }
    .hero .near::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--green); vertical-align: middle; margin-right: 12px; }
    .hero-right { position: relative; background: var(--surface-2); overflow: hidden; }
    .hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
    .hero-right .ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; padding: 24px; z-index: 2; pointer-events: none; }
    .hero-right .ph .ph-mark { font-family: 'Kanit', sans-serif; font-weight: 900; font-size: 46px; color: #ffffff; letter-spacing: 0.04em; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
    .hero-right .ph .ph-mark b { color: #ffffff; }
    @media (max-width: 860px) { .hero { grid-template-columns: 1fr; } .hero-right { min-height: 56vh; order: -1; } .hero-left { padding-top: 90px; } }

    section { padding: 100px 0; border-top: 1px solid var(--line); }
    .alt { background: var(--surface); }
    .section-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
    .section-head h2 { font-size: clamp(36px, 5.2vw, 58px); }
    .section-head p { color: var(--muted); margin-top: 16px; font-size: 17px; }

    .question { background: var(--green); text-align: center; }
    .question .eyebrow { color: rgba(20,22,15,0.6); }
    .question h2 { font-size: clamp(30px, 4.6vw, 50px); max-width: 860px; margin: 0 auto 12px; color: var(--ink-on-green); }
    .question p { color: rgba(20,22,15,0.72); max-width: 560px; margin: 0 auto; font-weight: 500; }
    .question .pills { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
    .pill { padding: 13px 26px; border: 1.5px solid var(--ink); border-radius: 40px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--ink); cursor: pointer; transition: all 0.2s; }
    .pill:hover { background: var(--ink); color: var(--green); }

    /* services */
    .svc-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: start; }
    .svc-grid .svc-title { position: sticky; top: 100px; }
    .svc-grid .svc-title h2 { font-size: clamp(32px, 4.4vw, 52px); }
    .svc-grid .svc-title p { color: var(--muted); margin-top: 16px; }
    .cards { display: grid; gap: 18px; }
    .card { background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 34px 38px; transition: all 0.2s; box-shadow: 0 1px 2px rgba(20,22,15,0.04); }
    .card:hover { border-color: var(--green); box-shadow: 0 14px 32px rgba(20,22,15,0.08); }
    .card .tag { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-text); font-weight: 700; margin-bottom: 10px; display: block; }
    .card h3 { font-size: 26px; margin-bottom: 16px; }
    .card ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
    .card li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; font-weight: 500; }
    .card li::before { content: '—'; color: var(--green-text); margin-right: 10px; }
    @media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr; gap: 30px; } .svc-grid .svc-title { position: static; } .card ul { grid-template-columns: 1fr; } }

    /* three main services */
    .svc3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .svc3 .card { display: flex; flex-direction: column; }
    .svc3 .card .ic { font-size: 34px; line-height: 1; margin-bottom: 16px; }
    .svc3 .card h3 { font-size: 23px; margin-bottom: 8px; }
    .svc3 .card .lead-sm { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
    .svc3 .card ul { list-style: none; display: block; }
    .svc3 .card li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; font-weight: 500; }
    .svc3 .card li:last-child { border-bottom: none; }
    .svc3 .card li::before { content: '—'; color: var(--green-text); margin-right: 10px; }
    @media (max-width: 860px) { .svc3 { grid-template-columns: 1fr; } }

    /* five services — flex wrap centers the orphan row (3 + 2) */
    .svc5 { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
    .svc5 .card { flex: 1 1 300px; max-width: 345px; display: flex; flex-direction: column; }
    .svc5 .card .ic { font-size: 34px; line-height: 1; margin-bottom: 14px; }
    .svc5 .card h3 { font-size: 22px; margin-bottom: 8px; }
    .svc5 .card .lead-sm { color: var(--muted); font-size: 14.5px; margin: 0; }
    @media (max-width: 600px) { .svc5 .card { flex-basis: 100%; max-width: 100%; } }

    /* Service categories + featured signature service */
    .svc-cat { margin-top: 60px; }
    .cat-head { text-align: center; margin-bottom: 28px; }
    .cat-head .eyebrow { margin-bottom: 8px; }
    .cat-head p { color: var(--muted); font-size: 15px; max-width: 560px; margin: 0 auto; }
    .featured { border-radius: 14px; padding: 48px clamp(28px, 5vw, 64px); margin-bottom: 8px; border: 1px solid rgba(188,212,53,0.25); background: linear-gradient(135deg, #1b1e15 0%, #14160f 100%); }
    .featured .eyebrow { color: var(--green-bright); }
    .featured h3 { font-size: clamp(28px, 4vw, 40px); margin: 6px 0 16px; color: #fff; }
    .featured p { color: #d7dccb; font-size: 16.5px; max-width: 640px; line-height: 1.6; margin: 0; }
    .feat-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 28px; margin: 22px 0 28px; max-width: 640px; }
    .feat-list li { padding: 6px 0; font-size: 14.5px; color: #eef1e6; font-weight: 500; }
    .feat-list li::before { content: '✓'; color: var(--green-bright); font-weight: 800; margin-right: 10px; }
    .feat-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
    .feat-note { font-size: 13px; color: #aab199; letter-spacing: .03em; }
    @media (max-width: 600px) { .feat-list { grid-template-columns: 1fr; } }

    /* transportation options */
    .trans-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 780px; margin: 0 auto; }
    .trans-item { padding: 12px 22px; border: 1.5px solid var(--line); border-radius: 40px; font-size: 14px; font-weight: 600; color: var(--ink); background: var(--bg); }
    .trans-item::before { content: '•'; color: var(--green-text); font-weight: 700; margin-right: 9px; }
    .trans-cta { text-align: center; margin-top: 36px; }

    /* Coming Soon badge + anchor offsets */
    .badge { display: inline-block; background: var(--green); color: var(--ink-on-green); font-family: 'Kanit', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 15px; border-radius: 30px; margin-bottom: 16px; }
    section[id], .card[id] { scroll-margin-top: 84px; }

    /* contact */
    .contact { background: var(--ink); color: #e7e9df; text-align: center; }
    .contact .eyebrow { color: var(--green-bright); }
    .contact h2 { font-size: clamp(32px, 5vw, 52px); color: #fff; }
    .contact p { color: #b8bcae; margin: 14px auto 30px; font-size: 16px; max-width: 540px; }
    .contact .c-info { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 30px; color: #cfd2c6; font-size: 14px; }
    .contact .c-info a { color: var(--green-bright); }


    /* trust bar */
    .trust { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); }
    .t-item { display: flex; gap: 12px; align-items: center; }
    .t-item svg { width: 26px; height: 26px; color: var(--green-text); flex: none; }
    .t-item strong { display: block; font-family: 'Kanit', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
    .t-item span { font-size: 12.5px; color: var(--muted); }

    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .about h2 { font-size: clamp(32px, 4.5vw, 50px); margin-bottom: 22px; }
    .about p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
    .about .seal { border: 1px solid var(--line); border-radius: 6px; padding: 36px; background: var(--bg); }
    .about .seal .k { font-family: 'Kanit', sans-serif; font-weight: 700; font-size: 24px; color: var(--ink); }
    .about .seal .v { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
    .about .seal .divider { height: 1px; background: var(--line); margin: 20px 0; }
    @media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; gap: 34px; } }

    .form-card { max-width: 720px; margin: 0 auto; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 46px; box-shadow: 0 18px 50px rgba(20,22,15,0.08); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .field { margin-bottom: 18px; } .field.full { grid-column: 1/-1; }
    label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
    input, select, textarea { width: 100%; padding: 13px 15px; background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: 6px; font-family: 'Montserrat', sans-serif; font-size: 15px; transition: border-color 0.2s; }
    input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); }
    textarea { resize: vertical; min-height: 90px; }
    select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236f8512' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
    .form-card .btn-solid { width: 100%; margin-top: 8px; padding: 17px; }
    .form-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 18px; }
    .form-msg { text-align: center; margin-top: 18px; font-size: 14px; min-height: 20px; font-weight: 600; }
    .form-msg.ok { color: var(--green-text); } .form-msg.err { color: #c0492f; }
    @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 30px 22px; } }

    /* ---- 3-step wizard ---- */
    .wiz { max-width: 640px; margin: 0 auto; background: var(--bg); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 50px rgba(20,22,15,0.08); padding: 42px; }
    .steps-bar { display: flex; align-items: flex-start; margin-bottom: 34px; }
    .sb-step { display: flex; flex-direction: column; align-items: center; gap: 9px; flex: none; }
    .sb-num { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--line); background: var(--bg); display: flex; align-items: center; justify-content: center; font-family: 'Kanit', sans-serif; font-weight: 700; font-size: 15px; color: var(--muted); transition: all 0.25s; }
    .sb-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
    .sb-line { flex: 1; height: 2px; background: var(--line); margin: 17px 10px 0; transition: background 0.25s; }
    .sb-step.on .sb-num, .sb-step.done .sb-num { border-color: var(--green); background: var(--green); color: var(--ink-on-green); }
    .sb-step.on .sb-label, .sb-step.done .sb-label { color: var(--ink); }
    .sb-line.done { background: var(--green); }
    .wiz-title { font-size: 26px; text-align: center; }
    .wiz-sub { text-align: center; color: var(--muted); margin: 6px 0 28px; font-size: 14px; }
    .wiz-panel .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .wiz-panel .field { margin-bottom: 18px; }
    .wiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 6px; }
    .wiz-nav .btn { min-width: 130px; }
    .wiz-msg { text-align: center; font-size: 13.5px; min-height: 18px; margin-bottom: 14px; font-weight: 600; }
    .wiz-msg.err { color: #c0492f; }
    .review { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 8px 20px; }
    .review .r-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
    .review .r-row:last-child { border-bottom: none; }
    .review .r-k { color: var(--muted); } .review .r-v { font-weight: 600; text-align: right; }
    .wiz-done { text-align: center; padding: 24px 10px; }
    .wiz-done .wd-ic { width: 66px; height: 66px; border-radius: 50%; background: var(--green); color: var(--ink-on-green); font-size: 32px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: 700; }
    .wiz-done h3 { font-size: 28px; margin-bottom: 12px; }
    .wiz-done p { color: var(--muted); max-width: 400px; margin: 0 auto; font-size: 15px; }
    @media (max-width: 600px) { .wiz { padding: 28px 20px; } .wiz-panel .form-row { grid-template-columns: 1fr; } .sb-label { display: none; } }

    footer { padding: 56px 0; background: var(--ink); color: #e7e9df; text-align: center; }
    footer .name { font-family: 'Kanit', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: 0.04em; }
    footer .name b { color: var(--green-bright); }
    footer p { color: #9a9d90; font-size: 13px; margin-top: 10px; }
    footer a { color: var(--green-bright); }

    /* ---- Dynamic wizard step 1 ---- */
    .svc-panel[hidden] { display: none; }
    .cond-group { padding: 4px 0 0 22px; border-left: 2px solid var(--green); margin: -6px 0 14px; }
    .cond-group[hidden] { display: none; }
    .check-row { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--ink); text-transform: none; letter-spacing: 0; font-weight: 500; margin-bottom: 0; }
    .check-row input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--green); flex: none; }
    .field.inline-cb { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 13px 15px; }
    .field-hint { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; font-weight: 400; letter-spacing: 0; text-transform: none; }

    /* Live quote tile */
    .quote-tile { margin-top: 22px; background: linear-gradient(135deg, #faffea 0%, #eef5cf 100%); border: 1.5px solid var(--green); border-radius: 12px; padding: 22px 24px; box-shadow: 0 6px 18px rgba(168,197,32,0.18); transition: opacity 0.2s; }
    .quote-tile[hidden] { display: none; }
    .quote-tile.calc { opacity: 0.55; }
    .qt-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; gap: 16px; }
    .qt-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-text); font-weight: 700; }
    .qt-total { font-family: 'Kanit', sans-serif; font-weight: 800; font-size: 36px; color: var(--ink); line-height: 1; }
    .qt-lines { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; }
    .qt-lines .ql { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); }
    .qt-lines .ql .v { color: var(--ink); font-weight: 500; white-space: nowrap; }
    .qt-lines .ql.savings { color: var(--green-text); font-weight: 600; }
    .qt-lines .ql.savings .v { color: var(--green-text); }
    .qt-lines .ql.tax { color: var(--muted); font-style: italic; }
    .qt-lines .ql.subtotal { border-top: 1px dashed rgba(20,22,15,0.18); padding-top: 8px; margin-top: 4px; color: var(--ink); }
    .qt-lines .ql.subtotal .v { color: var(--ink); font-weight: 600; }
    .qt-foot { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; }
    .qt-foot.warn { color: #c0492f; }

    /* Traveler Package upsell card */
    .upsell { margin-top: 14px; background: var(--ink); color: #fff; border-radius: 12px; padding: 20px 24px; position: relative; }
    .upsell[hidden] { display: none; }
    .up-badge { display: inline-block; background: var(--green); color: var(--ink-on-green); font-family: 'Kanit', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.16em; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; }
    .up-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 6px; font-family: 'Kanit', sans-serif; }
    .up-head strong { font-size: 19px; font-weight: 700; }
    .up-flat { font-size: 26px; color: var(--green-bright); font-weight: 800; }
    .up-body { color: #c8ccbd; font-size: 13.5px; margin-bottom: 14px; }
    .up-btn { width: 100%; padding: 12px; background: var(--green); border-color: var(--green); color: var(--ink-on-green); }
    .up-btn:hover { background: var(--green-bright); border-color: var(--green-bright); }
    .upsell.applied .up-btn { display: none; }
    .upsell.applied::after { content: '✓ Package applied — your total reflects the flat rate'; display: block; text-align: center; color: var(--green-bright); font-weight: 600; font-size: 13.5px; }

    /* Promo input */
    .promo-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; align-items: end; margin-top: 4px; }
    .promo-row .promo-msg { font-size: 12.5px; padding-bottom: 14px; color: var(--muted); min-height: 18px; }
    .promo-row .promo-msg.ok { color: var(--green-text); font-weight: 600; }
    .promo-row .promo-msg.err { color: #c0492f; font-weight: 600; }
    @media (max-width: 600px) { .promo-row { grid-template-columns: 1fr; } .promo-row .promo-msg { padding-bottom: 0; } }

    /* Service-specific callout (e.g. transportation → advanced quote tool) */
    .svc-callout { display: flex; gap: 16px; align-items: flex-start; background: linear-gradient(135deg, #faffea 0%, #eef5cf 100%); border: 1.5px solid var(--green); border-radius: 12px; padding: 18px 20px; margin: 0 0 18px; }
    .svc-callout[hidden] { display: none; }
    .svc-callout .cal-ic { font-size: 30px; line-height: 1; flex: none; padding-top: 2px; }
    .svc-callout .cal-body { flex: 1; }
    .svc-callout .cal-body strong { font-family: 'Kanit', sans-serif; font-size: 17px; font-weight: 700; display: block; margin-bottom: 4px; color: var(--ink); }
    .svc-callout .cal-body p { font-size: 13.5px; color: var(--muted); margin: 0 0 12px; }
    .svc-callout .cal-btn { display: inline-block; padding: 9px 18px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; cursor: pointer; border: 1.5px solid var(--ink); border-radius: 3px; background: var(--green); color: var(--ink-on-green); border-color: var(--green); transition: all 0.2s; }
    .svc-callout .cal-btn:hover { background: var(--green-bright); border-color: var(--green-bright); }
    .svc-callout .cal-fallback { font-size: 12px; color: var(--muted); margin-top: 6px; }

    /* ---- Contact: split CTAs + light outline button (for dark bg) ---- */
    .contact .c-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
    .btn-outline-light { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
    .btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
    .contact .c-info { gap: 18px 30px; }
    .contact .c-info span { display: inline-flex; align-items: center; gap: 4px; }

    /* ---- Custom-quote section ("Need something not listed?") ---- */
    .custom-quote { text-align: center; }
    .custom-quote .cq-cta { margin-top: 28px; }
    .custom-quote .cq-audience { margin: 32px auto 0; max-width: 640px; font-size: 14px; color: var(--muted); font-style: italic; line-height: 1.5; }

    /* #707366 was 3.7:1 on all three footer grounds — under AA at 11px, and
       this line is where each brand says which company it belongs to, so it is
       exactly the sentence a reader is most likely to have to squint at.
       #84877A clears 4.9:1 on the lightest of the three. */
    footer p.legal { font-size: 11px; color: #84877a; letter-spacing: 0.02em; margin-top: 6px; }

    /* ---- Footer trust strip ---- */
    /* ---- Footer brand block ----
       The supplied logos have white backgrounds, and the footer is near-black. A
       white rectangle on a dark footer reads as a mistake, so the mark sits on a
       deliberate rounded plate instead. The alternative was keying the background
       out of a supplied master asset, which is not mine to alter. */
    .footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0; }
    .footer-logo-plate {
      display: inline-block; background: #fff; border-radius: 12px; padding: 9px 15px; line-height: 0;
    }
    .footer-logo { display: block; width: auto; height: auto; max-height: 74px; max-width: min(360px, 62vw); }
    .footer-descriptor {
      margin-top: 16px !important; font-family: 'Kanit', sans-serif; font-size: 17px;
      font-weight: 600; letter-spacing: 0.02em; color: #e7e9df !important;
    }
    .footer-tagline {
      margin-top: 4px !important; font-size: 12px !important; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--green-bright) !important; font-weight: 700;
    }
    .footer-supporting {
      margin-top: 6px !important; font-size: 11.5px !important; letter-spacing: 0.16em;
      text-transform: uppercase; color: #9a9d90 !important; font-weight: 600;
    }
    .footer-cats {
      list-style: none; margin: 20px auto 0; padding: 0; max-width: 620px;
      display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 0;
      font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
      color: #9a9d90; font-weight: 600;
    }
    .footer-cats li { padding: 0 14px; border-right: 1px solid rgba(255,255,255,0.16); }
    .footer-cats li:last-child { border-right: none; }
    @media (max-width: 560px) {
      .footer-logo { max-height: 56px; }
      .footer-cats { gap: 4px 0; font-size: 11px; }
      .footer-cats li { border-right: none; padding: 2px 10px; }
    }

    .footer-trust { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; margin: 18px auto 10px; font-size: 12.5px; color: var(--green-bright); font-weight: 600; letter-spacing: 0.04em; }
    .footer-trust span { white-space: nowrap; }

    /* Route from the homepage's nine service cards into the full catalogue. */
    .svc-all-link { text-align: center; margin: 34px 0 0; }
    .svc-all-link a { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--green-text); border-bottom: 2px solid var(--green); padding-bottom: 4px; }
    .svc-all-link a:hover { color: var(--ink); border-color: var(--ink); }

    /* ---- Hero: subheadline + trust badges (broadened positioning) ---- */
    .hero p.subhead { font-size: 18px; color: var(--ink); font-weight: 600; margin: 22px 0 0; line-height: 1.45; }
    .hero p.subhead + p.lead { margin-top: 14px; }
    .hero .trust-badges { display: flex; gap: 9px; flex-wrap: wrap; margin: -16px 0 28px; }
    .hero .trust-badges .tb { display: inline-flex; align-items: center; gap: 7px; background: var(--surface); border: 1px solid var(--line); border-radius: 30px; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; }
    .hero .trust-badges .tb-ic { font-size: 15px; line-height: 1; }

    /* ---- Service Areas section (cities/venues we cover) ---- */
    #service-areas .areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 980px; margin: 0 auto; }
    #service-areas .area { display: flex; align-items: flex-start; gap: 14px; background: var(--bg); border: 1px solid var(--line); border-radius: 9px; padding: 18px 20px; transition: border-color 0.2s, box-shadow 0.2s; }
    #service-areas .area:hover { border-color: var(--green); box-shadow: 0 4px 14px rgba(20,22,15,0.05); }
    #service-areas .area-ic { font-size: 26px; line-height: 1; flex: none; padding-top: 2px; }
    #service-areas .area strong { display: block; font-family: 'Kanit', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 3px; line-height: 1.2; }
    #service-areas .area span { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
    @media (max-width: 860px) { #service-areas .areas-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { #service-areas .areas-grid { grid-template-columns: 1fr; } }

    /* Modal (transport iframe overlay) */
    .modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
    .modal[hidden] { display: none; }
    .modal-backdrop { position: absolute; inset: 0; background: rgba(13,14,12,0.78); backdrop-filter: blur(4px); cursor: pointer; }
    .modal-dialog { position: relative; background: #fff; border-radius: 14px; width: 100%; max-width: 1100px; height: 92vh; max-height: 92vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
    .modal-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--line); flex: none; background: var(--bg); }
    .modal-head strong { font-family: 'Kanit', sans-serif; font-size: 17px; font-weight: 700; }
    .modal-dialog.chooser { max-width: 520px; height: auto; max-height: calc(100vh - 48px); overflow-y: auto; }
    .chooser-body { padding: 20px; display: grid; gap: 12px; }
    .chooser-lead { margin: 0 0 2px; color: var(--muted); font-size: 15px; }
    .chooser-opt { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
      padding: 16px; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: inherit;
      transition: border-color .15s, box-shadow .15s; }
    .chooser-opt:hover, .chooser-opt:focus-visible { border-color: var(--green); box-shadow: 0 6px 20px rgba(0,0,0,.07); outline: none; }
    .chooser-ic { font-size: 26px; }
    .chooser-opt strong { display: block; font-family: 'Kanit', sans-serif; font-size: 16px; }
    .chooser-opt strong + span { display: block; margin-top: 3px; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
    .chooser-go { font-size: 20px; color: var(--muted); }
    .chooser-note { margin: 4px 0 0; font-size: 13px; color: var(--muted); }
    .modal-x { background: transparent; border: 0; font-size: 26px; line-height: 1; cursor: pointer; color: var(--muted); padding: 4px 12px; border-radius: 6px; font-family: inherit; }
    .modal-x:hover { background: var(--surface); color: var(--ink); }
    .modal-dialog iframe { flex: 1; width: 100%; border: 0; display: block; }
    @media (max-width: 760px) { .modal { padding: 0; } .modal-dialog { height: 100vh; max-height: 100vh; border-radius: 0; } }


/* ── How it works, and the tracking trail ──────────────────────────────────
 *
 * The trail is a worked example rather than a promise. "Every bag is tracked"
 * is a sentence anybody can write; a seal number and a time somebody can point
 * at is the thing that makes it believable.
 */
.steps { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-bottom: 28px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.step-n { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--green); color: #12140f; font-family: 'Kanit', sans-serif; font-weight: 700; font-size: 14px; }
.step strong { display: block; font-family: 'Kanit', sans-serif; font-size: 15.5px; }
.step strong + span { display: block; margin-top: 4px; font-size: 13.5px; line-height: 1.55; color: var(--muted); }

.track-demo { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; max-width: 620px; margin: 0 auto; }
.track-demo-head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.track-chip { font-family: 'Kanit', sans-serif; font-weight: 700; letter-spacing: .04em; font-size: 14px; }
.track-status { font-size: 13px; color: #4a6b12; background: rgba(168,197,32,.18); padding: 4px 10px; border-radius: 999px; }
.track-trail { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 0; }
.track-trail li { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 0 0 18px; position: relative; }
.track-trail li:last-child { padding-bottom: 0; }
.track-trail li::before { content: ""; position: absolute; left: 6px; top: 16px; bottom: 0; width: 2px; background: var(--line); }
.track-trail li:last-child::before { display: none; }
.t-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--line); background: #fff; margin-top: 3px; z-index: 1; }
.track-trail li.done .t-dot { background: var(--green); border-color: var(--green); }
.track-trail li.now .t-dot { background: #fff; border-color: var(--green); box-shadow: 0 0 0 4px rgba(168,197,32,.25); }
.track-trail strong { display: block; font-size: 14.5px; }
.track-trail strong + span { display: block; margin-top: 2px; font-size: 13px; color: var(--muted); }
.track-trail li:not(.done):not(.now) strong,
.track-trail li:not(.done):not(.now) span { color: var(--muted); opacity: .75; }
.track-note { margin: 16px 0 0; font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ── Sub-pages ────────────────────────────────────────────────────────────
 *
 * The back link is deliberately a real link at the top *and* the bottom of
 * every sub-page. Somebody who has read to the end of a pricing page should
 * not have to scroll back up or trust the browser's chrome to get home.
 */
/* The nav is `position: fixed`, so a sub-page's first element sits underneath
   it unless the page clears it. The home page never needed this because its
   hero owns the top of the screen. */
.subpage { padding-top: var(--nav-h); }
.backlink { display: inline-block; margin: 18px auto 0; padding: 8px 14px; border: 1px solid var(--line);
  border-radius: 999px; font-size: 14px; font-weight: 600; text-decoration: none; color: var(--ink);
  background: #fff; }
.backlink:hover { border-color: var(--green); }
.wrap > .backlink, body > .backlink { margin-left: max(20px, calc((100% - 1120px) / 2)); }
.backlink.bottom { margin-bottom: 40px; }
.page-head { padding: 28px 0 8px; }
.page-head h1 { font-family: 'Kanit', sans-serif; font-size: clamp(30px, 5vw, 44px); line-height: 1.08; margin: 6px 0 10px; }
.page-head .subhead { color: var(--muted); font-size: 16.5px; max-width: 60ch; }
.price-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; }
.price-card h3 { font-family: 'Kanit', sans-serif; font-size: 17px; margin: 0 0 10px; }
.price-fig { font-family: 'Kanit', sans-serif; font-size: 27px; font-weight: 700; margin: 0 0 8px; line-height: 1.15; }
.price-fig span { display: block; font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 400; color: var(--muted); margin-top: 4px; }
.price-note { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; flex: 1; }
.price-small { margin-top: 18px; font-size: 13px; line-height: 1.65; color: var(--muted); max-width: 72ch; }
.price-explain { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.price-explain h3 { font-family: 'Kanit', sans-serif; font-size: 17px; margin: 0 0 12px; }
.price-explain ul { margin: 0; padding-left: 18px; display: grid; gap: 10px; }
.price-explain li { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.price-explain li strong { color: var(--ink); }

/* ── Call us ──────────────────────────────────────────────────────────────
 *
 * On every page, always in the same place, never behind a menu.
 *
 * Somebody stuck halfway through a booking does not go looking for a contact
 * page; they leave. This is the one control on the site whose whole job is to
 * catch that person, so it does not scroll away and it says what it is for
 * rather than just showing a number.
 */
.call-fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: inline-flex; align-items: center;
  gap: 10px; padding: 13px 20px 13px 16px; border-radius: 999px; text-decoration: none;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 15px; line-height: 1.15;
  box-shadow: 0 10px 30px rgba(0,0,0,.28); }
.call-fab:hover { background: #000; }
    /* `var(--brand)` here was a token this palette never defined, so the
       circle had no background and the near-black glyph sat on the FAB's own
       near-black ground at 1.03:1 — invisible, to everyone, not only to
       assistive technology. The accent token is `--green`; five rules were
       reaching for `--brand` and silently rendering nothing. The glyph keeps
       its `aria-hidden` and the link keeps its `aria-label`: the icon really
       is decorative, the phone number beside it is real text, and that part
       was already right. */
.call-fab .cf-ic { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--green); color: #12140f; font-size: 15px; flex: none; }
.call-fab .cf-txt { display: grid; }
.call-fab .cf-lead { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .75; }
.call-fab .cf-num { font-family: 'Kanit', sans-serif; font-size: 16px; letter-spacing: .01em; }
@media (max-width: 520px) {
  .call-fab { right: 12px; bottom: 12px; left: 12px; justify-content: center; padding: 14px 18px; }
}

/* ── The manifest band ────────────────────────────────────────────────────
 *
 * Its own section rather than a line inside another one. A coordinator with the
 * whole convention already written down is the single highest-value visitor
 * this site gets, and the one thing they need to know — that they do not have
 * to retype any of it — was previously only discoverable by opening a booking
 * page and scrolling.
 */
#manifest .manifest-band { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
#manifest h2 { font-family: 'Kanit', sans-serif; font-size: clamp(21px, 3vw, 29px); line-height: 1.15; margin: 6px 0 10px; }
#manifest p { color: var(--muted); font-size: 15.5px; line-height: 1.65; margin: 0 0 8px; max-width: 62ch; }
#manifest .manifest-note { font-size: 13.5px; }
#manifest .manifest-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
#manifest .manifest-ic { font-size: 68px; line-height: 1; opacity: .9; }
@media (max-width: 720px) {
  #manifest .manifest-band { grid-template-columns: 1fr; padding: 22px; }
  #manifest .manifest-ic { display: none; }
}

/* ── The Book menu ────────────────────────────────────────────────────────
 *
 * "Book" is six different things. The button used to be one link to the
 * luggage storefront, which answered the question with one of them and left
 * the other five to be hunted for through the page.
 *
 * Anchored to the button rather than centred on the screen: it is a menu, and
 * a menu that leaves its trigger reads as a dialog somebody has to dismiss.
 */
.bookmenu { position: relative; }
.bookmenu-btn { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: 0; font: inherit; }
.bookmenu-caret { font-size: 11px; transition: transform .15s; }
.bookmenu-btn[aria-expanded="true"] .bookmenu-caret { transform: rotate(180deg); }

/* The nav uppercases and letter-spaces its links, which is right for five
   words across a bar and wrong for a list of sentences. Reset inside the
   panel, or every item shouts and the subtitles become unreadable. */
.bookmenu-panel, .bookmenu-panel * { text-transform: none; letter-spacing: normal; }
.bookmenu-panel { position: absolute; right: 0; top: calc(100% + 10px); z-index: 60; width: 384px;
  max-width: calc(100vw - 24px); background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18); padding: 14px; }
.bookmenu-panel[hidden] { display: none; }
.bookmenu-head { padding: 2px 6px 10px; }
.bookmenu-head strong { display: block; font-family: 'Kanit', sans-serif; font-size: 16px; }
.bookmenu-head span { display: block; margin-top: 2px; font-size: 13px; color: var(--muted); }

.bookmenu-item, .bookmenu-help { display: grid; grid-template-columns: auto 1fr auto; gap: 12px;
  align-items: center; padding: 10px; border-radius: 10px; text-decoration: none; color: inherit; }
.bookmenu-item:hover, .bookmenu-item:focus-visible,
.bookmenu-help:hover, .bookmenu-help:focus-visible { background: var(--bg); outline: none; }
.bmi-ic { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(168,197,32,.16); font-size: 18px; }
.bmi-txt strong { display: block; font-family: 'Kanit', sans-serif; font-size: 14.5px; line-height: 1.25; }
.bmi-txt span { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.bmi-go { font-size: 20px; color: var(--muted); }
.bookmenu-help { margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; }

/* Two audiences, so the eight items need a heading each. The panel resets
   text-transform for its sentences, and these labels want it back - hence the
   descendant selector, which outranks `.bookmenu-panel *`. */
.bookmenu-panel .bookmenu-sec { margin: 12px 6px 4px; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.bookmenu-panel .bookmenu-sec:first-of-type { margin-top: 4px; }

/* Ten rows is taller than a small phone, and the panel is pinned 68px from the
   top - so without this the last services are unreachable. */
.bookmenu-panel { max-height: calc(100vh - 96px); overflow-y: auto; }

@media (max-width: 720px) {
  /* On a phone the trigger is near the right edge and a 360px panel would run
     off it, so it spans the screen instead of hanging off the button. */
  .bookmenu-panel { position: fixed; left: 12px; right: 12px; top: 68px; width: auto;
    max-height: calc(100vh - 84px); }
}


/*
 * The hero's two doors.
 *
 * Not two products - two people. "Reserve storage" answered a convention
 * organiser's visit with the narrowest of eight services, and "Get a quote"
 * answered everyone else's with a form. Intent sorts better than service does:
 * an executive can be an attendee and an assistant can be moving forty people.
 *
 * Each button carries a second line, so the choice is made before the click
 * rather than discovered after it.
 */
.hero .intent-row { gap: 16px; }
.intent-btn { display: grid; gap: 5px; padding: 17px 26px; text-align: left;
  flex: 1 1 250px; max-width: 330px; }
.intent-t { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
/* The .btn rule uppercases and letter-spaces everything inside it, which is
   right for the label and unreadable for a sentence. */
.intent-s { font-size: 12.5px; letter-spacing: normal; text-transform: none;
  font-weight: 500; line-height: 1.45; opacity: 0.78; }

@media (max-width: 520px) {
  /* Side by side they would be two narrow columns of wrapped words. */
  .intent-btn { flex: 1 1 100%; max-width: none; }
}


/*
 * The same picture for the same service, wherever it is explained.
 *
 * These are the storefront's own stills - a customer who recognised "collect my
 * bags at the airport" here should meet the identical frame when they get to
 * the booking flow, or the two read as two companies.
 *
 * Stills, not video. The booking flow's card offers the clip on a tap because
 * somebody there is choosing between services; this page is a catalogue, and
 * twelve autoplaying loops would be several megabytes spent on decoration.
 *
 * alt="" throughout: the heading beneath already names the service, so a
 * description here would make a screen reader say it twice.
 */
.svc-art { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9;
  object-fit: cover; border-radius: 6px; margin-bottom: 18px; background: var(--surface-2); }
/* The vehicle is a cut-out on transparency, so cropping it to fill would slice
   the roof off. */
.svc-art-contain { object-fit: contain; padding: 6px; }
