/* MeetEmmy — shared booking section. Self-contained / scoped under .me-book
   so it renders consistently on every page regardless of the host page's
   own CSS variables. */
.me-book {
  --me-ink: #17181b;
  --me-paper: #ffffff;
  --me-mustard: #fb5e0e;
  --me-mustard-dark: #d94700;
  --me-line: #dfe2e6;
  --me-muted: rgba(255, 255, 255, 0.82);
  all: revert-layer;
  box-sizing: border-box;
  margin: 0;
  padding: 96px 0;
  background: var(--me-ink);
  color: var(--me-paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.me-book *,
.me-book *::before,
.me-book *::after { box-sizing: border-box; }

.me-book__shell { width: min(880px, calc(100% - 40px)); margin: 0 auto; }

.me-book__head { text-align: center; margin-bottom: 44px; }
.me-book__eyebrow {
  margin: 0 0 16px;
  color: var(--me-mustard);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.me-book__title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--me-paper);
}
.me-book__sub {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--me-muted);
  font-size: 1.1rem;
  line-height: 1.55;
}
.me-book__badge {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.me-book__card {
  background: var(--me-paper);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
/* GHL form_embed.js sets the iframe height to fit its content once it
   loads. We only provide a modest floor so the area isn't empty before the
   resizer runs. Do not set a large min-height — it overrides the resizer and
   just adds blank space without showing more time slots (the slot list
   scrolls inside GHL's own widget). */
.me-book__card iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
}

.me-book__fallback { margin-top: 30px; text-align: center; }
.me-book__fallback > p { margin: 0 0 18px; color: var(--me-muted); font-size: 1rem; }
.me-book__form {
  max-width: 620px;
  margin: 0 auto;
  padding: 26px;
  background: var(--me-paper);
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
}
.me-book__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.me-book__form input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 11px 14px;
  background: var(--me-paper);
  color: var(--me-ink);
  border: 1px solid var(--me-line);
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
}
.me-book__form input:focus {
  border-color: var(--me-mustard);
  box-shadow: 0 0 0 3px rgba(251, 94, 14, 0.25);
}
.me-book__form input::placeholder { color: #9ca2aa; }
.me-book__form button {
  display: block;
  width: 100%;
  margin-top: 14px;
  min-height: 52px;
  padding: 12px 22px;
  background: var(--me-mustard);
  color: #fff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  transition: background-color 0.18s ease;
}
.me-book__form button:hover { background: var(--me-mustard-dark); }
.me-book__form button:disabled { opacity: 0.7; cursor: not-allowed; }

.me-book__status { margin-top: 12px; font-size: 0.9rem; min-height: 1.2em; color: var(--me-muted); }
.me-book__status.error { color: #ff9d9d; }
.me-book__status.success { color: #8fe6bd; }

@media (max-width: 760px) {
  .me-book { padding: 64px 0; }
  .me-book__form { padding: 20px 16px; }
  .me-book__grid { grid-template-columns: 1fr; }
}

/* Legal footer bar (shared) */
.me-legal{background:#111318;border-top:1px solid rgba(255,255,255,.1);padding:26px 20px;text-align:center}
.me-legal p{margin:0;color:rgba(255,255,255,.62);font-family:"Inter",system-ui,sans-serif;font-size:.78rem;letter-spacing:.02em}
.me-legal a{color:#fb5e0e;text-decoration:none;font-weight:700}
.me-legal a:hover{text-decoration:underline}
