/* Vintage Book Publishers — brand tokens (matches logo: orange + warm brown) */
:root {
    --vbp-primary: #f9812a;
    --vbp-primary-dark: #e56f1a;
    --vbp-primary-soft: #fff3e8;
    --vbp-secondary: #604d41;
    --vbp-secondary-dark: #3d3029;
    --vbp-text: #1a1a1a;
    --vbp-muted: #5c4e47;
    --vbp-bg: #ffffff;
    --vbp-surface: #faf8f5;
}

::selection {
    background: rgba(249, 129, 42, 0.25);
    color: var(--vbp-text);
}

body {
    color: var(--vbp-muted);
    background-color: var(--vbp-bg);
}

h1, h2, h3, h4, h5, h6,
.unii-h1-head {
    color: var(--vbp-text);
}

a {
    color: var(--vbp-secondary);
}

a:hover {
    color: var(--vbp-primary-dark);
}

/* Top promo bar — deep brand brown with orange accents */
.top-bar {
    background: linear-gradient(90deg, var(--vbp-secondary-dark) 0%, var(--vbp-secondary) 100%) !important;
    border-bottom: 2px solid var(--vbp-primary);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px;
    height: auto !important;
    padding: 0 20px !important;
    position: relative;
    z-index: 99999;
}

.top-bar .tb-inner {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    flex-wrap: wrap;
}

.top-bar .tb-left,
.top-bar .tb-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.top-bar .tb-link {
    color: #fff !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.top-bar .tb-link:hover {
    color: var(--vbp-primary) !important;
    background: rgba(255, 255, 255, 0.06);
}

.top-bar .tb-link i {
    color: var(--vbp-primary);
    font-size: 13px;
    width: 14px;
    text-align: center;
}

.top-bar .tb-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
    display: inline-block;
}

.top-bar .tb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    line-height: 1;
}

.top-bar .tb-btn i {
    font-size: 12px;
}

.top-bar .tb-btn-ghost {
    color: #fff !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.top-bar .tb-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff !important;
    transform: translateY(-1px);
}

.top-bar .tb-btn-solid {
    color: #fff !important;
    background: linear-gradient(90deg, var(--vbp-primary) 0%, var(--vbp-primary-dark) 100%);
    box-shadow: 0 4px 12px rgba(249, 129, 42, 0.35);
    border: 1px solid transparent;
}

.top-bar .tb-btn-solid:hover {
    background: linear-gradient(90deg, var(--vbp-primary-dark) 0%, var(--vbp-primary) 100%);
    box-shadow: 0 6px 16px rgba(249, 129, 42, 0.45);
    transform: translateY(-1px);
    color: #fff !important;
}

