  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --cosmos: #9D8ED8;
    --cosmos-bright: #B5A8E8;
    --cosmos-deep: #5B4E8A;
    --shore: #6DC4D0;
    --shore-bright: #7ED4DE;

    --bg: #15112A;
    --bg-light: #211B3C;
    --text: #ECE7F7;
    --text-muted: #A99FC6;
    --card: rgba(255, 255, 255, 0.05);
    --card-solid: #211B3C;
    --card-border: rgba(157, 142, 216, 0.22);
    --lilac: rgba(255, 255, 255, 0.08);
    --lilac-deep: #6B6088;
  }

  body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    background: linear-gradient(180deg, #1A1535 0%, #120E24 100%) fixed;
    color: var(--text);
    overflow-x: hidden;
    position: relative;
  }

  /* ── Page-level floating orbs ── */
  body::before, body::after {
    content: ''; position: fixed; border-radius: 50%;
    filter: blur(120px); pointer-events: none; z-index: 0;
    animation: drift1 16s ease-in-out infinite;
  }
  body::before {
    width: 600px; height: 600px; top: -200px; right: -150px;
    background: rgba(157, 142, 216, 0.38);
  }
  body::after {
    width: 450px; height: 450px; bottom: -100px; left: -150px;
    background: rgba(109, 196, 208, 0.28);
    animation: drift2 22s ease-in-out infinite;
    animation-delay: -6s;
  }
  @keyframes drift1 {
    0%   { transform: translate(0,0) scale(1); }
    25%  { transform: translate(-70px, 50px) scale(1.12); }
    50%  { transform: translate(50px, 90px) scale(0.95); }
    75%  { transform: translate(90px, -40px) scale(1.08); }
    100% { transform: translate(0,0) scale(1); }
  }
  @keyframes drift2 {
    0%   { transform: translate(0,0) scale(1); }
    33%  { transform: translate(80px, -60px) scale(1.15); }
    66%  { transform: translate(-60px, -30px) scale(0.92); }
    100% { transform: translate(0,0) scale(1); }
  }
  @keyframes drift3 {
    0%   { transform: translate(-50%, -50%) scale(1); }
    50%  { transform: translate(-42%, -58%) scale(1.18); }
    100% { transform: translate(-50%, -50%) scale(1); }
  }
  @keyframes shimmer { from { background-position: 0% center; } to { background-position: 100% center; } }

  .page-wrap { position: relative; z-index: 1; }

  .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

  /* ── Navigation ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(18, 14, 36, 0.65);
    border-bottom: 1px solid rgba(157, 142, 216, 0.16);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  }
  .nav-inner {
    max-width: 1140px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-brand {
    font-size: 18px; font-weight: 600; letter-spacing: 0.5px;
    text-decoration: none; color: var(--cosmos-bright);
  }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a {
    font-size: 14px; font-weight: 500; text-decoration: none;
    color: var(--text-muted); transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--text); }

  /* ── Buttons ── */
  .btn {
    display: inline-block; padding: 12px 28px; border-radius: 8px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer; border: none;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary {
    color: #FFFFFF; border: 2px solid transparent; border-radius: 8px;
    background:
      linear-gradient(#1c1736, #1c1736) padding-box,
      linear-gradient(100deg, var(--cosmos-bright) 0%, var(--cosmos-bright) 40%, var(--shore-bright) 50%, var(--cosmos-bright) 60%, var(--cosmos-bright) 100%) border-box;
    background-size: 100% 100%, 300% 100%;
    animation: borderShimmer 8s linear infinite;
  }
  .btn-primary:hover { box-shadow: 0 8px 26px rgba(125, 110, 200, 0.5); }
  @keyframes borderShimmer { to { background-position: 0 0, 100% 0; } }
  .btn-ghost { background: rgba(255,255,255,0.07); color: var(--text); border: 1px solid rgba(157,142,216,0.28); }
  .btn-ghost:hover { background: rgba(255,255,255,0.14); }
  .btn-sm { padding: 10px 22px; font-size: 13px; }

  /* ── Hero Section ── */
  .hero {
    padding-top: 140px; padding-bottom: 32px;
    text-align: center;
    position: relative;
  }
  .hero .section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 16px;
  }
  .hero .section-label.is-personalized {
    font-size: 24px; font-weight: 400; letter-spacing: 0;
    text-transform: none; color: var(--text); margin-bottom: 4px;
  }
  .hero h1 {
    font-size: 80px; font-weight: 300; line-height: 1.0;
    margin-bottom: 12px;
    background: linear-gradient(100deg, var(--cosmos-bright) 0%, var(--cosmos-bright) 44%, var(--shore-bright) 50%, var(--cosmos-bright) 56%, var(--cosmos-bright) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: shimmer 6s linear infinite;
  }
  .hero .subtitle-large {
    font-size: 26px; font-weight: 400;
    margin-bottom: 28px;
    color: var(--text);
  }
  .hero .subtitle {
    font-size: 17px; font-weight: 400; max-width: 520px; margin: 0 auto;
    color: var(--text-muted);
  }

  /* ── Demo Box ── */
  .demo-section {
    padding: 24px 0 48px;
  }
  .demo-box {
    max-width: 680px; margin: 0 auto;
    background: linear-gradient(135deg, #2D2645 0%, #3D3570 60%, #4A5A6A 100%);
    border-radius: 20px; padding: 56px 48px;
    text-align: center; color: #EAE3F5;
    position: relative; overflow: hidden;
    box-shadow: 0 32px 80px rgba(45, 38, 69, 0.3), 0 0 0 1px rgba(157,142,216,0.1);
  }
  .demo-box::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(157,142,216,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(109,196,208,0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  .demo-box h2 {
    font-family: 'DM Mono', monospace;
    font-size: 20px; font-weight: 400; margin-bottom: 20px;
    position: relative;
  }
  .demo-box p {
    font-size: 15px; line-height: 1.7; color: rgba(234,227,245,0.7);
    max-width: 480px; margin: 0 auto 32px; position: relative;
  }
  .demo-phone {
    font-family: 'DM Mono', monospace;
    font-size: 28px; font-weight: 400;
    color: var(--shore-bright);
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
  }
  .demo-fine {
    font-size: 13px; color: rgba(234,227,245,0.5);
    position: relative;
  }

  /* ── How It Works ── */
  .how-it-works {
    padding: 48px 0 80px;
    text-align: center;
  }
  .how-it-works h2 {
    font-size: 36px; font-weight: 300; margin-bottom: 64px;
    color: var(--text);
  }
  .steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    position: relative;
    text-align: center;
  }
  .steps-grid::before {
    content: ''; position: absolute; top: 36px;
    left: calc(16.67% + 24px); right: calc(16.67% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--cosmos), var(--shore));
    opacity: 0.2;
  }
  .step-card { position: relative; }
  .step-number {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 20px; font-weight: 600; color: #FFFFFF;
    background: linear-gradient(135deg, var(--cosmos-deep), var(--cosmos));
    position: relative; z-index: 1;
    box-shadow: 0 4px 20px rgba(91,78,138,0.35);
  }
  .step-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
  .step-card p { font-size: 15px; color: var(--text-muted); max-width: 300px; margin: 0 auto; }

  /* ── CTA Section ── */
  .cta-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
  }
  .cta-section h2 {
    font-size: 36px; font-weight: 300; margin-bottom: 16px;
    color: var(--text);
  }
  .cta-section .subtitle {
    font-size: 17px; color: var(--text-muted); max-width: 560px;
    margin: 0 auto;
  }

  /* ── Divider ── */
  .divider {
    width: 80px; height: 2px; margin: 0 auto;
    background: linear-gradient(90deg, var(--cosmos), var(--shore));
    opacity: 0.35; border-radius: 2px;
  }

  /* ── Booking embed ── */
  .booking-section {
    padding: 48px 0 120px;
    text-align: center;
  }
  .booking-embed {
    max-width: 900px; margin: 0 auto;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(157, 142, 216, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(45,38,69,0.08);
    display: grid; grid-template-columns: 320px 1fr;
    min-height: 440px;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  }
  .booking-left {
    padding: 40px 32px;
    text-align: left;
    border-right: 1px solid rgba(157, 142, 216, 0.1);
  }
  .booking-left h3 {
    font-size: 18px; font-weight: 600; margin-bottom: 16px; color: var(--text);
  }
  .booking-meta {
    display: flex; flex-direction: column; gap: 8px;
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 24px;
  }
  .booking-meta span {
    display: flex; align-items: center; gap: 8px;
  }
  .booking-meta svg {
    width: 16px; height: 16px; stroke: var(--text-muted);
    fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  }
  .booking-right {
    padding: 40px 32px;
  }
  .booking-right h4 {
    font-size: 15px; font-weight: 600; margin-bottom: 20px; color: var(--text);
  }
  .calendar-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
    text-align: center; font-size: 13px; margin-bottom: 24px;
  }
  .calendar-grid .day-label {
    font-size: 11px; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 8px 0;
  }
  .calendar-grid .day {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    font-size: 14px; color: var(--lilac-deep);
    cursor: default;
  }
  .calendar-grid .day.available {
    color: var(--text); font-weight: 500; cursor: pointer;
    transition: background 0.2s;
  }
  .calendar-grid .day.available:hover {
    background: var(--lilac);
  }
  .calendar-grid .day.selected {
    background: var(--cosmos-deep); color: #FFFFFF; font-weight: 600;
  }
  .calendar-grid .day.empty { visibility: hidden; }
  .time-slots {
    display: flex; flex-direction: column; gap: 8px;
    max-height: 260px; overflow-y: auto;
  }
  .time-slot {
    padding: 10px 16px; border-radius: 8px;
    border: 1.5px solid rgba(157, 142, 216, 0.15);
    font-size: 14px; font-weight: 500; color: var(--text);
    text-align: center; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: rgba(255,255,255,0.4);
  }
  .time-slot:hover {
    border-color: var(--cosmos); background: var(--lilac);
  }

  /* ── Footer ── */
  footer {
    padding: 48px 0; text-align: center; font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid rgba(157, 142, 216, 0.12);
    position: relative; z-index: 1;
  }
  footer a { color: var(--cosmos-bright); text-decoration: none; }

  /* ── Scroll animations ── */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .hero h1 { font-size: 52px; }
    .hero .subtitle-large { font-size: 20px; }
    .steps-grid { grid-template-columns: 1fr; gap: 48px; }
    .steps-grid::before { display: none; }
    .demo-box { padding: 40px 24px; }
    .demo-phone { font-size: 22px; }
    .booking-embed { grid-template-columns: 1fr; }
    .booking-left { border-right: none; border-bottom: 1px solid rgba(157,142,216,0.1); }
    .cta-section h2, .how-it-works h2 { font-size: 30px; }
    .nav-links { gap: 16px; }
  }

/* ── Demo call form ── */
.demo-form { display: flex; gap: 8px; max-width: 380px; margin: 0 auto 12px; }
.demo-form input {
  flex: 1; padding: 12px 16px; border-radius: 8px; border: none;
  font-size: 15px; font-family: inherit;
}
.demo-form .btn-primary { white-space: nowrap; }
.demo-status { font-size: 14px; min-height: 20px; color: var(--shore-bright); }
.demo-consent { display: block; max-width: 380px; margin: 0 auto 12px; text-align: left; }
.demo-consent-head { display: flex; align-items: center; gap: 8px; }
.demo-consent input { flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--cosmos); }
.demo-consent-title { font-size: 15px; font-weight: 600; color: var(--text); }
.demo-consent-fine { display: block; margin-top: 6px; font-size: 12px; line-height: 1.45; color: rgba(234,227,245,0.55); }
.demo-consent a { color: var(--cosmos-bright); text-decoration: underline; }

