/* Coach Denis — generated by extracting inline <style>. Edit here, not in HTML. */
/* Shared foundation: tokens, reset, base typography. */
  /* ---------- Tokens ---------- */
  :root {
    --color-bg: #0F0A1E;
    --color-surface: #FBF6EE;
    --color-surface-dark: #1A1530;
    --color-text: #FFFFFF;
    --color-text-dark: #1A1530;
    --color-text-muted: rgba(255,255,255,0.72);
    --color-text-muted-dark: rgba(26,21,48,0.65);
    --color-accent: #FFD06B;
    --color-accent-2: #FF7843;
    /* Conversion color: signature gold reserved for the single booking action */
    --color-cta: #FFD06B;
    --color-cta-hover: #FFC247;

    --gradient-hero: linear-gradient(135deg, #FF7843 0%, #D04BAA 50%, #5B6CFF 100%);
    --gradient-static-fallback: linear-gradient(135deg, #FF7843 0%, #D04BAA 50%, #5B6CFF 100%);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --fs-h1: clamp(64px, 11vw, 168px);
    --fs-h2: clamp(36px, 5vw, 64px);
    --fs-h3: clamp(22px, 2.4vw, 32px);
    --fs-body: clamp(16px, 1.2vw, 19px);
    --fs-small: 13px;
    --fs-kicker: 12px;

    --lh-tight: 0.95;
    --lh-body: 1.6;

    --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
    --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
    --s-9: 96px; --s-10: 128px; --s-11: 160px; --s-12: 200px;

    --radius-sm: 6px; --radius-md: 14px; --radius-lg: 24px; --radius-full: 999px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --dur-fast: 180ms; --dur-med: 320ms; --dur-slow: 600ms;

    --shadow-1: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.08);
    --shadow-2: 0 8px 32px rgba(0,0,0,0.18);
    --shadow-3: 0 24px 64px rgba(0,0,0,0.28);

    --maxw: 1280px;
  }

  /* ---------- Reset ---------- */
  *,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h, 68px); -webkit-text-size-adjust: 100%; }

  /* ---------- Floating booking CTA (.float-cta) — show/hide logic in js/koalendar-popup.js ---------- */
  .float-cta {
    position: fixed; right: 20px; bottom: 20px; z-index: 60;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 26px; border-radius: 999px;
    background: #FFD06B; color: #1A1530;
    font-weight: 600; font-size: 17px; letter-spacing: 0.01em; line-height: 1.1;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0,0,0,0.28);
    transform: translateY(160%); opacity: 0; pointer-events: none;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .3s ease, background .18s ease, box-shadow .2s ease;
  }
  .float-cta:hover { background: #FFC247; box-shadow: 0 14px 36px rgba(0,0,0,0.34); text-decoration: none; }
  .float-cta.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .float-cta.is-visible:hover { transform: translateY(-2px); }
  .float-cta span {
    display: grid; place-items: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: #1A1530; color: #FFD06B;
    font-size: 14px; line-height: 1; font-weight: 600;
    transition: transform .18s ease;
  }
  .float-cta:hover span { transform: translateX(3px); }
  /* Beat Koalendar's injected .koa-link underline (class added at runtime to every booking link). */
  a.koa-link, a.koa-link:hover, a.koa-link:focus { text-decoration: none !important; }
  @media (max-width: 600px) {
    .float-cta { right: 12px; bottom: 12px; padding: 13px 18px; font-size: 15px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .float-cta { transition: opacity .3s ease; }
  }