/* Tablet — drop the long email label, keep phone visible */
@media (max-width: 900px) {
    .top-bar { padding: 0 12px !important; min-height: 44px; }
    .top-bar .tb-inner {
        gap: 10px;
        padding: 6px 0;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .top-bar .tb-left,
    .top-bar .tb-right {
        gap: 4px;
        flex-wrap: nowrap;
    }
    .top-bar .tb-sep { display: none; }
    .top-bar .tb-link { padding: 6px 8px; font-size: 12.5px; }
    .top-bar .tb-btn { padding: 7px 14px; font-size: 12.5px; }
    .top-bar .tb-left .tb-link[href^="mailto:"] .tb-text { display: none; }
}

/* Small tablets / large phones — icon-only left group (email + phone both collapse) */
@media (max-width: 640px) {
    .top-bar .tb-link .tb-text { display: none; }
    .top-bar .tb-link { padding: 8px 10px; }
    .top-bar .tb-link i {
        font-size: 14px;
        width: auto;
        margin: 0;
    }
    .top-bar .tb-btn { padding: 7px 12px; font-size: 12px; }
    .top-bar .tb-btn i { font-size: 11px; }
}

/* Phones — compact pills, two-row wrap if content exceeds viewport */
@media (max-width: 420px) {
    .top-bar { padding: 0 8px !important; }
    .top-bar .tb-inner { gap: 6px; padding: 6px 0; }
    .top-bar .tb-left,
    .top-bar .tb-right { gap: 2px; }
    .top-bar .tb-link { padding: 7px 8px; }
    .top-bar .tb-btn {
        padding: 6px 11px;
        font-size: 11.5px;
        letter-spacing: 0.2px;
    }
    .top-bar .tb-btn i { font-size: 11px; }
}

/* Ultra-narrow (<360px) — pills shrink further, icons tighten */
@media (max-width: 360px) {
    .top-bar .tb-btn { padding: 6px 10px; font-size: 11px; }
    .top-bar .tb-btn i { font-size: 10.5px; }
    .top-bar .tb-link { padding: 6px 7px; }
    .top-bar .tb-link i { font-size: 13px; }
}

/* Primary CTAs (header top bar uses .cta-roundss above, not this block) */
.cta-btn.orange,
button.cta-btn.orange,
input.cta-btn.orange {
    background-color: var(--vbp-primary) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.cta-btn.orange:hover {
    background-color: var(--vbp-primary-dark) !important;
}

.cta-btn.black {
    background-color: var(--vbp-secondary) !important;
    color: #fff !important;
}

.cta-btn.orange .icon-wrap .icon {
    color: #fff !important;
}

.cta-btn.orange .icon-wrap .arrow-line {
    background-color: #fff !important;
}

.cta-btn.black .icon-wrap .icon {
    color: #fff !important;
}

.cta-btn.black .icon-wrap .arrow-line {
    background-color: #fff !important;
}

/* Marquee ticker */
.marquee {
    background: linear-gradient(90deg, var(--vbp-primary) 0%, var(--vbp-primary-dark) 100%) !important;
    color: #fff !important;
}

/* Header nav accents */
.toplinks .top li a span,
#globalHeader .hasSub > a span {
    color: var(--vbp-primary) !important;
}

/* Footer — secondary brown */
#globalFooter {
    background-color: var(--vbp-secondary) !important;
}

#globalFooter::after {
    background: rgba(96, 77, 65, 0.88) !important;
}

#globalFooter a {
    color: rgba(255, 255, 255, 0.92);
}

#globalFooter a:hover {
    color: var(--vbp-primary) !important;
}

/* Footer logo readability on dark background */
#globalFooter .icon-h .spacer,
#globalFooter .col[data-num="2"] .logo {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

#globalFooter .icon-h .spacer {
    max-width: 120px;
    height: auto;
}

#globalFooter .col[data-num="2"] .logo {
    max-width: 160px;
    height: auto;
}

/* Subtle section tints */
.section--cream,
.bg-light-custom {
    background-color: var(--vbp-surface) !important;
}

/* Recent Publications — brand-aligned redesign */
#home-blog {
    position: relative;
    z-index: 8;
    background: linear-gradient(180deg, var(--vbp-surface) 0%, #fff 100%);
    padding: 90px 0 100px !important;
    overflow: hidden;
}

#home-blog::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(249, 129, 42, 0.12) 0%, rgba(249, 129, 42, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

#home-blog::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(96, 77, 65, 0.1) 0%, rgba(96, 77, 65, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

#home-blog header {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto 48px;
}

#home-blog header .vbp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--vbp-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

#home-blog header .vbp-eyebrow::before,
#home-blog header .vbp-eyebrow::after {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--vbp-primary);
    border-radius: 2px;
}

#home-blog header h2.vbp-section-title {
    font-family: "mrs-eaves-xl-serif", "Playfair Display", Georgia, serif !important;
    font-size: clamp(36px, 5vw, 58px) !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
    color: var(--vbp-text) !important;
    margin: 0 0 8px !important;
    letter-spacing: -0.5px;
}

#home-blog header h2.vbp-section-title .accent {
    color: var(--vbp-primary);
    font-style: italic;
}

