/* ============================================================
   MSW — Scroll Progress Bar
   ============================================================ */

.gc-scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 99999;
    pointer-events: none;
    background: rgba(184,149,58,0.12);
}

.gc-scroll-bar__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #b8953a, #ecddb8, #d4af6a, #b8953a);
    background-size: 200% 100%;
    transition: width 0.08s linear;
    animation: gc-scroll-bar-shimmer 3s linear infinite;
    will-change: width;
}

@keyframes gc-scroll-bar-shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* ============================================================
   MSW — Sticky Book Button
   ============================================================ */

.gc-sticky-book {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 0.55rem;

    background: #b8953a;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;

    padding: 0.85rem 1.5rem 0.85rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 4px 20px rgba(184,149,58,0.45),
        0 1px 4px rgba(0,0,0,0.2);

    /* Hidden off-screen initially */
    transform: translateY(120%) scale(0.9);
    opacity: 0;
    transition:
        transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
        opacity   0.35s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

    pointer-events: none;
}

/* Visible state — added by JS */
.gc-sticky-book.is-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Hover */
.gc-sticky-book:hover {
    background: #d4af6a;
    box-shadow:
        0 6px 28px rgba(184,149,58,0.6),
        0 2px 6px rgba(0,0,0,0.2);
    color: #fff;
}

.gc-sticky-book:hover .gc-sticky-book__arrow {
    transform: translateX(3px);
}

/* ── Pulse rings ── */
.gc-sticky-book__ring {
    position: absolute;
    inset: 0;
    border-radius: 100px;
    border: 1.5px solid #b8953a;
    opacity: 0;
    animation: gc-sticky-ring 2.5s ease-out infinite;
    pointer-events: none;
}
.gc-sticky-book__ring--2 { animation-delay: 1.25s; }

@keyframes gc-sticky-ring {
    0%   { transform: scale(1);    opacity: 0.6; }
    100% { transform: scale(1.35); opacity: 0;   }
}

/* ── Icons ── */
.gc-sticky-book__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.gc-sticky-book__arrow {
    width: 13px;
    height: 9px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

/* ── Mobile — icon only ── */
@media (max-width: 640px) {
    .gc-sticky-book {
        bottom: 1.25rem;
        right: 1.25rem;
        padding: 0.9rem;
        border-radius: 50%;
        gap: 0;
    }
    .gc-sticky-book__label,
    .gc-sticky-book__arrow { display: none; }
    .gc-sticky-book__icon  { width: 20px; height: 20px; }
}

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .gc-sticky-book { transition: opacity 0.3s ease; }
    .gc-sticky-book__ring,
    .gc-scroll-bar__fill { animation: none; }
}

/* ============================================================
   MSW — Global Typography
   18px Montserrat for all body text across every widget.
   16px Montserrat for all overlines / eyebrows.
   Headings (h1–h6) are untouched — they keep their per-widget
   Cormorant Garamond / Trajan Pro settings.
   ============================================================ */

/* ── Body text ── */
[class*="elementor-widget-msw"] p,
[class*="elementor-widget-msw"] li,
[class*="elementor-widget-msw"] td,
[class*="elementor-widget-msw"] th,
[class*="elementor-widget-msw"] blockquote {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

/* ── Overlines & eyebrows — every variant across all widgets ── */
.gc-gr__overline,
.gc-gr__eyebrow,
.gc-overline,
.gc-prl-overline,
.gc-pd-overline,
.gc-journey-overline,
.gc-exp-overline,
.gc-exs-overline,
.gc-rec-overline,
.gc-reviews-header__overline,
.gc-stats-overline,
.gc-services-header__overline,
.gc-ch__eyebrow,
.gc-ch__form-overline span:not([class]) {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
}
