/* Gh Pro Fugu — lead-capture popup styles (Refined Heritage). */
.gpf-overlay {
    position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center;
    padding: 20px; background: rgba(36, 27, 17, .55); opacity: 0; transition: opacity .28s ease;
}
.gpf-overlay.show { opacity: 1; }
.gpf-card {
    position: relative; width: 100%; max-width: 420px; background: #FBF7EE; border: 1px solid #E6D9BF;
    border-radius: 14px; padding: 42px 34px 30px; text-align: center; box-shadow: 0 30px 70px rgba(36, 27, 17, .35);
    transform: translateY(14px) scale(.98); transition: transform .3s cubic-bezier(.2, .7, .2, 1);
    font-family: 'Manrope', system-ui, sans-serif;
}
.gpf-overlay.show .gpf-card { transform: none; }
.gpf-eyebrow { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: #B07A2C; margin-bottom: 14px; }
.gpf-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 30px; line-height: 1.12; color: #241B11; margin: 0 0 12px; }
.gpf-sub { font-size: 14px; line-height: 1.6; color: #6E6253; margin: 0 0 20px; }
.gpf-form { display: flex; flex-direction: column; gap: 10px; }
.gpf-input { width: 100%; padding: 13px 15px; border: 1px solid #DCD1BC; border-radius: 8px; background: #fff; font-size: 15px; color: #241B11; box-sizing: border-box; }
.gpf-input:focus { outline: none; border-color: #B07A2C; box-shadow: 0 0 0 3px rgba(176, 122, 44, .12); }
.gpf-btn { width: 100%; padding: 13px 16px; border: 0; border-radius: 8px; background: #B07A2C; color: #FBF4E6; font-weight: 700; font-size: 14px; letter-spacing: .02em; cursor: pointer; transition: background .2s; box-sizing: border-box; }
.gpf-btn:hover { background: #8C5E1E; }
.gpf-btn:disabled { opacity: .6; cursor: default; }
.gpf-msg { min-height: 1em; font-size: 13px; margin-top: 10px; }
.gpf-msg.err { color: #A9492E; }
.gpf-msg.ok { color: #2F7D3A; }
.gpf-decline { margin-top: 14px; background: none; border: 0; color: #9A8F7A; font-size: 12.5px; cursor: pointer; text-decoration: underline; }
.gpf-decline:hover { color: #241B11; }
.gpf-x { position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 26px; line-height: 1; color: #9A8F7A; cursor: pointer; padding: 4px; }
.gpf-x:hover { color: #241B11; }
.gpf-code { margin: 6px 0 4px; padding: 14px; border: 1.5px dashed #B07A2C; border-radius: 10px; font-size: 16px; color: #241B11; background: #fff; }
.gpf-code strong { font-family: 'Courier New', monospace; letter-spacing: 2px; color: #8C5E1E; font-size: 19px; }

/* Stage 2: slide-in */
.gpf-slide {
    position: fixed; z-index: 9998; right: 22px; bottom: 22px; width: 320px; max-width: calc(100vw - 32px);
    background: #FBF7EE; border: 1px solid #E6D9BF; border-radius: 12px; padding: 22px 20px 20px;
    box-shadow: 0 20px 50px rgba(36, 27, 17, .28); transform: translateY(20px); opacity: 0;
    transition: transform .32s cubic-bezier(.2, .7, .2, 1), opacity .32s ease; font-family: 'Manrope', system-ui, sans-serif;
}
.gpf-slide.show { transform: none; opacity: 1; }
.gpf-slide .gpf-eyebrow { margin-bottom: 6px; }
.gpf-slide-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 19px; line-height: 1.2; color: #241B11; margin: 0 0 14px; }
@media (max-width: 480px) {
    .gpf-slide { left: 12px; right: 12px; bottom: 12px; width: auto; }
    .gpf-card { padding: 36px 22px 26px; }
    .gpf-title { font-size: 26px; }
}