#home-blog header .vbp-title-rule {
    display: inline-block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--vbp-primary) 0%, var(--vbp-primary-dark) 100%);
    border-radius: 3px;
    margin: 18px auto 22px;
}

#home-blog header p.vbp-section-lede {
    color: var(--vbp-muted) !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
    max-width: 780px;
    margin: 0 auto !important;
}

#home-blog .book-slider-wrp {
    position: relative;
    z-index: 2;
    padding: 10px 0;
}

#home-blog .book-slider {
    margin-top: 10px;
}

#home-blog .book-slider .slick-slide {
    height: auto;
    padding: 22px 10px;
    box-sizing: border-box;
    text-align: center;
}

#home-blog .book-slider .slick-slide img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: 320px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 6px;
    background: linear-gradient(180deg, #faf8f5 0%, #f3ece3 100%);
    box-shadow: 0 14px 32px rgba(61, 48, 41, 0.22), 0 3px 8px rgba(61, 48, 41, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#home-blog .book-slider .slick-slide:hover img {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 44px rgba(61, 48, 41, 0.28), 0 6px 12px rgba(61, 48, 41, 0.12);
}

#home-blog .bg-wrap {
    display: none !important;
}

@media (max-width: 900px) {
    #home-blog { padding: 70px 0 80px !important; }
    #home-blog header { margin-bottom: 36px; }
    #home-blog header .vbp-eyebrow::before,
    #home-blog header .vbp-eyebrow::after { width: 22px; }
    #home-blog .book-slider .slick-slide img { height: 260px; }
}

@media (max-width: 600px) {
    #home-blog .book-slider .slick-slide img { height: 220px; }
}

@media (max-width: 520px) {
    #home-blog header h2.vbp-section-title { font-size: 32px !important; }
    #home-blog header p.vbp-section-lede { font-size: 15px !important; }
}

/* What We Value — about page principles section */
.vbp-values {
    background: linear-gradient(180deg, var(--vbp-surface) 0%, #fff 100%) !important;
    padding: 96px 0 !important;
    position: relative;
    overflow: hidden;
}

.vbp-values::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 129, 42, 0.12) 0%, rgba(249, 129, 42, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vbp-values::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(96, 77, 65, 0.1) 0%, rgba(96, 77, 65, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vbp-values .container { position: relative; z-index: 2; }

.vbp-values-eyebrow {
    display: inline-block;
    color: var(--vbp-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.vbp-values-title {
    font-family: "mrs-eaves-xl-serif", "Playfair Display", Georgia, serif !important;
    font-size: clamp(34px, 4.5vw, 52px) !important;
    line-height: 1.1 !important;
    color: var(--vbp-text) !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px;
    margin: 0 0 4px !important;
    text-transform: none !important;
}

.vbp-values-title .accent {
    color: var(--vbp-primary);
    font-style: italic;
}

.vbp-values-rule {
    display: inline-block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--vbp-primary) 0%, var(--vbp-primary-dark) 100%);
    border-radius: 3px;
    margin: 18px auto 18px;
}

.vbp-values-lede {
    color: var(--vbp-muted) !important;
    font-size: 17px !important;
    max-width: 640px;
    margin: 0 auto 56px !important;
    line-height: 1.6;
}

.vbp-values-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 0;
    justify-content: center;
}

.vbp-value-card {
    position: relative;
    background: #fff !important;
    border: 1px solid rgba(96, 77, 65, 0.08) !important;
    border-radius: 18px !important;
    padding: 44px 28px 32px !important;
    height: 100% !important;
    min-height: 300px;
    text-align: center;
    box-shadow: 0 14px 36px rgba(61, 48, 41, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
    overflow: hidden;
}

.vbp-value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vbp-primary) 0%, var(--vbp-primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vbp-value-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 26px 60px rgba(61, 48, 41, 0.14), 0 8px 18px rgba(249, 129, 42, 0.12) !important;
    border-color: rgba(249, 129, 42, 0.25) !important;
}

.vbp-value-card:hover::before {
    transform: scaleX(1);
}

.vbp-value-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vbp-primary) 0%, var(--vbp-primary-dark) 100%);
    color: #fff;
    font-size: 32px;
    box-shadow: 0 14px 28px rgba(249, 129, 42, 0.35);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vbp-value-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    border: 1.5px dashed rgba(249, 129, 42, 0.35);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    transform: scale(0.9);
}

