/**
 * Styles for templates/book.php's own page chrome only — the minimal top
 * bar with the brand mark and close link. Enqueued conditionally, never
 * loaded on any other page. Everything inside the card itself (questions,
 * options, the Calendly embed) is pm/book-funnel's own style.css, since
 * that content is a real block now, not hardcoded in the template.
 */
.pm-book {
    background: var(--bg);
    color: var(--ink);
}

.book-top {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(21, 22, 26, .86);
    backdrop-filter: blur(10px);
}

.book-top .custom-logo-link img {
    display: block;
    width: auto;
    height: auto;
    max-height: 32px;
    max-width: 100%;
}

.brand-txt {
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    font-size: 1.1875rem;
    letter-spacing: -.015em;
    color: var(--ink);
}

.book-close {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--mut);
    font-size: 20px;
    line-height: 1;
}

.book-close:hover {
    color: var(--accent-soft);
    border-color: var(--accent-soft);
}