/* ── Legal pages (privacy, terms) ── */
.legal h1 { margin-bottom: 6px; }
.legal h2 { margin-top: 40px; margin-bottom: 12px; }
.legal p { margin-bottom: 16px; line-height: 1.7; }
.legal ul { margin: 0 0 16px; padding-left: 28px; }
.legal li { margin-bottom: 8px; line-height: 1.6; }
.legal a { color: var(--cosmos-bright); text-decoration: underline; }
.legal a:hover { color: var(--text); }

/* ── Anchor scrolling (clear the fixed nav) ── */
html { scroll-behavior: smooth; }
#pricing, #book { scroll-margin-top: 88px; }

/* ── Pricing ── */
.pricing-section { padding: 48px 0; text-align: center; }
.section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--shore-bright); margin-bottom: 28px; }
.price-card {
  width: fit-content; max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 48px 64px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.price-tag-label { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--cosmos-bright); margin-bottom: 12px; }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 6px; }
.price-num { font-size: 56px; font-weight: 300; color: #fff; line-height: 1; }
.price-per { font-size: 16px; color: var(--text-muted); }
.price-note { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.price-feats { list-style: none; text-align: left; margin: 0 auto 28px; width: fit-content; max-width: 100%; display: flex; flex-direction: column; gap: 12px; }
.price-feats li { position: relative; padding-left: 30px; font-size: 15px; color: var(--text); line-height: 1.5; }
.price-feats li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--shore-bright); font-weight: 700; }
.price-cta { width: 100%; box-sizing: border-box; text-align: center; margin-bottom: 16px; }
.price-fine { font-size: 13px; color: var(--text-muted); }
.price-anchor { margin-top: 28px; font-size: 16px; color: rgba(255,255,255,0.7); font-style: italic; }

