:root {
    --bw-blue: #41AACD;
    --bw-blue-dark: #247E9E;
    --bw-yellow: #FFC000;
    --bw-green: #7ED6A7;
    --bw-charcoal: #2B2B2B;
    --bw-cream: #FAF9F6;
    --bw-white: #FFFFFF;
    --bw-muted: #6F6F6A;
    --bw-border: #E9E5DC;
    --bw-soft-blue: #EEF8FB;
    --bw-soft-yellow: #FFF7D9;
    --bw-radius-sm: 10px;
    --bw-radius-md: 14px;
    --bw-radius-lg: 22px;
    --bw-shadow-sm: 0 8px 26px rgba(43, 43, 43, 0.08);
    --bw-shell: 1180px;
    --bw-header-height: 76px;
    --bw-font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bw-font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--bw-charcoal);
    background: var(--bw-cream);
    font-family: var(--bw-font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.bw-shell {
    width: min(calc(100% - 40px), var(--bw-shell));
    margin-inline: auto;
}

.bw-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    transform: translateY(-150%);
    background: var(--bw-charcoal);
    color: var(--bw-white);
    padding: 10px 14px;
    border-radius: var(--bw-radius-sm);
    text-decoration: none;
}
.bw-skip-link:focus { transform: translateY(0); }

.bw-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--bw-header-height);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--bw-border);
    backdrop-filter: blur(12px);
}
.admin-bar .bw-site-header { top: 32px; }

.bw-header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.bw-brand { min-width: 0; display: flex; align-items: center; }
.bw-brand .custom-logo-link { display: inline-flex; align-items: center; }
.bw-brand .custom-logo {
    display: block;
    width: auto;
    max-width: 198px;
    max-height: 52px;
}
.bw-brand-text,
.bw-footer-name {
    color: var(--bw-charcoal);
    font-family: var(--bw-font-display);
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
}

.bw-primary-nav { justify-self: end; }
.bw-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.bw-menu li { margin: 0; }
.bw-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--bw-charcoal);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}
.bw-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 2px;
    background: var(--bw-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}
.bw-menu a:hover::after,
.bw-menu a:focus-visible::after,
.bw-menu .current-menu-item > a::after { transform: scaleX(1); }

.bw-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border: 0;
    border-radius: 12px;
    background: var(--bw-yellow);
    color: var(--bw-charcoal);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.bw-header-cta:hover,
.bw-header-cta:focus-visible {
    background: #F2B600;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(43, 43, 43, 0.12);
}
.bw-mobile-cta { display: none; }
.bw-menu-toggle { display: none; }

.bw-site-main {
    min-height: calc(100vh - var(--bw-header-height) - 168px);
}

/* Global typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--bw-charcoal);
    margin: 0 0 0.5em;
    line-height: 1.1;
}
h1, h2 { font-family: var(--bw-font-display); font-weight: 400; }
h3, h4, h5, h6 { font-family: var(--bw-font-body); font-weight: 700; }
h1 { font-size: clamp(42px, 6vw, 68px); letter-spacing: -0.02em; }
h2 { font-size: clamp(34px, 4.2vw, 48px); letter-spacing: -0.015em; }
h3 { font-size: clamp(22px, 2.5vw, 28px); }
p { margin: 0 0 1em; }

/* Global form language */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="search"],
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #D8D3CA;
    border-radius: 12px;
    background: var(--bw-white);
    color: var(--bw-charcoal);
    padding: 11px 14px;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
    border-color: var(--bw-blue-dark);
    box-shadow: 0 0 0 3px rgba(65, 170, 205, 0.20);
}

.bw-button,
.wp-element-button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: var(--bw-blue-dark);
    color: var(--bw-white);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.bw-button--yellow { background: var(--bw-yellow); color: var(--bw-charcoal); }
.bw-button--secondary { background: transparent; color: var(--bw-charcoal); border-color: var(--bw-border); }