.vbp-value-card:hover .vbp-value-icon {
    transform: rotate(-4deg) scale(1.05);
    box-shadow: 0 18px 36px rgba(249, 129, 42, 0.45);
}

.vbp-value-card:hover .vbp-value-icon::after {
    opacity: 1;
    transform: scale(1);
}

.vbp-value-card h3 {
    font-family: "mrs-eaves-xl-serif", "Playfair Display", Georgia, serif !important;
    color: var(--vbp-text) !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin: 0 0 12px !important;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.vbp-value-card p {
    color: var(--vbp-muted) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

@media (max-width: 991px) {
    .vbp-values { padding: 70px 0 !important; }
    .vbp-values-lede { margin-bottom: 36px !important; }
}

@media (max-width: 600px) {
    .vbp-value-card { padding: 36px 22px 28px !important; min-height: 0; }
    .vbp-value-icon { width: 66px; height: 66px; font-size: 28px; border-radius: 18px; }
}

/* Legal pages — long-form typographic layout */
.legal-page {
    font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--vbp-bg);
}

.legal-hero {
    background: linear-gradient(135deg, var(--vbp-secondary-dark) 0%, var(--vbp-secondary) 100%);
    color: #fff;
    padding: 72px 20px 88px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.legal-hero::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(249, 129, 42, 0.28) 0%, rgba(249, 129, 42, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.legal-hero::after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: -110px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 129, 42, 0.14) 0%, rgba(249, 129, 42, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.legal-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.legal-breadcrumb {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-breadcrumb a {
    color: var(--vbp-primary);
    text-decoration: none;
}

.legal-breadcrumb a:hover { color: #fff; }

.legal-hero h1 {
    font-family: "mrs-eaves-xl-serif", "Playfair Display", Georgia, serif !important;
    font-size: clamp(36px, 5.5vw, 60px) !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 0 0 12px !important;
    letter-spacing: -0.5px;
}

.legal-hero h1 .accent {
    color: var(--vbp-primary);
    font-style: italic;
}

.legal-hero .legal-rule {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--vbp-primary) 0%, var(--vbp-primary-dark) 100%);
    border-radius: 3px;
    margin: 14px auto 18px;
}

.legal-hero .legal-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-hero .legal-meta {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin-top: 22px;
    letter-spacing: 0.3px;
}

.legal-hero .legal-meta span.sep {
    margin: 0 10px;
    opacity: 0.45;
}

.legal-body {
    flex: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 64px 24px 96px;
    width: 100%;
}

.legal-body > p:first-child {
    font-size: 17px;
    color: var(--vbp-text);
    font-weight: 500;
}

.legal-body p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--vbp-muted);
    margin: 0 0 18px;
}

.legal-body h2 {
    font-family: "mrs-eaves-xl-serif", "Playfair Display", Georgia, serif !important;
    font-size: 28px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
    color: var(--vbp-text) !important;
    margin: 46px 0 16px !important;
    padding-top: 14px;
    position: relative;
    letter-spacing: -0.2px;
}

.legal-body h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--vbp-primary) 0%, var(--vbp-primary-dark) 100%);
    border-radius: 3px;
}

.legal-body h3 {
    font-family: "mrs-eaves-xl-serif", "Playfair Display", Georgia, serif !important;
    font-size: 21px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    color: var(--vbp-text) !important;
    margin: 30px 0 10px !important;
}