/* ── Book card (exact practitioner cta-block layout; Novie gradient) ── */
.book-section { padding: 48px 0 64px; }
.book-card {
  position: relative; overflow: hidden; max-width: 95%; margin: 0 auto;
  border-radius: 24px; padding: 72px 56px;
  display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: start; text-align: left;
  background: linear-gradient(120deg, rgba(91,78,138,0.5) 0%, rgba(45,38,69,0.55) 50%, rgba(109,196,208,0.32) 125%);
  border: 1px solid rgba(157,142,216,0.2);
}
.book-card::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 400px 200px at 20% 10%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(ellipse 500px 300px at 80% 90%, rgba(126,212,222,0.20), transparent 60%);
}
.book-cal, .book-copy { position: relative; z-index: 1; }
.book-cal .booking-wrap { max-width: 400px; margin: 0 auto; width: 100%; }
.book-cal .booking-wrap > div:empty { display: none; }
.book-copy { display: flex; flex-direction: column; }
.book-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--shore-bright); margin-bottom: 16px; }
.book-copy h2 { font-size: clamp(32px, 4vw, 44px); font-weight: 300; line-height: 1.2; letter-spacing: -0.01em; color: #fff; margin-bottom: 16px; }
.book-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 56ch; }
@media (max-width: 1023px) {
  .book-card { grid-template-columns: 1fr; gap: 32px; text-align: center; padding: 56px 40px; }
  .book-copy { order: -1; }
}
@media (max-width: 600px) {
  .book-card { padding: 36px 20px; border-radius: 16px; max-width: 100%; gap: 24px; }
  .book-copy h2 { font-size: 24px; }
  .book-sub { font-size: 14px; }
}