.bw-site-footer {
    background: #F3EFE7;
    border-top: 1px solid var(--bw-border);
}
.bw-footer-main {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-block: 28px;
}
.bw-footer-brand p {
    margin: 7px 0 0;
    color: var(--bw-muted);
    font-size: 14px;
}
.bw-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 24px;
}
.bw-footer-nav a {
    color: var(--bw-charcoal);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.bw-footer-nav a:hover,
.bw-footer-nav a:focus-visible { color: var(--bw-blue-dark); }
.bw-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-block: 16px 22px;
    border-top: 1px solid rgba(43, 43, 43, 0.08);
    color: var(--bw-muted);
    font-size: 12px;
}

:focus-visible {
    outline: 3px solid rgba(36, 126, 158, 0.34);
    outline-offset: 3px;
}

@media (max-width: 899px) {
    :root { --bw-header-height: 68px; }
    .admin-bar .bw-site-header { top: 46px; }
    .bw-shell { width: min(calc(100% - 28px), var(--bw-shell)); }
    .bw-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 18px;
    }
    .bw-brand .custom-logo { max-width: 170px; max-height: 46px; }
    .bw-desktop-cta { display: none; }
    .bw-menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 44px;
        padding: 8px 0 8px 12px;
        border: 0;
        background: transparent;
        color: var(--bw-charcoal);
        font-weight: 700;
        cursor: pointer;
    }
    .bw-menu-toggle-label { font-size: 14px; }
    .bw-menu-icon { display: grid; gap: 4px; }
    .bw-menu-icon span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform 160ms ease, opacity 160ms ease;
    }
    .bw-menu-open .bw-menu-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .bw-menu-open .bw-menu-icon span:nth-child(2) { opacity: 0; }
    .bw-menu-open .bw-menu-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .bw-primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 14px;
        background: var(--bw-white);
        border-bottom: 1px solid var(--bw-border);
        box-shadow: var(--bw-shadow-sm);
    }
    .bw-menu-open .bw-primary-nav { display: block; }
    .bw-menu {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }
    .bw-menu a {
        width: 100%;
        min-height: 48px;
        padding: 8px 10px;
        border-radius: 10px;
    }
    .bw-menu a::after { display: none; }
    .bw-menu a:hover,
    .bw-menu a:focus-visible { background: var(--bw-soft-blue); }
    .bw-mobile-cta {
        display: flex;
        width: 100%;
        margin-top: 10px;
    }
    .bw-footer-main,
    .bw-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .bw-footer-main { padding-block: 30px; }
    .bw-footer-nav { justify-content: flex-start; gap: 12px 20px; }
    .bw-footer-bottom { gap: 5px; }
}