.legal-body ul,
.legal-body ol {
    padding-left: 22px;
    margin: 0 0 20px;
}

.legal-body li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--vbp-muted);
    margin-bottom: 8px;
}

.legal-body li::marker { color: var(--vbp-primary); }

.legal-body a {
    color: var(--vbp-primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(249, 129, 42, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-body a:hover {
    color: var(--vbp-primary);
    border-bottom-color: var(--vbp-primary);
}

.legal-body strong { color: var(--vbp-text); }

.legal-contact-card {
    margin-top: 56px;
    background: var(--vbp-surface);
    border: 1px solid rgba(96, 77, 65, 0.12);
    border-left: 4px solid var(--vbp-primary);
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 10px 30px rgba(61, 48, 41, 0.06);
}

.legal-contact-card h3 {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
}

.legal-contact-card p { margin-bottom: 6px; }

.legal-contact-card .legal-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
    padding: 6px 0;
    color: var(--vbp-muted);
}

.legal-contact-card .legal-contact-line i {
    color: var(--vbp-primary);
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.legal-contact-card .legal-contact-line a { border-bottom: none; }

.legal-footer {
    background: var(--vbp-secondary-dark);
    color: rgba(255, 255, 255, 0.88);
    padding: 28px 20px;
    text-align: center;
    font-size: 13.5px;
    letter-spacing: 0.2px;
}

.legal-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    white-space: nowrap;
}

.legal-footer a:hover { color: var(--vbp-primary); }

.legal-footer-nav {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

@media (max-width: 600px) {
    .legal-hero { padding: 52px 18px 60px; }
    .legal-body { padding: 44px 18px 64px; }
    .legal-body h2 { font-size: 24px !important; }
    .legal-body h3 { font-size: 19px !important; }
    .legal-contact-card { padding: 22px 20px; }
    .legal-footer a { display: inline-block; margin: 4px 6px; }
}

/* Form result banner — success/error feedback inside forms */
form #formResult {
    display: block;
    min-height: 18px;
    margin: 10px 0 0;
    font-size: 13.5px;
    line-height: 1.45;
    text-align: left;
    transition: color 0.2s ease;
}

form #formResult.success {
    color: #3da355 !important;
    background: rgba(61, 163, 85, 0.08);
    border: 1px solid rgba(61, 163, 85, 0.25);
    border-radius: 8px;
    padding: 10px 14px;
}

form #formResult.error {
    color: #f53230 !important;
    background: rgba(245, 50, 48, 0.07);
    border: 1px solid rgba(245, 50, 48, 0.25);
    border-radius: 8px;
    padding: 10px 14px;
}

form input.error,
form select.error,
form textarea.error {
    border-color: #f53230 !important;
    box-shadow: 0 0 0 3px rgba(245, 50, 48, 0.12) !important;
}

/* SMS consent blurb — compact legal copy under form checkboxes */
label.check p,
label.check > p {
    font-size: 10px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    color: inherit;
}

label.check p a {
    font-size: 10px !important;
    text-decoration: underline;
}

/* Floating WhatsApp strip — brand orange (icon still reads as WhatsApp) */
.theme-btn.bt-buy-now {
    background: var(--vbp-primary) !important;
    color: #fff !important;
}

.theme-btn.bt-buy-now:hover {
    background: var(--vbp-primary-dark) !important;
}

/* Penguin Random House imprint badge — appears in every site footer */
.vbp-prh-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 8px 14px 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 3px solid var(--vbp-primary);
    border-radius: 10px;
    max-width: 100%;
}