/* ── Booking widget (mirrors the practitioner booking widget) ── */
.booking-wrap { max-width: 460px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 14px; }

/* calendar */
.bk-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.bk-cal-title { font-size: 15px; font-weight: 600; color: var(--text); }
.bk-nav { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: var(--text); cursor: pointer; font-size: 16px; }
.bk-nav:hover { background: rgba(255,255,255,0.16); }
.bk-nav[disabled] { opacity: 0.3; cursor: not-allowed; }
.bk-dow { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 4px; }
.bk-dow span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5); text-align: center; padding: 4px 0; }
.bk-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.bk-day { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); cursor: pointer;
  background: transparent; border: none; transition: all 0.15s; font-family: inherit; }
.bk-day:hover { background: rgba(255,255,255,0.12); }
.bk-day.disabled { color: rgba(255,255,255,0.22); cursor: default; }
.bk-day.disabled:hover { background: transparent; }
.bk-day.today { box-shadow: inset 0 0 0 1.5px var(--cosmos-bright); }
.bk-day.selected { background: var(--cosmos-bright); color: #1a1430; font-weight: 600; }
.bk-day.empty { visibility: hidden; }

/* slots */
.bk-slots-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--cosmos-bright); margin-bottom: 7px; }
.bk-slots { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.bk-slot { padding: 8px 0; font-size: 13px; font-weight: 500; text-align: center; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85);
  cursor: pointer; transition: all 0.15s; }
.bk-slot:hover { border-color: var(--cosmos-bright); color: var(--cosmos-bright); }
.bk-slot.selected { background: var(--cosmos-bright); border-color: var(--cosmos-bright); color: #1a1430; }
.bk-empty { font-size: 13px; color: rgba(255,255,255,0.5); font-style: italic; }

/* summary bar */
.bk-summary { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); }
.bk-change { margin-left: auto; color: var(--cosmos-bright); font-size: 12px; text-decoration: underline; cursor: pointer; background: none; border: none; font-family: inherit; }

/* form */
.bk-form { display: flex; flex-direction: column; gap: 10px; }
.bk-form h3 { font-size: 18px; font-weight: 600; color: #fff; margin: 0; }
.bk-field { display: flex; flex-direction: column; }
.bk-field label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--cosmos-bright); margin-bottom: 6px; }
.bk-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk-form input:not([type="checkbox"]), .bk-form textarea { width: 100%; font-size: 14px; padding: 10px 12px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff;
  box-sizing: border-box; outline: none; font-family: inherit; }
.bk-form input::placeholder, .bk-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.bk-form textarea { min-height: 80px; resize: vertical; }
.bk-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.bk-consent input { accent-color: var(--cosmos-bright); margin-top: 2px; width: auto; flex: 0 0 auto; }
.bk-submit { padding: 12px 18px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  color: #1a1430; background: var(--cosmos-bright);
  border: none; border-radius: 8px; cursor: pointer; transition: opacity 0.15s, box-shadow 0.15s; }
.bk-submit:hover { box-shadow: 0 8px 24px rgba(181,168,232,0.4); }
.bk-submit[disabled] { opacity: 0.6; cursor: not-allowed; }

/* success */
.bk-success { padding: 18px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); }
.bk-success h3 { font-size: 16px; font-weight: 600; color: var(--cosmos-bright); margin: 0 0 8px; }
.bk-success p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.8); margin: 0; }

.booking-msg { font-size: 14px; min-height: 20px; margin-top: 8px; }
.booking-msg.ok { color: #6ddf9e; }
.booking-msg.err { color: #ff8a95; }
.hp-field { position: absolute; left: -9999px; }


/* ============================================================
   GRAIN TEXTURE — full-page paper tooth. Added 2026-06-10. 0.28.
   Reversible: delete this block.
   ============================================================ */
html::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  mix-blend-mode: overlay;
  opacity: 0.28;
}