@media (max-width: 782px) {
    .admin-bar .bw-site-header { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


/* Bounce Westminster pages do not use WordPress.com/Jetpack sharing, Likes, or related-post chrome. */
.sharedaddy,
.sd-sharing-enabled,
.sd-like,
#jp-post-flair,
.jp-relatedposts,
#jp-relatedposts,
.jetpack-likes-widget-wrapper,
.post-likes-widget-placeholder,
.wpl-button,
.wpl-count,
.pd-rating,
.entry-content > .sharedaddy,
.entry-content > #jp-post-flair {
    display: none !important;
}

/* ==========================================================================\n   Homepage — Warm Minimal\n   ========================================================================== */
.home .bw-site-main { min-height: 0; }

.bw-home-hero {
    --bw-home-hero-image: linear-gradient(135deg, #4b6670 0%, #8bb1b7 45%, #e4c990 100%);
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background-image: var(--bw-home-hero-image);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.bw-home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(18, 24, 27, 0.76) 0%, rgba(18, 24, 27, 0.50) 40%, rgba(18, 24, 27, 0.14) 72%, rgba(18, 24, 27, 0.05) 100%),
        linear-gradient(0deg, rgba(18, 24, 27, 0.24) 0%, transparent 46%);
}

.bw-home-hero-inner {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: clamp(58px, 7vw, 92px);
    padding-bottom: 38px;
}

.bw-home-copy {
    max-width: 690px;
    color: var(--bw-white);
}

.bw-home-copy h1 {
    margin: 0;
    color: var(--bw-white);
    font-size: clamp(50px, 6.6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.16);
}

.bw-home-copy h1 span { color: #DFF4FB; }

.bw-home-copy p {
    max-width: 625px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.55;
    text-wrap: balance;
}

.bw-home-paths {
    width: min(100%, 910px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.bw-home-path {
    min-height: 238px;
    display: grid;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: 18px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(18, 24, 27, 0.18);
    backdrop-filter: blur(9px);
}

.bw-home-path-icon {
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--bw-soft-blue);
    color: var(--bw-blue-dark);
}

.bw-home-path--plan .bw-home-path-icon {
    background: #FFF6D4;
    color: #A96D00;
}

.bw-home-path-icon svg,
.bw-home-trust-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bw-home-path-icon svg circle { fill: currentColor; stroke: none; }

.bw-home-path-copy h2 {
    margin: 1px 0 6px;
    color: var(--bw-charcoal);
    font-family: var(--bw-font-body);
    font-size: clamp(21px, 2vw, 26px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.bw-home-path-copy p {
    margin: 0;
    color: var(--bw-muted);
    font-size: 15px;
    line-height: 1.5;
}

.bw-home-path-button {
    grid-column: 2;
    align-self: end;
    justify-content: space-between;
    width: 100%;
    margin-top: 22px;
}

.bw-home-path-button span {
    margin-left: 18px;
    font-size: 20px;
    line-height: 1;
    transition: transform 160ms ease;
}

.bw-home-path-button:hover span,
.bw-home-path-button:focus-visible span { transform: translateX(3px); }

.bw-home-trust {
    background: var(--bw-white);
    border-bottom: 1px solid var(--bw-border);
}

.bw-home-trust-grid {
    min-height: 145px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}

.bw-home-trust-item {
    min-height: 80px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 14px;
    padding: 10px 25px;
    border-right: 1px solid var(--bw-border);
}

.bw-home-trust-item:first-child { padding-left: 0; }
.bw-home-trust-item:last-child { padding-right: 0; border-right: 0; }

.bw-home-trust-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--bw-soft-blue);
    color: var(--bw-blue-dark);
}

.bw-home-trust-item:nth-child(2) .bw-home-trust-icon {
    background: #ECF9F2;
    color: #31855A;
}

.bw-home-trust-item:nth-child(3) .bw-home-trust-icon {
    background: #FFF7DB;
    color: #A96D00;
}

.bw-home-trust-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--bw-charcoal);
    font-size: 14px;
    line-height: 1.35;
}

.bw-home-trust-item span {
    display: block;
    color: var(--bw-muted);
    font-size: 12px;
    line-height: 1.45;
}

.bw-home-explore {
    background: #FAF9F6;
    border-bottom: 1px solid var(--bw-border);
}

.bw-home-explore-inner {
    padding-block: 17px;
    text-align: center;
}

.bw-home-explore p {
    margin: 0;
    color: var(--bw-muted);
    font-size: 13px;
    line-height: 1.55;
}

.bw-home-explore a {
    color: var(--bw-charcoal);
    font-weight: 600;
    text-decoration-color: rgba(43, 43, 43, 0.28);
    text-underline-offset: 3px;
}

.bw-home-explore a:hover,
.bw-home-explore a:focus-visible {
    color: var(--bw-blue-dark);
    text-decoration-color: currentColor;
}

@media (max-width: 899px) {
    .bw-home-hero,
    .bw-home-hero-inner { min-height: 760px; }

    .bw-home-hero { background-position: 58% center; }

    .bw-home-hero-overlay {
        background:
            linear-gradient(180deg, rgba(18, 24, 27, 0.62) 0%, rgba(18, 24, 27, 0.38) 46%, rgba(18, 24, 27, 0.48) 100%);
    }

    .bw-home-hero-inner {
        padding-top: 54px;
        padding-bottom: 28px;
    }

    .bw-home-copy { max-width: 620px; }
    .bw-home-copy h1 { font-size: clamp(48px, 9vw, 68px); }

    .bw-home-paths {
        grid-template-columns: 1fr;
        width: min(100%, 620px);
        gap: 14px;
        margin-top: 50px;
    }

    .bw-home-path {
        min-height: 0;
        grid-template-columns: 52px 1fr;
        padding: 20px;
        border-radius: 16px;
    }

    .bw-home-path-icon { width: 52px; height: 52px; }
    .bw-home-path-button { margin-top: 18px; }

    .bw-home-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 0;
        padding-block: 12px;
    }

    .bw-home-trust-item,
    .bw-home-trust-item:first-child,
    .bw-home-trust-item:last-child {
        min-height: 105px;
        padding: 20px 16px;
        border-right: 0;
        border-bottom: 1px solid var(--bw-border);
    }

    .bw-home-trust-item:nth-child(odd) { border-right: 1px solid var(--bw-border); }
    .bw-home-trust-item:nth-child(3),
    .bw-home-trust-item:nth-child(4) { border-bottom: 0; }
}

