/**
 * Public booking form (Anna-ready). Accent via --book-accent.
 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --book-accent: #e91e8c;
  --book-fg: #222;
  --book-muted: #666;
  --book-bg: #fff;
  --book-line: #e6e6e6;
  --book-radius: 12px;
  --book-font: "Montserrat", system-ui, sans-serif;
}

html.night {
  --book-fg: #f2f2f2;
  --book-muted: #b0b0b0;
  --book-bg: #141414;
  --book-line: #333;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--book-font);
  font-size: 15px;
  color: var(--book-fg);
  background: transparent;
}

html.embed body { background: transparent; }

.book-wrap {
  max-width: 420px;
  margin: 0 auto;
  padding: 1rem 1rem 1.25rem;
  background: var(--book-bg);
  border: 1px solid var(--book-line);
  border-radius: var(--book-radius);
}

.book-head h1 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.book-sub {
  margin: 0 0 0.5rem;
  color: var(--book-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.book-direct {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.book-direct a {
  color: var(--book-accent);
  font-weight: 600;
  text-decoration: underline;
}

.book-steps {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.book-step {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--book-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--book-muted);
}

.book-step.is-on {
  background: var(--book-accent);
  border-color: var(--book-accent);
  color: #fff;
}

.book-form label {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.book-form .opt {
  font-weight: 400;
  color: var(--book-muted);
}

.book-form input[type="text"],
.book-form input[type="email"],
.book-form input[type="tel"],
.book-form input[type="date"],
.book-form select,
.book-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--book-line);
  border-radius: 8px;
  font: inherit;
  color: inherit;
  background: transparent;
}

.book-check {
  display: flex !important;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500 !important;
}

.book-check input { width: auto; margin: 0; }

.book-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.book-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  background: var(--book-accent);
  color: #fff;
}

.book-btn.ghost {
  background: transparent;
  color: var(--book-fg);
  border: 1px solid var(--book-line);
}

.book-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.book-err {
  color: #c00;
  font-size: 0.85rem;
  margin: 0.5rem 0;
}

.book-thanks h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.book-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
}
