
  body { margin: 0; background: var(--brand-surface, #fafafa); color: var(--brand-ink, #1a202c); font-family: var(--font-body, system-ui, sans-serif); line-height: 1.5; }
  h1, h2, h3, h4 { font-family: var(--font-display, var(--font-body, system-ui, sans-serif)); margin: 0 0 0.5em; line-height: 1.15; }
  a { color: inherit; }
  .gb-lead { font-size: 1.15rem; opacity: 0.85; }
  /* .gb-section is a full-width section affordance — designers apply
     their own inner-container max-width via a child div (the bundle
     convention is style={{ maxWidth: 'var(--container-max)', margin:
     '0 auto' }} on the inner wrapper). Putting max-width on the section
     itself would clip section-wide backgrounds (e.g. ServiceList's
     light-grey band) to a narrow strip on wide viewports. A designer's
     own .gb-section fully overrides the single padding property below,
     so this does not leak into handoff markup. */
  .gb-section { padding: 4rem 2rem; }
  .gb-section__inner { max-width: 1100px; margin: 0 auto; }
  .gb-section__head { margin-bottom: 2rem; }
  /* Slot-fill fallback cards/grids — emitted by contentSlots.ts only when a
     tenant has no extracted designer item-template. These are namespaced
     enough that designer bundles don't reuse them. */
  .gb-services__grid, .gb-products__grid, .gb-team__grid, .gb-pricing__grid, .gb-gallery__grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .gb-service-card, .gb-product-card, .gb-team-card, .gb-tier { background: white; padding: 1.5rem; border-radius: var(--radius-card, 12px); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
  .gb-service-card--highlight, .gb-tier--highlight { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-2px); }
  .gb-service-card__row { display: flex; justify-content: space-between; margin-top: 1rem; }
  .gb-gallery__item img { width: 100%; height: auto; border-radius: var(--radius-card, 12px); }
  .gb-visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

  /* booking-widget: page chrome around the platform widget. The
     platform owns this layout — the designer's BookForm.jsx slot is
     wholesale-replaced at import time by a bare marker, and the
     renderer wraps that marker in a hero + two-column body at request
     time. Tenant identity is supplied via CSS variables on the page
     root (--gradient-hero, --brand-primary, etc.) with sensible
     fallbacks when a tenant theme doesn't define them. */
  .gb-booking-page { display: block; }
  /* service-pricing-and-widget-theming: token bridge. The booking
     widget's inner components reference an editorial palette
     (--ink / --paper / --stone-* / --sage / --terracotta / --font-mono)
     that otherwise inherits the platform layout's cream defaults from
     (platform)/layout.tsx — because the tenant site renders inside that
     route group. Custom properties inherit, so re-pointing them here (on
     the booking-page wrapper) re-skins the whole widget subtree onto the
     tenant's brand tokens at request time, with NO per-tenant bundle
     re-import. Each maps to a brand token with the widget's original
     neutral as the fallback. color-mix derives the stone ramp + soft
     accent from the brand ink/primary; on engines without color-mix the
     declaration is dropped and the token simply inherits the platform
     value (graceful degradation). */
  .gb-booking-page {
    --paper: var(--brand-surface, #ffffff);
    --ink: var(--brand-ink, #1f1a1a);
    --sage: var(--brand-primary, #3d6b5e);
    --sage-soft: color-mix(in srgb, var(--brand-primary, #3d6b5e) 12%, #ffffff);
    --terracotta: var(--brand-accent, #b85a3e);
    --stone-1: color-mix(in srgb, var(--brand-ink, #1f1a1a) 4%, #ffffff);
    --stone-2: color-mix(in srgb, var(--brand-ink, #1f1a1a) 13%, #ffffff);
    --stone-3: color-mix(in srgb, var(--brand-ink, #1f1a1a) 24%, #ffffff);
    --stone-4: color-mix(in srgb, var(--brand-ink, #1f1a1a) 45%, #ffffff);
    --stone-5: color-mix(in srgb, var(--brand-ink, #1f1a1a) 62%, #ffffff);
  }
  .gb-booking-page__hero {
    background: var(--gradient-hero, linear-gradient(160deg, var(--brand-ink, #16213E) 0%, var(--brand-primary, #5B9A2F) 100%));
    color: var(--brand-primary-text, #FFFFFF);
    padding: 4.5rem 2rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .gb-booking-page__hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
  .gb-booking-page__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
    /* Brand-primary eyebrow to match the design; falls back to the
       secondary accent then currentColor. */
    color: var(--brand-primary, var(--brand-accent, currentColor));
    margin-bottom: 1rem;
    opacity: 0.95;
  }
  .gb-booking-page__title {
    margin: 0 0 0.9rem;
    font-family: var(--font-display, var(--font-body, system-ui, sans-serif));
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 700;
    /* Match the tenant home hero: a gold-shimmer gradient clipped to the
       text glyphs. The fallback is a solid on-gradient colour expressed
       as a gradient so a tenant without --gradient-text-gold still gets
       legible (solid) heading text rather than transparent glyphs. */
    background-image: var(
      --gradient-text-gold,
      linear-gradient(
        var(--brand-primary-text, #ffffff),
        var(--brand-primary-text, #ffffff)
      )
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--brand-primary-text, #ffffff);
  }
  .gb-booking-page__lead {
    margin: 0 auto;
    max-width: 520px;
    font-size: clamp(0.98rem, 2vw, 1.08rem);
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.86;
  }
  .gb-booking-page__body {
    background: var(--grey-50, #F8F9FC);
    padding: 3rem 1.25rem 4rem;
  }
  .gb-booking-page__grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 480px);
    gap: 3rem;
    align-items: start;
  }
  .gb-booking-page__aside { padding-top: 0.5rem; min-width: 0; }
  .gb-booking-page__aside-title { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 1.25rem; }
  .gb-booking-page__aside-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
  .gb-booking-page__aside-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; line-height: 1.55; color: var(--ink-600, var(--brand-ink, #444)); }
  .gb-booking-page__aside-list li::before {
    content: "✓";
    flex: none;
    color: var(--brand-primary, currentColor);
    font-weight: 700;
    margin-top: 1px;
  }
  .gb-booking-page__aside-contact { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line-200, rgba(0,0,0,0.08)); }
  .gb-booking-page__aside-contact-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; margin-bottom: 6px; }
  .gb-booking-page__aside-contact a { color: var(--brand-primary, inherit); font-weight: 600; font-size: 0.98rem; text-decoration: none; }
  .gb-booking-page__widget-wrap { justify-self: end; width: 100%; max-width: 480px; min-width: 0; }
  .gb-booking-page__credit { margin-top: 14px; font-size: 11px; opacity: 0.55; text-align: center; letter-spacing: 0.04em; }
  /* Mobile: collapse to a single column so the widget always has full
     width and the aside drops below. */
  @media (max-width: 860px) {
    .gb-booking-page__hero { padding: 3.25rem 1.25rem 2.5rem; }
    .gb-booking-page__body { padding: 2.25rem 1rem 3rem; }
    .gb-booking-page__grid { grid-template-columns: 1fr; gap: 2rem; }
    .gb-booking-page__widget-wrap { justify-self: center; max-width: 100%; }
  }