@media (max-width: 560px) {
    .bw-home-hero,
    .bw-home-hero-inner { min-height: 0; }

    .bw-home-hero-inner {
        padding-top: 48px;
        padding-bottom: 22px;
    }

    .bw-home-copy h1 {
        font-size: clamp(45px, 13vw, 59px);
        line-height: 0.99;
    }

    .bw-home-copy p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.5;
    }

    .bw-home-paths { margin-top: 40px; }

    .bw-home-path {
        grid-template-columns: 44px 1fr;
        column-gap: 13px;
        padding: 18px;
    }

    .bw-home-path-icon { width: 44px; height: 44px; }
    .bw-home-path-icon svg { width: 25px; height: 25px; }
    .bw-home-path-copy h2 { font-size: 20px; }
    .bw-home-path-copy p { font-size: 14px; }
    .bw-home-path-button { grid-column: 1 / -1; margin-top: 17px; }

    .bw-home-trust-grid { grid-template-columns: 1fr; }
    .bw-home-trust-item,
    .bw-home-trust-item:first-child,
    .bw-home-trust-item:last-child,
    .bw-home-trust-item:nth-child(odd) {
        min-height: 0;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--bw-border);
    }
    .bw-home-trust-item:last-child { border-bottom: 0; }
}

/* ==========================================================================\n   App-like progressive navigation shell\n   ========================================================================== */
.bw-app-enabled .bw-site-main {
    position: relative;
    transition: opacity 150ms ease, transform 150ms ease;
}

.bw-app-enabled.bw-app-loading .bw-site-main {
    opacity: 0.22;
    transform: translateY(7px);
    pointer-events: none;
}

.bw-app-enabled.bw-app-loading .bw-site-main::after {
    content: "";
    position: fixed;
    z-index: 9995;
    left: 50%;
    top: calc(var(--bw-header-height) + 14px);
    width: 42px;
    height: 4px;
    margin-left: -21px;
    border-radius: 999px;
    background: var(--bw-blue);
    animation: bw-app-pulse 700ms ease-in-out infinite alternate;
}

.bw-menu a[aria-current="page"]::after { transform: scaleX(1); }
.bw-footer-nav a[aria-current="page"] { color: var(--bw-blue-dark); }

@keyframes bw-app-pulse {
    from { opacity: 0.32; transform: scaleX(0.55); }
    to { opacity: 1; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
    .bw-app-enabled .bw-site-main { transition: none; }
    .bw-app-enabled.bw-app-loading .bw-site-main::after { animation: none; }
}

/* ==========================================================================
   About + Privacy — Warm Minimal informational pages
   ========================================================================== */
.bw-info-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(126, 214, 167, 0.18), transparent 26%),
        radial-gradient(circle at 12% 12%, rgba(65, 170, 205, 0.16), transparent 28%),
        var(--bw-cream);
    border-bottom: 1px solid var(--bw-border);
}

.bw-info-hero-inner {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(68px, 9vw, 112px);
}

.bw-info-hero-inner--narrow { max-width: 900px; }

