/* BootPatrol — public marketing site (dark theme) */

:root {
    --bp-black: #0c0c0e;
    --bp-black-2: #131317;
    --bp-panel: #17171c;
    --bp-yellow: #f7b500;
    --bp-yellow-2: #ffca28;
    --bp-white: #ffffff;
    --bp-muted: #b9bcc4;
    --bp-line: rgba(255, 255, 255, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
    margin: 0;
    background: var(--bp-black);
    color: var(--bp-white);
    font-family: "Helvetica Neue", Arial, "Segoe UI", system-ui, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.bp-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.bp-yellow { color: var(--bp-yellow); }
.section-eyebrow {
    color: var(--bp-yellow);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .8rem;
    margin: 0 0 .5rem;
}
.section-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin: 0 0 1.25rem;
    line-height: 1.05;
}
.section { padding: 74px 0; }
.section--alt { background: var(--bp-black-2); }

/* ---------------- Logo lockup ---------------- */
.bp-logo { display: inline-flex; align-items: center; gap: 12px; }
.bp-logo__mark { width: 46px; height: 52px; flex: none; }
.bp-logo__img { height: 52px; width: auto; display: block; }
.bp-logo__text { line-height: 1; display: flex; flex-direction: column; }
.bp-logo__name {
    display: block; white-space: nowrap;
    font-weight: 900; font-size: 1.5rem; letter-spacing: 1px; font-style: italic;
    text-transform: uppercase;
}
.bp-logo__name .p,
.bp-logo__sub .p { color: var(--bp-yellow); }
.bp-logo__sub {
    display: block; white-space: nowrap;
    font-size: .62rem; letter-spacing: 3.2px; color: var(--bp-white);
    text-transform: uppercase; margin-top: 4px; font-weight: 600;
}

/* ---------------- Header ---------------- */
.bp-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(12, 12, 14, .96);
    border-bottom: 1px solid var(--bp-line);
    backdrop-filter: blur(6px);
}
.bp-header__inner { display: flex; align-items: center; gap: 20px; height: 78px; }
.bp-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.bp-nav a {
    text-transform: uppercase; font-weight: 700; font-size: .82rem; letter-spacing: .5px;
    color: var(--bp-white); padding: 6px 0; position: relative; white-space: nowrap;
}
.bp-nav a:hover { color: var(--bp-yellow); }
.bp-nav a.active { color: var(--bp-yellow); }
.bp-nav a.active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
    background: var(--bp-yellow); border-radius: 2px;
}
.bp-phone {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1.5px solid var(--bp-yellow); color: var(--bp-yellow);
    padding: 11px 26px; border-radius: 8px; font-weight: 800; white-space: nowrap;
    transition: all .15s ease;
}
.bp-phone:hover { background: var(--bp-yellow); color: #000; }
.bp-burger {
    display: none; margin-left: auto; background: none; border: 0; color: #fff;
    font-size: 1.6rem; cursor: pointer; padding: 6px;
}

/* ---------------- Buttons ---------------- */
.btn-bp {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 26px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
    border-radius: 6px; border: 2px solid transparent; cursor: pointer; font-size: .95rem;
    transition: all .15s ease;
}
.btn-bp--solid { background: var(--bp-yellow); color: #000; }
.btn-bp--solid:hover { background: var(--bp-yellow-2); transform: translateY(-1px); }
.btn-bp--ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-bp--ghost:hover { border-color: var(--bp-yellow); color: var(--bp-yellow); }

/* ---------------- Hero ---------------- */
.bp-hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(90deg, rgba(8,8,10,.10) 0%, rgba(8,8,10,.30) 40%, rgba(8,8,10,.60) 64%, rgba(8,8,10,.88) 100%),
        var(--hero-img, radial-gradient(circle at 30% 30%, #23242a 0%, #0c0c0e 70%));
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
.bp-hero__inner {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 48px clamp(20px, 6vw, 100px);
}
.bp-hero__content { max-width: 640px; }
.bp-hero h1 {
    font-weight: 900; text-transform: uppercase; letter-spacing: .5px;
    font-size: clamp(2.1rem, 5.2vw, 3.7rem); line-height: 1.02; margin: 0 0 18px;
}
.bp-hero__rule { width: 90px; height: 5px; background: var(--bp-yellow); border-radius: 3px; margin-bottom: 22px; }
.bp-hero p.lead { color: var(--bp-muted); font-size: 1.12rem; max-width: 560px; margin: 0 0 30px; }
.bp-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Feature strip pinned to the bottom of the full-screen hero */
.bp-features { margin-top: auto; border-top: 1px solid var(--bp-line); background: rgba(0,0,0,.45); backdrop-filter: blur(2px); }
.bp-features__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.bp-feature { padding: 26px 18px; display: flex; gap: 14px; align-items: flex-start; border-right: 1px solid var(--bp-line); }
.bp-feature:last-child { border-right: 0; }
.bp-feature__ico { color: var(--bp-yellow); flex: none; }
.bp-feature h4 { margin: 0 0 4px; font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; font-weight: 800; }
.bp-feature p { margin: 0; color: var(--bp-muted); font-size: .82rem; }

/* ---------------- Cards ---------------- */
.bp-grid { display: grid; gap: 22px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.bp-card {
    background: var(--bp-panel); border: 1px solid var(--bp-line); border-radius: 12px;
    padding: 26px; transition: border-color .15s ease, transform .15s ease;
}
.bp-card:hover { border-color: rgba(247,181,0,.5); transform: translateY(-3px); }
.bp-card__ico {
    width: 52px; height: 52px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    background: rgba(247,181,0,.12); color: var(--bp-yellow); margin-bottom: 16px;
}
.bp-card h3 { margin: 0 0 8px; font-size: 1.12rem; text-transform: uppercase; letter-spacing: .3px; }
.bp-card p { margin: 0; color: var(--bp-muted); font-size: .95rem; }

/* Why-choose list */
.bp-why { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 34px; }
.bp-why__item { display: flex; gap: 16px; }
.bp-why__ico { color: var(--bp-yellow); flex: none; }
.bp-why__item h4 { margin: 0 0 4px; text-transform: uppercase; font-size: 1rem; letter-spacing: .3px; }
.bp-why__item p { margin: 0; color: var(--bp-muted); font-size: .92rem; }

/* Trust badges */
.bp-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.bp-badge {
    background: var(--bp-yellow); color: #000; border-radius: 10px; text-align: center;
    padding: 20px 12px; font-weight: 800; text-transform: uppercase; font-size: .82rem; letter-spacing: .3px;
}
.bp-badge svg { margin-bottom: 8px; }

/* How it works — steps */
.bp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.bp-step { background: var(--bp-panel); border: 1px solid var(--bp-line); border-radius: 12px; padding: 26px; position: relative; }
.bp-step__num {
    width: 42px; height: 42px; border-radius: 50%; background: var(--bp-yellow); color: #000;
    font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 1.1rem;
}
.bp-step h4 { margin: 0 0 6px; text-transform: uppercase; font-size: 1rem; }
.bp-step p { margin: 0; color: var(--bp-muted); font-size: .92rem; }

/* Fees table */
.bp-fees { background: var(--bp-panel); border: 1px solid var(--bp-line); border-radius: 12px; overflow: hidden; margin-top: 30px; }
.bp-fees__row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 22px; border-bottom: 1px solid var(--bp-line); }
.bp-fees__row:last-child { border-bottom: 0; }
.bp-fees__row span:first-child { color: var(--bp-white); }
.bp-fees__row span:last-child { color: var(--bp-yellow); font-weight: 800; white-space: nowrap; }
.bp-note { color: var(--bp-muted); font-size: .82rem; margin-top: 12px; }

/* Property types */
.bp-types { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.bp-type {
    display: inline-flex; align-items: center; gap: 9px; background: var(--bp-panel);
    border: 1px solid var(--bp-line); border-radius: 40px; padding: 10px 20px; font-weight: 700; font-size: .9rem;
}
.bp-type svg { color: var(--bp-yellow); }

/* Contact */
.bp-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.bp-contact__item { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.bp-contact__ico { width: 46px; height: 46px; border-radius: 10px; background: rgba(247,181,0,.12); color: var(--bp-yellow); display: flex; align-items: center; justify-content: center; flex: none; }
.bp-contact__item .l { color: var(--bp-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; }
.bp-contact__item .v { font-weight: 800; font-size: 1.1rem; }
.bp-cta-panel { background: linear-gradient(135deg, var(--bp-yellow) 0%, #e0a200 100%); color: #000; border-radius: 16px; padding: 34px; }
.bp-cta-panel h3 { margin: 0 0 8px; font-size: 1.5rem; text-transform: uppercase; font-weight: 900; }
.bp-cta-panel p { margin: 0 0 20px; font-weight: 600; }
.btn-black { background: #000; color: #fff; display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 6px; font-weight: 800; text-transform: uppercase; }
.btn-black:hover { background: #1a1a1a; }

/* About — full-bleed photo with a centered content box */
.bp-about-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 96px 0;
    background:
        linear-gradient(rgba(6,6,9,.22), rgba(6,6,9,.28)),
        var(--about-img, #131317);
    background-size: cover;
    background-position: center;
}
.bp-about-box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: rgba(9, 9, 12, .50);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: 46px clamp(24px, 5vw, 60px);
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}
.bp-about-box .section-eyebrow { margin-bottom: .5rem; }
.bp-about-box .section-title,
.bp-about-box p { text-shadow: 0 1px 4px rgba(0, 0, 0, .6); }
.bp-about-box p { color: #eef0f4; font-size: 1.06rem; margin: 0 0 1rem; }
.bp-about-box p strong { color: #fff; }

/* Gallery */
.bp-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bp-gallery-tile { display: block; border-radius: 12px; overflow: hidden; border: 1px solid var(--bp-line); }
.bp-gallery-tile img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .3s ease; }
.bp-gallery-tile:hover img { transform: scale(1.05); }

/* Consultation form — light card to brighten the page */
.bp-form-card { background: #eceef2; border: 1px solid #d4d8df; border-radius: 16px; padding: 28px; color: #1a1d22; }
.bp-form-card h3 { margin: 0 0 4px; font-size: 1.35rem; text-transform: uppercase; font-weight: 900; color: #12141a; }
.bp-form-sub { margin: 0 0 18px; color: #565b66; font-size: .92rem; }
.bp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bp-field { margin-bottom: 14px; }
.bp-form-card .bp-field label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: #3a3f49; margin-bottom: 6px; font-weight: 700; }
.bp-form-card .bp-field input,
.bp-form-card .bp-field select,
.bp-form-card .bp-field textarea {
    width: 100%; background: #fff; border: 1px solid #c3c8d1; border-radius: 8px;
    color: #14171c; padding: 12px 14px; font-size: 1rem; font-family: inherit;
}
.bp-form-card .bp-field input::placeholder,
.bp-form-card .bp-field textarea::placeholder { color: #9aa0ab; }
.bp-form-card .bp-field input:focus,
.bp-form-card .bp-field select:focus,
.bp-form-card .bp-field textarea:focus {
    outline: none; border-color: var(--bp-yellow); box-shadow: 0 0 0 3px rgba(247,181,0,.25);
}
.bp-field textarea { resize: vertical; }
.bp-alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-weight: 600; font-size: .92rem; }
.bp-alert--ok { background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.35); }
.bp-alert--err { background: rgba(239,68,68,.12); color: #f87171; border: 1px solid rgba(239,68,68,.3); }
/* Alerts inside the light form card */
.bp-form-card .bp-alert--ok { background: #e2f6e9; color: #177245; border-color: #b7e4c7; }
.bp-form-card .bp-alert--err { background: #fdeaea; color: #b42318; border-color: #f3c0c0; }

/* Footer */
.bp-footer { background: #08080a; border-top: 1px solid var(--bp-line); padding: 46px 0 26px; }
.bp-footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: flex-start; }
.bp-footer p { color: var(--bp-muted); font-size: .9rem; max-width: 340px; }
.bp-footer__links { display: flex; flex-direction: column; gap: 8px; }
.bp-footer__links a { color: var(--bp-muted); font-size: .9rem; }
.bp-footer__links a:hover { color: var(--bp-yellow); }
.bp-footer__bottom {
    margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--bp-line);
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
    color: #6b6d76; font-size: .82rem;
}
.bp-footer__bottom a { color: #6b6d76; }
.bp-footer__bottom a:hover { color: var(--bp-yellow); }

/* ---------------- Nav CTA + Login ---------------- */
.bp-nav .bp-navpay {
    background: var(--bp-yellow); color: #000 !important; padding: 9px 16px;
    border-radius: 8px; font-weight: 800;
}
.bp-nav .bp-navpay:hover { background: var(--bp-yellow-2); color: #000 !important; }
.bp-nav .bp-navpay.active::after { display: none; }
.bp-navlogin { display: inline-flex; align-items: center; gap: 6px; }

/* ---------------- Interior page hero ---------------- */
.bp-pagehero {
    background: linear-gradient(180deg, #17171c 0%, #0c0c0e 100%);
    border-bottom: 1px solid var(--bp-line);
    padding: 56px 0;
}
.bp-pagehero h1 {
    font-weight: 900; text-transform: uppercase; letter-spacing: .5px;
    font-size: clamp(2rem, 4.5vw, 3rem); margin: 0; line-height: 1.05;
}
.bp-pagehero__sub { color: var(--bp-muted); margin: 12px 0 0; font-size: 1.08rem; max-width: 640px; }

/* ---------------- Two-path cards ---------------- */
.bp-path-card {
    background: var(--bp-panel); border: 1px solid var(--bp-line); border-radius: 14px;
    padding: 34px; text-align: center;
}
.bp-path-card:hover { border-color: rgba(247,181,0,.5); }
.bp-path-ico {
    width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(247,181,0,.12); color: var(--bp-yellow);
}
.bp-path-card h3 { margin: 0 0 10px; font-size: 1.3rem; text-transform: uppercase; }
.bp-path-card p { color: var(--bp-muted); margin: 0 0 22px; }

/* ---------------- CTA band ---------------- */
.bp-cta-band { background: linear-gradient(135deg, var(--bp-yellow) 0%, #e0a200 100%); }
.bp-cta-band__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 40px 0; flex-wrap: wrap;
}
.bp-cta-band h2 { margin: 0 0 6px; color: #111; font-size: 1.7rem; font-weight: 900; text-transform: uppercase; }
.bp-cta-band p { margin: 0; color: #2a2306; font-weight: 600; }
.bp-cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.bp-cta-band .btn-bp--solid { background: #111; color: #fff; }
.bp-cta-band .btn-bp--solid:hover { background: #000; }
.bp-cta-band .btn-bp--ghost { border-color: rgba(0,0,0,.45); color: #111; }
.bp-cta-band .btn-bp--ghost:hover { border-color: #111; background: rgba(0,0,0,.06); color: #111; }

/* ---------------- How It Works intro image ---------------- */
.bp-how-intro {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center;
    margin-bottom: 38px;
}
.bp-how-img {
    width: 100%; max-height: 380px; object-fit: cover; display: block;
    border-radius: 14px; border: 1px solid var(--bp-line); box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.bp-how-lead { color: var(--bp-muted); font-size: 1.12rem; margin: 0; }

/* ---------------- Payment page ---------------- */
.bp-pay-card {
    position: relative; background: var(--bp-panel); border: 1px solid var(--bp-line);
    border-radius: 14px; padding: 28px;
}
.bp-pay-card h3 { margin: 0 0 8px; font-size: 1.35rem; text-transform: uppercase; }
.bp-pay-card p { color: var(--bp-muted); margin: 0 0 18px; }
.bp-pay-card--muted { opacity: .82; }
.bp-pay-badge {
    position: absolute; top: 18px; right: 18px; background: var(--bp-yellow); color: #000;
    font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .5px;
    padding: 4px 10px; border-radius: 20px;
}
.btn-bp[disabled] { opacity: .5; cursor: not-allowed; }
.bp-pay-info { background: var(--bp-panel); border: 1px solid var(--bp-line); border-radius: 14px; padding: 28px; }
/* Square Web Payments SDK card field sits inside the light form card */
#card-container { background: #fff; border: 1px solid #c3c8d1; border-radius: 8px; padding: 6px 10px; min-height: 46px; }
.bp-card-errors { color: #b42318; font-size: .88rem; margin-top: 8px; min-height: 1em; }
.bp-pay-info h3 { font-size: 1.05rem; margin: 24px 0 12px; }
.bp-checklist { list-style: none; padding: 0; margin: 0 0 8px; }
.bp-checklist li {
    position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--bp-muted); font-size: .95rem;
}
.bp-checklist li::before {
    content: ""; position: absolute; left: 2px; top: 7px; width: 9px; height: 9px;
    border-radius: 50%; background: var(--bp-yellow);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
    .bp-features__grid { grid-template-columns: repeat(2, 1fr); }
    .bp-feature:nth-child(2n) { border-right: 0; }
    .cols-3, .bp-steps { grid-template-columns: 1fr 1fr; }
    .bp-badges { grid-template-columns: repeat(2, 1fr); }
    .bp-contact { grid-template-columns: 1fr; }
    .bp-gallery { grid-template-columns: repeat(2, 1fr); }

    /* Collapse the nav to a mobile dropdown here (fuller nav needs the room). */
    .bp-nav {
        display: none; position: absolute; top: 78px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--bp-black-2); border-bottom: 1px solid var(--bp-line); padding: 8px 20px;
    }
    .bp-nav.open { display: flex; }
    .bp-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--bp-line); }
    .bp-nav a.active::after { display: none; }
    .bp-nav .bp-phone, .bp-nav .bp-navpay { justify-content: flex-start; border-radius: 8px; margin: 8px 0; padding: 12px 16px; }
    .bp-nav .bp-navpay { border-bottom: 0; }
    .bp-burger { display: block; }
}
@media (max-width: 760px) {
    .cols-3, .cols-2, .bp-steps, .bp-why, .bp-features__grid, .bp-how-intro { grid-template-columns: 1fr; }
    .bp-feature { border-right: 0; }
    .bp-badges { grid-template-columns: 1fr 1fr; }
    .section { padding: 52px 0; }
    .bp-hero {
        min-height: auto;
        background: linear-gradient(rgba(8,8,10,.45), rgba(8,8,10,.80)), var(--hero-img, #0c0c0e);
        background-size: cover; background-position: center;
    }
    .bp-hero__inner { padding: 44px 20px; justify-content: flex-start; }
    .bp-features { margin-top: 0; }
    .bp-gallery { grid-template-columns: 1fr; }
    .bp-field-row { grid-template-columns: 1fr; }
    .bp-gallery-tile img { height: 220px; }
}

/* Clients / trusted-by marquee */
.bp-clients { padding: 56px 0; border-top: 1px solid var(--bp-line); border-bottom: 1px solid var(--bp-line); }
.bp-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.bp-marquee__track {
    display: flex; align-items: center; gap: 40px; width: max-content;
    animation: bp-marquee-scroll calc(var(--bp-marquee-count, 6) * 4s) linear infinite;
}
.bp-marquee:hover .bp-marquee__track { animation-play-state: paused; }
.bp-client {
    flex: none; background: #fff; border-radius: 12px; padding: 16px 22px; height: 84px;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.bp-client img { height: 48px; width: auto; max-width: 170px; object-fit: contain; display: block; }
@keyframes bp-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 576px) {
    .bp-client { height: 68px; padding: 12px 16px; }
    .bp-client img { height: 38px; max-width: 130px; }
}

/* Property photo tiles (Our Work carousel) */
.bp-photo { flex: none; margin: 0; width: 300px; }
.bp-photo img { width: 300px; height: 190px; object-fit: cover; border-radius: 12px; display: block; box-shadow: 0 6px 18px rgba(0,0,0,.35); }
.bp-photo figcaption { color: var(--bp-muted); font-size: .85rem; margin-top: 8px; text-align: center; }
@media (max-width: 576px) { .bp-photo, .bp-photo img { width: 230px; } .bp-photo img { height: 150px; } }

/* ============ Join / grow band (careers + partner) ============ */
.bp-joinband { background: var(--bp-yellow); }
.bp-joinband__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 0; }
.bp-joinband__col h3 { margin: 0 0 6px; color: #111; font-size: 1.35rem; text-transform: uppercase; letter-spacing: .3px; }
.bp-joinband__col p { margin: 0 0 14px; color: #2a2a2a; max-width: 44ch; }
.bp-joinband__col .btn-bp--solid { background: #111; color: #fff; }
.bp-joinband__col .btn-bp--solid:hover { background: #000; }
.bp-joinband__col .btn-bp--ghost { border-color: rgba(0,0,0,.5); color: #111; }
.bp-joinband__col .btn-bp--ghost:hover { border-color: #111; background: rgba(0,0,0,.06); color: #111; }
@media (max-width: 720px) { .bp-joinband__inner { grid-template-columns: 1fr; gap: 22px; } }

/* ============ Footer legal row ============ */
.bp-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; padding: 18px 0 4px; border-top: 1px solid var(--bp-line); }
.bp-footer__legal a { color: var(--bp-muted); font-size: .9rem; }
.bp-footer__legal a:hover { color: var(--bp-yellow); }

/* ============ Legal / policy pages ============ */
.bp-legal { max-width: 820px; color: #dfe1e7; }
.bp-legal h2 { margin: 30px 0 10px; font-size: 1.2rem; color: #fff; }
.bp-legal p, .bp-legal li { color: var(--bp-muted); line-height: 1.7; }
.bp-legal p { margin: 0 0 14px; }
.bp-legal a { color: var(--bp-yellow); }
.bp-legal a:hover { text-decoration: underline; }
.bp-legal ul.bp-checklist { margin: 0 0 14px; }
.bp-legal__foot { margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--bp-line); font-size: .95rem; }
.bp-legal__table { overflow-x: auto; margin: 4px 0 18px; }
.bp-legal__table table { width: 100%; border-collapse: collapse; min-width: 480px; }
.bp-legal__table th, .bp-legal__table td { text-align: left; padding: 10px 12px; border: 1px solid var(--bp-line); color: var(--bp-muted); font-size: .95rem; vertical-align: top; }
.bp-legal__table th { color: #fff; background: var(--bp-black-2); }

/* ============ Cookie notice ============ */
.bp-cookie {
    position: fixed; left: 50%; transform: translateX(-50%);
    bottom: 16px; z-index: 1200; width: min(920px, calc(100% - 24px));
    display: flex; align-items: center; gap: 16px;
    background: var(--bp-panel); border: 1px solid var(--bp-line);
    border-radius: 12px; padding: 14px 18px; box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.bp-cookie[hidden] { display: none; }
.bp-cookie__text { color: var(--bp-muted); font-size: .92rem; line-height: 1.5; }
.bp-cookie__text a { color: var(--bp-yellow); }
.bp-cookie__ok { flex: none; white-space: nowrap; }
@media (max-width: 560px) { .bp-cookie { flex-direction: column; align-items: stretch; text-align: center; } }
