  .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; }