.bw-eyebrow {
    margin: 0 0 15px;
    color: var(--bw-blue-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.bw-info-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(46px, 6vw, 72px);
    line-height: 1.01;
    text-wrap: balance;
}

.bw-info-hero h1 span { color: var(--bw-blue-dark); }

.bw-info-lede {
    max-width: 790px;
    margin: 25px 0 0;
    color: #555650;
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.65;
    text-wrap: pretty;
}

.bw-about-main {
    padding-block: clamp(72px, 9vw, 118px);
    background: var(--bw-white);
}

.bw-about-story {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(54px, 8vw, 110px);
    align-items: start;
}

.bw-about-story-copy { max-width: 535px; }
.bw-about-story-copy h2,
.bw-about-audience h2,
.bw-about-cta h2 {
    margin-bottom: 22px;
    font-size: clamp(38px, 4.5vw, 54px);
}

.bw-about-story-copy p:not(.bw-eyebrow) {
    color: #555650;
    font-size: 17px;
    line-height: 1.75;
}

.bw-about-values {
    display: grid;
    border-top: 1px solid var(--bw-border);
}

.bw-about-value {
    position: relative;
    padding: 29px 0 29px 62px;
    border-bottom: 1px solid var(--bw-border);
}

.bw-about-value-number {
    position: absolute;
    top: 31px;
    left: 0;
    color: var(--bw-blue-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.bw-about-value h3 {
    margin: 0 0 8px;
    font-size: 19px;
}

.bw-about-value p {
    max-width: 570px;
    margin: 0;
    color: var(--bw-muted);
    font-size: 15px;
    line-height: 1.65;
}

.bw-about-audience {
    padding-block: clamp(60px, 7vw, 92px);
    background: var(--bw-soft-blue);
    border-block: 1px solid rgba(65, 170, 205, 0.12);
}

.bw-about-audience-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.bw-about-audience h2 { margin-bottom: 0; }
.bw-about-audience-inner > p {
    margin: 0;
    color: #505852;
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.7;
}

.bw-about-cta {
    padding-block: clamp(64px, 8vw, 100px);
    background: var(--bw-white);
}

.bw-about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.bw-about-cta h2 { margin-bottom: 0; }
.bw-about-cta-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}
.bw-about-cta-actions .bw-button { gap: 18px; white-space: nowrap; }

.bw-policy-date {
    margin: 24px 0 0;
    color: var(--bw-muted);
    font-size: 13px;
    font-weight: 600;
}

.bw-policy-section {
    padding-block: clamp(64px, 8vw, 110px);
    background: var(--bw-white);
}

.bw-policy-layout {
    max-width: 900px;
}

.bw-policy-content > section {
    padding: 0 0 38px;
    margin: 0 0 38px;
    border-bottom: 1px solid var(--bw-border);
}

.bw-policy-content > section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.bw-policy-content h2 {
    margin: 0 0 15px;
    font-family: var(--bw-font-body);
    font-size: clamp(23px, 2.5vw, 29px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.bw-policy-content p {
    margin: 0 0 13px;
    color: #555650;
    font-size: 16px;
    line-height: 1.75;
}
.bw-policy-content p:last-child { margin-bottom: 0; }

/* Rental Terms & Policies */
.bw-terms-overview {
    padding-block: clamp(62px, 7vw, 92px);
    background: var(--bw-white);
    border-bottom: 1px solid var(--bw-border);
}

.bw-terms-section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.bw-terms-section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(38px, 4.5vw, 54px);
}

.bw-terms-section-heading > p:not(.bw-eyebrow) {
    margin: 18px 0 0;
    color: #555650;
    font-size: 17px;
    line-height: 1.7;
}

.bw-terms-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--bw-border);
    border-bottom: 1px solid var(--bw-border);
}

.bw-terms-highlight {
    min-width: 0;
    padding: 30px clamp(20px, 3vw, 32px);
    border-right: 1px solid var(--bw-border);
}

.bw-terms-highlight:first-child { padding-left: 0; }
.bw-terms-highlight:last-child {
    padding-right: 0;
    border-right: 0;
}

.bw-terms-highlight-number,
.bw-terms-highlight-symbol {
    display: block;
    margin-bottom: 18px;
    color: var(--bw-blue-dark);
    font-family: var(--bw-font-display);
    font-size: 42px;
    line-height: 1;
}

.bw-terms-highlight-symbol {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--bw-soft-blue);
    font-family: var(--bw-font-body);
    font-size: 24px;
    font-weight: 700;
}

