  .ct-line { margin: -8px auto 26px; font-size: 13.5px; color: #FFB300; letter-spacing: .04em; }
  .chips { display: flex; gap: 9px; justify-content: flex-start; flex-wrap: wrap; margin-top: 22px; }
  /* Less bubbly (👑, 19:13). A capsule with a 2px rule and heavy rounded lettering reads
     app-for-teens; Mount Nelson and One&Only sit two screens away. Same colours, same words,
     same layout — only the shapes and letterforms change: 999px -> 3px, 2px rule -> 1px,
     uppercase with tracking at a lighter weight, and no hover bounce. */
  /* 👑 19:46: thicker outline, semibold gold GLOW text — both chip rows. Semibold here is
     weight 600 on DM Sans, which is not the heavy rounded display face he took out earlier;
     "not bold" was about Nova Klasse, not about ever using weight again. */
  .chips button { font: inherit; font-family: "DM Sans", sans-serif; font-weight: 600;
    font-size: 14px; padding: 9px 18px; border-radius: 999px;
    border: 2px solid rgba(217,178,74,.55); background: rgba(255,255,255,.05);
    color: #F2D89A; text-shadow: 0 0 10px rgba(217,178,74,.55), 0 0 22px rgba(217,178,74,.22);
    cursor: pointer; transition: background .15s, border-color .15s, box-shadow .15s; }
  .chips button:hover { background: rgba(255,255,255,.12); border-color: rgba(217,178,74,.9);
    box-shadow: 0 0 18px rgba(217,178,74,.22); }
  /* One rule, not two. I added a gold .on state and left the ORIGINAL ocean rule sitting
     directly beneath it — same specificity, later in the file, so ocean won and the gold
     selection never rendered once. 🪞 caught it by READING the cascade; my screenshot
     could not have shown it, because nothing was selected in the shot. */
  /* background-COLOR longhand with a literal, not `background: #D9B24A`. The shorthand
     form matched (border-color from the same rule went gold) but the background never
     resolved — CSSOM showed `.chips button.on => #D9B24A | bgcolor:(empty)`. Not worth
     more forensics on a demo night: the longhand is unambiguous and does the job. */
  .chips button.on { background-color: #D9B24A; border-color: #D9B24A; color: #072A3E; }
  .addtrip { font: inherit; font-family: "Nova Klasse", sans-serif; font-size: 12.5px;
    margin-left: 10px; padding: 7px 14px; border-radius: 999px; border: 1.5px solid #FFB300;
    background: transparent; color: inherit; cursor: pointer; }
  .addtrip:hover, .addtrip.in { background: #FFB300; color: #020202; }
  .sketch { margin: 20px auto 0; max-width: 640px; font-size: 15px; color: #454545; min-height: 24px; }

  /* ── concierge preview, matched to the APP's concierge world (👑 19:24) ──────────
     His correction: "return the rounded bubble nature just not the bold font we use
     everywhere else." So "bubbly" was never the SHAPE — it was the heavy rounded display
     face. Rounding comes back; the weight does not. Styled off the real thing at
     :5173?tab=concierge — deep navy-teal ground, translucent bubbles, gold accent. */
  .chat { position: relative; isolation: isolate; width: min(92vw, 880px); margin: 28px auto 0;
    border-radius: 18px; overflow: hidden; text-align: left;
    border: 1px solid rgba(217,178,74,.30);
    background: radial-gradient(140% 90% at 50% -20%, #10517A 0%, #0B3C55 42%, #072A3E 100%);
    box-shadow: 0 18px 40px rgba(7,42,62,.22); }
  /* 👑 19:33: the photographs belong in the POWDER BLUE AROUND the panel, not inside the
     chatbot. And the 80% law — "narrow centred columns read as timid" — so the band is
     full-bleed and the panel is no longer a 620px sliver in the middle of a wide screen. */
  /* ONE .vibe rule. There were three, spread over 40 lines — the same shape that killed the
     gold selection an hour ago, where a later duplicate silently beat an earlier one. 🪞
     counted them; collapsing before it costs us a second defect. */
  .vibe { position: relative; isolation: isolate; overflow: hidden; padding: 72px 0;
    background: #f4fafe; border-bottom: 1px solid #e0e0e0; }
  .vibe::before { content: ''; position: absolute; inset: 0; z-index: 0; opacity: .10;
    pointer-events: none;
    background-image: url(assets/table_mountain-two.jpg), url(assets/hot-air-balloon-safari.jpg),
                      url(assets/paragliding.webp), url(assets/franschhoek-wine-tram.jpg);
    background-size: 34% 62%, 30% 58%, 30% 58%, 34% 62%;
    background-repeat: no-repeat;
    background-position: -4% 8%, 20% 96%, 80% 4%, 104% 88%;
    filter: blur(1px) saturate(.9);
    /* 👑 19:44: "if we load them like that they need feathered edges" — and he is right,
       four photographs butting up as hard rectangles read as a contact sheet, not a wash.
       CSS masks are multi-LAYER like backgrounds, so each photo gets its own radial mask
       at the SAME size and position: opaque at the core, gone by the edge. No rectangle
       ever meets the powder blue. */
    --feather: radial-gradient(closest-side ellipse,
      rgba(0,0,0,1) 30%, rgba(0,0,0,.72) 58%, rgba(0,0,0,.28) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: var(--feather), var(--feather), var(--feather), var(--feather);
    mask-image: var(--feather), var(--feather), var(--feather), var(--feather);
    -webkit-mask-size: 34% 62%, 30% 58%, 30% 58%, 34% 62%;
    mask-size: 34% 62%, 30% 58%, 30% 58%, 34% 62%;
    -webkit-mask-position: -4% 8%, 20% 96%, 80% 4%, 104% 88%;
    mask-position: -4% 8%, 20% 96%, 80% 4%, 104% 88%;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }
  .vibe > * { position: relative; z-index: 1; }
  /* a thin gold seam so the panel reads as the concierge's, not a generic card */
  .chat::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
    z-index: 2; pointer-events: none;
    background: linear-gradient(90deg, transparent, #D9B24A, transparent); }
  .chat-head { display: flex; align-items: center; gap: 8px; padding: 13px 18px;
    border-bottom: 1px solid rgba(217,178,74,.18); font-size: 12px; letter-spacing: .12em;
    text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 400; }
  .chat-head b { color: #D9B24A; font-weight: 500; letter-spacing: .06em; }
  .dot { width: 7px; height: 7px; border-radius: 50%; background: #2bb673; flex: none; }
  .chat-body { padding: 18px; display: flex; flex-direction: column; gap: 11px; }
  .msg { max-width: 60%; padding: 12px 16px; font-size: 15px; line-height: 1.5;
    font-weight: 400; border-radius: 14px; }
  .msg.them { background: rgba(255,255,255,.07); border: 1px solid rgba(217,178,74,.22);
    color: rgba(255,255,255,.92); align-self: flex-start; }
  .msg.me { background: #D9B24A; color: #072A3E; align-self: flex-end; font-weight: 500; }
  .msg.me:empty { display: none; }
  /* #vibeSketch keeps its .sketch class (the original handler targets it), and .sketch
     carries `margin: 20px auto 0` — auto margins beat align-self, so the concierge's reply
     floated to the centre of the panel instead of sitting left like the rest of the
     transcript. Neutralised inside the chat only; .sketch elsewhere is untouched. */
  .chat .sketch { margin: 0; max-width: 60%; text-align: left; }
  .chat-body { align-items: flex-start; }
  .chat-body .msg.me { align-self: flex-end; }
  .chat-foot { padding: 4px 18px 18px; }
  .qr-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    color: rgba(217,178,74,.95); margin: 10px 0 10px; font-weight: 600;
    text-shadow: 0 0 10px rgba(217,178,74,.35); }
  .center { text-align: center; }
  h2.phudu { font-size: clamp(32px, 4.6vw, 58px); line-height: 1.06; }
  .sub { color: #454545; max-width: 620px; margin: 16px auto 0; font-size: 15.5px; }

  /* services mosaic */
  .mosaic { display: grid; gap: 18px; margin-top: 48px;
    grid-template-columns: repeat(6, 1fr); }
  .tile { position: relative; border-radius: 16px; overflow: hidden; min-height: 430px; }
  .tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform .3s ease; }
  .tile:hover img { transform: scale(1.04); }
  .tile::after { content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to top, rgba(4,10,16,.62), rgba(4,10,16,.1) 55%); }
  .tile .lbl { z-index: 2; }
  /* the ORIGINAL site's treatment, back by Emmanuel's order (08-28): big open DM Sans
     sentence-case straight on the image, a short white stroke above — no pill chip. */
  .tile .lbl { position: absolute; left: 22px; right: 22px; bottom: 20px; background: none;
    color: #fff; text-align: left; font-family: "DM Sans", sans-serif; font-weight: 500;
    font-size: clamp(20px, 1.9vw, 30px); letter-spacing: .01em; line-height: 1.2;

}
/* ── graft-only additions ── */
#tz-concierge { padding: 84px 0; background: #06222f; color: #fff; text-align: center; }
#tz-concierge .tzwrap { width: min(92vw, 1200px); margin: 0 auto; }
#tz-concierge h2 { font-family: "Phudu", sans-serif; font-weight: 700; font-size: clamp(26px, 3.2vw, 40px); }
#tz-concierge h2 .y { color: #FFB300; } #tz-concierge h2 .b { color: #A7D4EF; }
.ct-line { font-family: "Phudu", sans-serif; font-weight: 600; }

.ct-clock { position: absolute; top: 96px; right: 28px; width: clamp(56px, 6vw, 84px);
  z-index: 30; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); pointer-events: none; }
#ckH, #ckM, #ckS { transform-origin: 50px 50px; }
button.text-blue-300, img[alt=""] { cursor: pointer; }

/* ── hero slide: Vue reads Tailwind's `transition-all duration-1000` on this div as the
   leave animation and holds the old slide for a full second after a dot click (measured
   09-04: 1027ms click→swap). The crossfade lives on the ghost layer in og-graft.js, so the
   slide itself needs no transition at all. Scoped to the hero's own data-v hash. ── */
.masked-bg[data-v-b8630117] > div[style*="background-image"]:not(.tz-ghost) { transition: none !important; }

/* ── ⑧ THE BOOKING REQUEST SHEET (09-04) — the app's two-step Book Now sheet in the
   site's own colours (#0079B5, ink #020202, #E0E0E0 rules, #A7D4EF focus, 10px inputs,
   999px chips). Bottom sheet under 600px, centred 440px dialog above. Everything is
   `tzs-` so neither the OG's Tailwind nor our older `tz-` rules can reach it. ── */
.tzs-backdrop { position: fixed; inset: 0; z-index: 4000; background: rgba(2,2,2,.55);
  display: flex; align-items: flex-end; justify-content: center;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  animation: tzs-fade .25s ease; }
.tzs-backdrop[hidden] { display: none; }
@keyframes tzs-fade { from { opacity: 0; } }
.tzs-sheet { width: 100%; max-width: 440px; background: #fff; color: #020202;
  border-radius: 20px 20px 0 0; padding: 10px 20px 28px; max-height: 92vh; overflow-y: auto;
  -webkit-overflow-scrolling: touch; box-shadow: 0 -8px 40px rgba(2,2,2,.22);
  font-size: 15px; line-height: 1.45; animation: tzs-rise .4s cubic-bezier(.32,.72,.28,1); }
.tzs-sheet:focus { outline: none; }
@keyframes tzs-rise { from { transform: translateY(100%); } }
.tzs-grab { width: 38px; height: 4px; border-radius: 2px; background: #E0E0E0; margin: 0 auto 12px; }
.tzs-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.tzs-title { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin: 0; color: #020202; }
.tzs-step { margin: 3px 0 0; font-size: 12.5px; color: #656464; }
.tzs-x { background: #F3F5F7; border: none; color: #656464; width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: 13px; flex: none; font-family: inherit; }
.tzs-x:hover { background: #E0E0E0; color: #020202; }
.tzs-progress { display: flex; gap: 6px; margin-bottom: 16px; }
.tzs-progress span { flex: 1; height: 3px; border-radius: 2px; background: #E0E0E0; transition: background .25s ease; }
.tzs-progress span.on { background: #0079B5; }

.tzs-summary { display: flex; flex-direction: column; gap: 3px; background: #F7FAFC;
  border: 1px solid #E0E0E0; border-radius: 14px; padding: 14px 16px; }
.tzs-summary-label { font-size: 14px; font-weight: 600; color: #020202; }
.tzs-summary-note { font-size: 12px; color: #656464; }

.tzs-form { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.tzs-two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tzs-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.tzs-label { font-size: 12px; font-weight: 600; color: #656464; letter-spacing: .02em; }
.tzs-input { background: #fff; border: 1px solid #E0E0E0; color: #020202; border-radius: 10px;
  padding: 12px 13px; font: inherit; font-size: 16px; width: 100%; resize: vertical;
  transition: border-color .2s, box-shadow .2s; }
.tzs-input:hover { border-color: #A7D4EF; }
.tzs-input:focus { outline: none; border-color: #A7D4EF; box-shadow: 0 0 0 2px rgba(167,212,239,.35); }
.tzs-hint { font-size: 12px; color: #8D6B10; }
.tzs-hint[hidden] { display: none; }

.tzs-stepper { display: inline-flex; align-items: center; border: 1px solid #E0E0E0;
  border-radius: 10px; overflow: hidden; width: max-content; }
.tzs-stepper button { width: 44px; height: 44px; border: 0; background: #fff; color: #020202;
  font-size: 20px; font-family: inherit; cursor: pointer; line-height: 1; }
.tzs-stepper button:hover:not(:disabled) { background: #F2F8FC; }
.tzs-stepper button:disabled { opacity: .35; cursor: default; }
.tzs-stepper span { min-width: 44px; text-align: center; font-weight: 600; font-size: 16px; }

.tzs-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tzs-chip { padding: 10px 16px; border-radius: 999px; border: 1px solid #E0E0E0; background: #fff;
  color: #020202; font: inherit; font-size: 14px; cursor: pointer; transition: all .15s; }
.tzs-chip:hover { border-color: #A7D4EF; }
.tzs-chip.on { background: #0079B5; border-color: #0079B5; color: #fff; }

.tzs-confirm { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  margin-top: 18px; padding: 15px; background: #0079B5; color: #fff; border: none; border-radius: 12px;
  font-weight: 700; font-size: 15.5px; font-family: inherit; cursor: pointer; text-decoration: none; }
.tzs-confirm:hover:not(:disabled) { background: #00679B; }
.tzs-confirm:disabled { opacity: .4; cursor: default; }
.tzs-wa { background: #25D366; color: #0B3D22; }
.tzs-wa:hover { background: #1FBB59; }
.tzs-back { display: block; width: 100%; margin-top: 10px; padding: 10px; background: none; border: none;
  color: #656464; font-size: 14px; font-family: inherit; cursor: pointer; }
.tzs-back:hover { color: #0079B5; }
.tzs-fine { font-size: 12px; line-height: 1.5; text-align: center; color: #656464; margin: 12px 0 0; }
.tzs-muted { color: #656464; font-size: 13.5px; line-height: 1.6; }
.tzs-mid { text-align: center; }

.tzs-scroll { padding-bottom: 4px; }
.tzs-sticky { position: sticky; bottom: 0; background: #fff; padding-bottom: 2px;
  box-shadow: 0 -10px 14px -6px rgba(255,255,255,.95); }
.tzs-sticky .tzs-confirm { margin-top: 10px; }
.tzs-sticky .tzs-fine { margin: 8px 0 0; }

.tzs-center { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 22px 0 6px; }
.tzs-done-title { font-size: 21px; font-weight: 800; color: #020202; }
.tzs-spinner { width: 40px; height: 40px; border-radius: 50%; border: 3px solid #E0E0E0;
  border-top-color: #0079B5; animation: tzs-spin .8s linear infinite; }
@keyframes tzs-spin { to { transform: rotate(360deg); } }
.tzs-check { width: 56px; height: 56px; border-radius: 50%; background: #16A34A; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 800;
  animation: tzs-pop .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes tzs-pop { from { transform: scale(.3); opacity: 0; } }

@media (min-width: 600px) {
  .tzs-backdrop { align-items: center; }
  .tzs-sheet { border-radius: 20px; padding: 14px 24px 26px; max-height: 88vh;
    box-shadow: 0 24px 60px rgba(2,2,2,.3); animation: tzs-popin .28s cubic-bezier(.32,.72,.28,1); }
  .tzs-grab { display: none; }
}
@keyframes tzs-popin { from { opacity: 0; transform: translateY(12px) scale(.98); } }
@media (prefers-reduced-motion: reduce) {
  .tzs-sheet, .tzs-backdrop, .tzs-check { animation: none; }
}

/* ── the card that replaces the long booking form ── */
.tzs-cta { text-align: center; background: #fff; border: 1px solid #E0E0E0; border-radius: 20px;
  padding: 34px 22px; box-shadow: 0 10px 30px rgba(2,2,2,.06); }
.tzs-cta h3 { font-size: 24px; line-height: 1.2; font-weight: 700; color: #020202; margin: 0 0 10px; }
@media (min-width: 640px) { .tzs-cta h3 { font-size: 30px; } .tzs-cta { padding: 44px 34px; } }
.tzs-cta p { font-size: 15px; color: #656464; margin: 0 auto 22px; max-width: 460px; line-height: 1.6; }
.tzs-cta-btn { display: inline-flex; align-items: center; justify-content: center;
  background: #0079B5; color: #fff; border: none; border-radius: 12px; padding: 16px 40px;
  font: inherit; font-size: 16px; font-weight: 700; cursor: pointer; transition: background .2s; }
.tzs-cta-btn:hover { background: #00679B; }