.vbp-prh-badge .vbp-prh-tag {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

.vbp-prh-badge .vbp-prh-link {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vbp-prh-badge .vbp-prh-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.vbp-prh-badge .vbp-prh-logo {
    height: 38px;
    width: auto;
    max-width: 200px;
    display: block;
}

/* PRH badge on the legal-page and thank-you footers — break onto its own centered line */
.legal-footer .vbp-prh-badge,
.vbp-ty-footer .vbp-prh-badge {
    display: flex;
    margin: 16px auto 0;
    width: fit-content;
}

/* PRH imprint section — about page */
.vbp-prh-section {
    background: linear-gradient(180deg, #fff 0%, var(--vbp-surface) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vbp-prh-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(249, 129, 42, 0.1) 0%, rgba(249, 129, 42, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vbp-prh-section .container { position: relative; z-index: 2; }

.vbp-prh-card {
    background: #fff;
    border: 1px solid rgba(96, 77, 65, 0.1);
    border-radius: 22px;
    padding: 48px 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 24px 60px rgba(61, 48, 41, 0.08);
    position: relative;
    overflow: hidden;
}

.vbp-prh-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--vbp-primary) 0%, var(--vbp-primary-dark) 100%);
}

.vbp-prh-eyebrow {
    display: inline-block;
    color: var(--vbp-primary);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.vbp-prh-title {
    font-family: "mrs-eaves-xl-serif", "Playfair Display", Georgia, serif !important;
    font-size: clamp(28px, 3.6vw, 40px) !important;
    line-height: 1.15 !important;
    color: var(--vbp-text) !important;
    margin: 0 0 6px !important;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.vbp-prh-title .accent {
    color: var(--vbp-primary);
    font-style: italic;
}

.vbp-prh-rule {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--vbp-primary) 0%, var(--vbp-primary-dark) 100%);
    border-radius: 3px;
    margin: 14px 0 18px;
}

.vbp-prh-lede {
    color: var(--vbp-muted);
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 22px;
}

.vbp-prh-lede strong { color: var(--vbp-text); font-weight: 600; }

.vbp-prh-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vbp-prh-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--vbp-muted);
    font-size: 15px;
    line-height: 1.55;
    padding: 6px 0;
}

.vbp-prh-points li i {
    color: var(--vbp-primary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.vbp-prh-card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px;
    background: linear-gradient(180deg, var(--vbp-surface) 0%, #fff 100%);
    border: 1px solid rgba(96, 77, 65, 0.08);
    border-radius: 16px;
}

.vbp-prh-emblem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(61, 48, 41, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vbp-prh-emblem:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(61, 48, 41, 0.12);
}

.vbp-prh-emblem img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

.vbp-prh-tagline {
    margin-top: 16px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vbp-secondary);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .vbp-prh-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
    .vbp-prh-card-right { padding: 24px; }
}

@media (max-width: 600px) {
    .vbp-prh-section { padding: 60px 0; }
    .vbp-prh-card { padding: 28px 22px; border-radius: 16px; }
    .vbp-prh-emblem { padding: 14px 18px; }
}

/* Dark-hero pages (e.g. contact) — make the non-sticky top nav readable against a dark banner */
body.vbp-dark-hero #globalHeader:not(.sticky) .toplinks .top > li > a,
body.vbp-dark-hero #globalHeader:not(.sticky) .toplinks .top > li > a span,
body.vbp-dark-hero #globalHeader:not(.sticky) .top-menulink a,
body.vbp-dark-hero #globalHeader:not(.sticky) .cta-items a:not(.cta-btn) {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

body.vbp-dark-hero #globalHeader:not(.sticky) .toplinks .top > li > a:hover,
body.vbp-dark-hero #globalHeader:not(.sticky) .toplinks .top > li > a:hover span {
    color: var(--vbp-primary) !important;
}

body.vbp-dark-hero #globalHeader:not(.sticky) .toplinks .top > li > a .fas,
body.vbp-dark-hero #globalHeader:not(.sticky) .toplinks .hasSub .icon {
    color: var(--vbp-primary) !important;
}

/* Header logo: keep layout stable with portrait logo art */
#globalHeader .logo img.lit-logo,
#globalHeader .logo img.lital-logo {
    object-fit: contain;
    height: auto;
    max-height: 88px;
    width: auto;
    max-width: min(280px, 100%);
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}