.bw-terms-highlight h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.bw-terms-highlight p {
    margin: 0;
    color: var(--bw-muted);
    font-size: 14px;
    line-height: 1.6;
}

.bw-terms-section {
    padding-block: clamp(70px, 9vw, 118px);
    background: var(--bw-cream);
}

.bw-terms-layout {
    display: grid;
    grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
    gap: clamp(44px, 7vw, 96px);
    align-items: start;
}

.bw-terms-jump {
    position: sticky;
    top: calc(var(--bw-header-height) + 30px);
}

.bw-terms-jump nav {
    display: grid;
    border-top: 1px solid var(--bw-border);
}

.bw-terms-jump a {
    position: relative;
    padding: 13px 24px 13px 0;
    border-bottom: 1px solid var(--bw-border);
    color: #555650;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition: color 150ms ease, padding-left 150ms ease;
}

.bw-terms-jump a::after {
    content: "→";
    position: absolute;
    right: 2px;
    color: var(--bw-blue-dark);
}

.bw-terms-jump a:hover,
.bw-terms-jump a:focus-visible {
    padding-left: 5px;
    color: var(--bw-blue-dark);
}

.bw-terms-main { min-width: 0; }
.bw-terms-section-heading--compact { margin-bottom: 30px; }
.bw-terms-section-heading--compact h2 { font-size: clamp(34px, 4vw, 48px); }

.bw-terms-list {
    display: grid;
    gap: 12px;
}

.bw-terms-item {
    scroll-margin-top: calc(var(--bw-header-height) + 22px);
    border: 1px solid var(--bw-border);
    border-radius: var(--bw-radius-md);
    background: var(--bw-white);
    box-shadow: 0 1px 0 rgba(43, 43, 43, 0.02);
    overflow: clip;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.bw-terms-item:hover {
    border-color: #D8D3CA;
    box-shadow: var(--bw-shadow-sm);
}

.bw-terms-item[open] {
    border-color: rgba(65, 170, 205, 0.42);
    box-shadow: 0 12px 36px rgba(43, 43, 43, 0.07);
}

.bw-terms-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 88px;
    padding: 22px 68px 22px 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.bw-terms-item summary::-webkit-details-marker { display: none; }

.bw-terms-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--bw-soft-blue);
    color: var(--bw-blue-dark);
    font-size: 23px;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 160ms ease, background 160ms ease;
}

.bw-terms-item[open] summary::after {
    content: "−";
    background: var(--bw-blue-dark);
    color: var(--bw-white);
}

.bw-terms-item summary strong,
.bw-terms-item summary small {
    display: block;
}

.bw-terms-item summary strong {
    color: var(--bw-charcoal);
    font-size: 18px;
    line-height: 1.35;
}

.bw-terms-item summary small {
    margin-top: 5px;
    color: var(--bw-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.bw-terms-body {
    padding: 0 24px 25px;
    border-top: 1px solid var(--bw-border);
}

.bw-terms-body p {
    margin: 17px 0 0;
    color: #555650;
    font-size: 15px;
    line-height: 1.75;
}

.bw-terms-body a {
    color: var(--bw-blue-dark);
    font-weight: 650;
    text-underline-offset: 3px;
}

.bw-terms-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin-top: 38px;
    padding: clamp(28px, 4vw, 42px);
    border-radius: var(--bw-radius-lg);
    background: var(--bw-blue-dark);
    color: var(--bw-white);
}

.bw-terms-help .bw-eyebrow { color: #BFE7F3; }
.bw-terms-help h2 {
    margin: 0;
    color: var(--bw-white);
    font-size: clamp(30px, 3.5vw, 42px);
}

.bw-terms-help p:not(.bw-eyebrow) {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.bw-terms-help .bw-button {
    flex: 0 0 auto;
    gap: 18px;
    white-space: nowrap;
}

.bw-footer-legal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.bw-footer-legal a {
    color: inherit;
    text-decoration: none;
}
.bw-footer-legal a:hover,
.bw-footer-legal a:focus-visible { color: var(--bw-blue-dark); }

@media (max-width: 899px) {
    .bw-info-hero-inner { min-height: 350px; }
    .bw-about-story,
    .bw-about-audience-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .bw-about-story-copy { max-width: 650px; }
    .bw-about-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .bw-terms-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bw-terms-highlight:nth-child(2) { border-right: 0; }
    .bw-terms-highlight:nth-child(-n+2) { border-bottom: 1px solid var(--bw-border); }
    .bw-terms-highlight:nth-child(3) { padding-left: 0; }
    .bw-terms-layout { grid-template-columns: 1fr; gap: 48px; }
    .bw-terms-jump { position: static; }
    .bw-terms-jump nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        border-top: 0;
    }
    .bw-terms-jump a {
        padding: 11px 38px 11px 13px;
        border: 1px solid var(--bw-border);
        border-radius: 10px;
        background: var(--bw-white);
    }
    .bw-terms-jump a::after { right: 13px; }
    .bw-terms-jump a:hover,
    .bw-terms-jump a:focus-visible { padding-left: 13px; }
}

@media (max-width: 560px) {
    .bw-info-hero-inner {
        min-height: 0;
        padding-block: 56px;
    }
    .bw-info-hero h1 { font-size: clamp(42px, 13vw, 54px); }
    .bw-info-lede { margin-top: 20px; font-size: 16px; }
    .bw-about-main { padding-block: 62px; }
    .bw-about-value { padding-left: 48px; }
    .bw-about-cta-actions {
        width: 100%;
        flex-direction: column;
    }
    .bw-about-cta-actions .bw-button { width: 100%; justify-content: space-between; }
    .bw-policy-content > section { padding-bottom: 30px; margin-bottom: 30px; }
    .bw-footer-legal { flex-wrap: wrap; }
    .bw-terms-overview { padding-block: 56px; }
    .bw-terms-highlights { grid-template-columns: 1fr; }
    .bw-terms-highlight,
    .bw-terms-highlight:first-child,
    .bw-terms-highlight:nth-child(3),
    .bw-terms-highlight:last-child {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 15px;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--bw-border);
    }
    .bw-terms-highlight:last-child { border-bottom: 0; }
    .bw-terms-highlight-number,
    .bw-terms-highlight-symbol {
        grid-row: 1 / span 2;
        margin: 0;
        align-self: start;
        font-size: 34px;
    }
    .bw-terms-highlight-symbol { width: 38px; height: 38px; font-size: 21px; }
    .bw-terms-highlight h3 { align-self: end; }
    .bw-terms-jump nav { grid-template-columns: 1fr; }
    .bw-terms-item summary { min-height: 82px; padding: 19px 58px 19px 18px; }
    .bw-terms-item summary::after { right: 17px; width: 32px; height: 32px; }
    .bw-terms-body { padding: 0 18px 21px; }
    .bw-terms-help {
        align-items: stretch;
        flex-direction: column;
    }
    .bw-terms-help .bw-button { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
    .bw-terms-item,
    .bw-terms-item summary::after,
    .bw-terms-jump a { transition: none; }
}

@media print {
    .bw-site-header,
    .bw-site-footer,
    .bw-terms-jump,
    .bw-terms-help { display: none !important; }
    .bw-info-hero-inner { min-height: 0; padding-block: 24px; }
    .bw-terms-overview,
    .bw-terms-section { padding-block: 24px; }
    .bw-terms-layout { display: block; }
    .bw-terms-item {
        break-inside: avoid;
        box-shadow: none;
    }
    .bw-terms-item > .bw-terms-body { display: block !important; }
    .bw-terms-item summary::after { display: none; }
}
