:root {
    --bsp-base: #F3F2ED;
    --bsp-green: #275F49;
    --bsp-mist: #DFE3DD;
    --bsp-sage: #B6C6BC;
    --bsp-mid: #6E9282;
    --bsp-dark: #183E30;
    --bsp-lime: #E4F2D4;
    --bsp-lilac: #DCD9FE;
    --bsp-blue: #5787B2;
    --bsp-white: #FFFFFF;
    --bsp-text: #183E30;
    --bsp-muted: #53665E;
    --bsp-border: rgba(39, 95, 73, 0.16);
    --bsp-shadow: 0 22px 60px rgba(24, 62, 48, 0.10);
    --bsp-radius: 26px;
    --bsp-radius-sm: 16px;
    --bsp-header-height: 88px;
    --bsp-content: 1180px;
    --bsp-narrow: 780px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bsp-base);
    color: var(--bsp-text);
    font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--bsp-green); text-underline-offset: 3px; }
a:hover { color: var(--bsp-dark); }
p { margin: 0 0 1.15em; }
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.45em;
    color: var(--bsp-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
    line-height: 1.08;
    text-wrap: balance;
}
h1 { font-size: clamp(3rem, 6vw, 6.2rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.35rem, 4.4vw, 4.2rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.45rem, 2.3vw, 2.05rem); letter-spacing: -0.02em; }
::selection { background: var(--bsp-lilac); color: var(--bsp-dark); }

.bsp-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 99999;
    padding: 10px 14px;
    background: var(--bsp-dark);
    color: #fff;
    border-radius: 8px;
    transform: translateY(-180%);
}
.bsp-skip-link:focus { transform: translateY(0); }

/* Header */
.bsp-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(243, 242, 237, 0.96);
    border-bottom: 1px solid rgba(39, 95, 73, 0.11);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}
.admin-bar .bsp-site-header { top: 32px; }
.bsp-site-header.is-scrolled { box-shadow: 0 12px 40px rgba(24, 62, 48, 0.10); }
.bsp-header-inner {
    min-height: var(--bsp-header-height);
    max-width: 1340px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.bsp-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    text-decoration: none;
    color: var(--bsp-dark);
}
.bsp-brand-icon {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 5px 18px rgba(24, 62, 48, 0.10);
}
.bsp-brand-copy { display: flex; flex-direction: column; line-height: 1; }
.bsp-brand-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.18rem, 1.7vw, 1.55rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}
.bsp-brand-tagline {
    margin-top: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bsp-green);
}
.bsp-nav-wrap { display: flex; align-items: center; gap: 22px; }
.bsp-primary-nav ul,
.bsp-footer-nav ul { list-style: none; margin: 0; padding: 0; }
.bsp-primary-nav .menu { display: flex; align-items: center; gap: 4px; }
.bsp-primary-nav a {
    display: block;
    padding: 10px 11px;
    color: var(--bsp-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
}
.bsp-primary-nav a:hover,
.bsp-primary-nav .current-menu-item > a,
.bsp-primary-nav .current_page_item > a { background: var(--bsp-mist); color: var(--bsp-green); }
.bsp-header-cta,
.bsp-button,
.wp-block-button.bsp-button-block .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.78rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: "Sora", sans-serif;
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.bsp-header-cta,
.wp-block-button.bsp-button-block.is-primary .wp-block-button__link,
.bsp-button-primary {
    background: var(--bsp-green);
    color: #fff;
    box-shadow: 0 10px 24px rgba(39, 95, 73, 0.18);
}
.bsp-header-cta:hover,
.wp-block-button.bsp-button-block.is-primary .wp-block-button__link:hover,
.bsp-button-primary:hover { background: var(--bsp-dark); color: #fff; transform: translateY(-1px); }
.bsp-menu-toggle { display: none; }

/* Core layout */
.bsp-site-main { overflow: clip; }
.wp-site-blocks, .entry-content { margin: 0; }
.alignfull { width: 100%; margin-left: 0; margin-right: 0; }
.alignwide, .bsp-content-width { width: min(calc(100% - 48px), var(--bsp-content)); margin-left: auto; margin-right: auto; }
.bsp-content-width { padding: 80px 0; }
.bsp-section { position: relative; padding: clamp(76px, 8vw, 120px) 24px; }
.bsp-section > .alignwide,
.bsp-page-hero > .alignwide,
.bsp-section .wp-block-columns.alignwide,
.bsp-section .wp-block-group.alignwide,
.bsp-page-hero .wp-block-group.alignwide { max-width: var(--bsp-content); margin-left: auto; margin-right: auto; }
.bsp-section-light { background: var(--bsp-base); }
.bsp-section-mist { background: var(--bsp-mist); }
.bsp-section-sage { background: var(--bsp-sage); }
.bsp-section-dark { background: var(--bsp-dark); color: rgba(255,255,255,.86); }
.bsp-section-dark h2, .bsp-section-dark h3, .bsp-section-dark h4 { color: #fff; }
.bsp-section-dark .bsp-kicker { color: var(--bsp-lime); }
.bsp-section-dark::before,
.bsp-cta-section::before,
.bsp-page-hero-dark::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    pointer-events: none;
}
.bsp-section-dark::before { width: 240px; height: 240px; right: -80px; top: -70px; }
.bsp-section-dark::after {
    content: "";
    position: absolute;
    width: 85px;
    height: 85px;
    right: 130px;
    top: 100px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
}
.bsp-kicker,
.bsp-eyebrow {
    margin-bottom: 16px;
    color: var(--bsp-green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.bsp-section-heading { max-width: 760px !important; margin-bottom: 48px !important; text-align: center; }
.bsp-section-heading p:last-child { color: var(--bsp-muted); font-size: 1.03rem; }
.bsp-section-dark .bsp-section-heading p:last-child { color: rgba(255,255,255,.72); }
.bsp-split { gap: clamp(38px, 7vw, 90px); }
.bsp-split > .wp-block-column { min-width: 0; }
.bsp-rounded-image img,
figure.bsp-rounded-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--bsp-radius);
    box-shadow: var(--bsp-shadow);
}

/* Hero */
.bsp-home-hero { position: relative; min-height: 680px; }
.bsp-home-hero .wp-block-cover__background { background: var(--bsp-dark) !important; opacity: .56 !important; }
.bsp-home-hero .wp-block-cover__image-background { object-position: center 44%; }
.bsp-home-hero .wp-block-cover__inner-container { width: 100%; }
.bsp-hero-inner { max-width: var(--bsp-content) !important; margin: 0 auto; padding: 80px 24px; color: white; }
.bsp-hero-inner > * { max-width: 720px; }
.bsp-hero-title { color: white; max-width: 700px; font-size: clamp(4rem, 8vw, 7.7rem); }
.bsp-home-hero .bsp-eyebrow { color: var(--bsp-lime); }
.bsp-hero-lead { max-width: 660px !important; margin-top: 22px; font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.65; color: rgba(255,255,255,.9); }
.bsp-hero-actions { margin-top: 34px; gap: 12px; }
.wp-block-button.bsp-button-block.is-secondary .wp-block-button__link {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.58);
    color: #fff;
    backdrop-filter: blur(7px);
}
.wp-block-button.bsp-button-block.is-secondary .wp-block-button__link:hover { background: #fff; color: var(--bsp-dark); }
.wp-block-button.bsp-button-block.is-text .wp-block-button__link {
    background: transparent;
    color: var(--bsp-green);
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--bsp-green);
}
.wp-block-button.bsp-button-block.is-text .wp-block-button__link:hover { color: var(--bsp-dark); border-color: var(--bsp-dark); transform: none; }
.wp-block-button.bsp-button-block.is-light .wp-block-button__link,
.bsp-button-light { background: #fff; color: var(--bsp-dark); }
.wp-block-button.bsp-button-block.is-light .wp-block-button__link:hover,
.bsp-button-light:hover { background: var(--bsp-lime); color: var(--bsp-dark); transform: translateY(-1px); }

/* Page heroes */
.bsp-page-hero { position: relative; padding: clamp(88px, 9vw, 135px) 24px; }
.bsp-page-hero-dark { background: var(--bsp-dark); color: rgba(255,255,255,.85); }
.bsp-page-hero-dark h1 { color: #fff; max-width: 950px; }
.bsp-page-hero-dark .bsp-kicker { color: var(--bsp-lime); }
.bsp-page-hero-light { background: var(--bsp-mist); }
.bsp-page-hero-light::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -90px;
    top: -70px;
    border: 1px solid rgba(39,95,73,.16);
    border-radius: 50%;
}
.bsp-page-lead { max-width: 800px; font-size: clamp(1.08rem, 1.8vw, 1.3rem); line-height: 1.65; }
.bsp-page-hero-dark .bsp-page-lead { color: rgba(255,255,255,.78); }
.bsp-page-hero-light .bsp-split { margin: 0 auto; }
.bsp-page-hero-light .bsp-rounded-image img { aspect-ratio: 5 / 4; max-height: 480px; }

/* Services */
.bsp-services-grid { width: min(100%, var(--bsp-content)); margin: 0 auto; display: grid; gap: 24px; }
.bsp-services-grid.is-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 40px; }
.bsp-services-grid.is-detailed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bsp-service-card {
    position: relative;
    padding: 34px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(39,95,73,.12);
    border-radius: var(--bsp-radius);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.bsp-service-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -34px;
    bottom: -34px;
    border: 1px solid rgba(39,95,73,.10);
    border-radius: 50%;
}
.bsp-services-grid.is-compact .bsp-service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(24,62,48,.09); background: white; }
.bsp-services-grid.is-detailed .bsp-service-card { padding: 42px; background: white; }
.bsp-service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--bsp-lime);
    color: var(--bsp-green);
}
.bsp-service-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bsp-service-card h3 { margin-bottom: 14px; }
.bsp-service-card p:last-child { margin-bottom: 0; }
.bsp-service-content { color: #455A51; }

/* Features / values */
.bsp-feature-columns, .bsp-values-grid { gap: 16px; }
.bsp-feature-card, .bsp-value-card, .bsp-info-card {
    height: 100%;
    padding: 30px;
    border-radius: var(--bsp-radius-sm);
}
.bsp-feature-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10); }
.bsp-feature-card h3 { color: #fff; font-size: 1.45rem; }
.bsp-feature-card p { color: rgba(255,255,255,.74); font-size: .92rem; margin: 0; }
.bsp-value-card { background: rgba(255,255,255,.7); border: 1px solid rgba(39,95,73,.11); }
.bsp-value-card h3 { font-size: 1.45rem; }
.bsp-value-card p { margin: 0; color: var(--bsp-muted); font-size: .92rem; }
.bsp-info-card { background: #fff; border: 1px solid var(--bsp-border); box-shadow: 0 15px 40px rgba(24,62,48,.06); }
.bsp-info-card h2 { font-size: 2rem; }
.bsp-two-cards { gap: 24px; }

/* Team */
.bsp-team-grid { width: min(100%, var(--bsp-content)); margin: 0 auto; display: grid; gap: 28px; }
.bsp-team-grid.is-compact { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 42px; }
.bsp-team-grid.is-detailed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bsp-team-card {
    background: #fff;
    border: 1px solid rgba(39,95,73,.11);
    border-radius: var(--bsp-radius);
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(24,62,48,.055);
}
.bsp-team-grid.is-detailed .bsp-team-card { display: grid; grid-template-columns: minmax(190px, 34%) 1fr; }
.bsp-team-photo { position: relative; min-height: 260px; background: var(--bsp-mist); overflow: hidden; }
.bsp-team-grid.is-compact .bsp-team-photo { aspect-ratio: 4 / 4.6; min-height: 0; }
.bsp-team-grid.is-detailed .bsp-team-photo { height: 100%; }
.bsp-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.bsp-team-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    place-items: center;
    background: var(--bsp-mist);
    overflow: hidden;
}
.bsp-team-placeholder span {
    position: relative;
    z-index: 2;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--bsp-base);
    border: 1px solid rgba(39,95,73,.18);
    color: var(--bsp-green);
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 600;
}
.bsp-team-placeholder i { position: absolute; display: block; border: 1px solid rgba(39,95,73,.14); border-radius: 50%; }
.bsp-team-placeholder i:nth-of-type(1) { width: 180px; height: 180px; right: -54px; top: -44px; }
.bsp-team-placeholder i:nth-of-type(2) { width: 70px; height: 70px; left: 24px; bottom: 36px; }
.bsp-team-placeholder i:nth-of-type(3) { width: 36px; height: 36px; right: 28px; bottom: 55px; background: var(--bsp-lilac); opacity: .6; border: 0; }
.bsp-status-pill {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(24,62,48,.90);
    color: #fff;
    font-size: .7rem;
    font-weight: 650;
    letter-spacing: .02em;
}
.bsp-team-copy { padding: 28px; }
.bsp-team-grid.is-detailed .bsp-team-copy { padding: 36px; }
.bsp-team-copy h3 { font-size: 1.8rem; }
.bsp-team-copy p { color: #52665D; font-size: .92rem; }
.bsp-team-copy p:last-child { margin-bottom: 0; }

/* Fees */
.bsp-fees-grid { width: min(100%, var(--bsp-content)); margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.bsp-fee-card { padding: clamp(28px, 4vw, 44px); background: #fff; border: 1px solid var(--bsp-border); border-radius: var(--bsp-radius); box-shadow: 0 16px 42px rgba(24,62,48,.06); }
.bsp-fee-card > h2 { padding-bottom: 18px; border-bottom: 1px solid var(--bsp-border); }
.bsp-fee-content h3 { margin-top: 32px; font-size: 1.55rem; }
.bsp-rate-table-wrap { overflow-x: auto; margin: 18px 0; }
.bsp-rate-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.bsp-rate-table th, .bsp-rate-table td { padding: 13px 10px; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(39,95,73,.10); }
.bsp-rate-table th { width: 42%; color: var(--bsp-dark); font-weight: 600; }
.bsp-rate-table td:last-child { white-space: nowrap; text-align: right; color: var(--bsp-green); }
.bsp-fee-note { padding: 14px 16px; background: var(--bsp-lime); border-radius: 12px; }

/* FAQs */
.bsp-faq-list { width: min(100%, 920px); margin: 0 auto; }
.bsp-faq-item { background: #fff; border: 1px solid var(--bsp-border); border-radius: 16px; margin-bottom: 14px; overflow: hidden; }
.bsp-faq-item summary { position: relative; list-style: none; cursor: pointer; padding: 22px 62px 22px 24px; color: var(--bsp-dark); font-weight: 650; }
.bsp-faq-item summary::-webkit-details-marker { display: none; }
.bsp-faq-item summary span::before,
.bsp-faq-item summary span::after { content: ""; position: absolute; right: 25px; top: 50%; width: 16px; height: 2px; background: var(--bsp-green); transform: translateY(-50%); transition: transform .2s ease; }
.bsp-faq-item summary span::after { transform: translateY(-50%) rotate(90deg); }
.bsp-faq-item[open] summary span::after { transform: translateY(-50%) rotate(0deg); }
.bsp-faq-answer { padding: 0 24px 22px; color: var(--bsp-muted); }
.bsp-faq-answer p:last-child { margin-bottom: 0; }

/* Contact */
.bsp-contact-details-grid { width: min(100%, var(--bsp-content)); margin: 0 auto; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.bsp-contact-detail { padding: 24px; background: #fff; border: 1px solid var(--bsp-border); border-radius: var(--bsp-radius-sm); min-width: 0; }
.bsp-contact-detail span { display: block; margin-bottom: 8px; color: var(--bsp-mid); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.bsp-contact-detail a, .bsp-contact-detail strong { display: block; color: var(--bsp-dark); font-size: .88rem; font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.bsp-map-section { padding-top: 54px; padding-bottom: 54px; }
.bsp-map-wrap { width: min(100%, var(--bsp-content)); margin: 0 auto; overflow: hidden; border-radius: var(--bsp-radius); box-shadow: var(--bsp-shadow); border: 5px solid rgba(255,255,255,.55); }
.bsp-map-wrap iframe { width: 100%; height: 460px; border: 0; display: block; }
.bsp-contact-layout { gap: 60px; }
.bsp-contact-form-wrap { background: rgba(255,255,255,.82); border: 1px solid rgba(39,95,73,.13); border-radius: var(--bsp-radius); padding: clamp(24px, 4vw, 40px); }
.bsp-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.bsp-field { margin-bottom: 18px; }
.bsp-field label { display: block; margin-bottom: 8px; color: var(--bsp-dark); font-size: .78rem; font-weight: 650; }
.bsp-field input, .bsp-field textarea {
    width: 100%;
    border: 1px solid rgba(39,95,73,.20);
    border-radius: 12px;
    background: #fff;
    color: var(--bsp-dark);
    font: inherit;
    font-size: .92rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.bsp-field input { height: 50px; padding: 0 15px; }
.bsp-field textarea { padding: 14px 15px; resize: vertical; min-height: 150px; }
.bsp-field input:focus, .bsp-field textarea:focus { border-color: var(--bsp-green); box-shadow: 0 0 0 3px rgba(39,95,73,.12); }
.bsp-honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.bsp-form-notice { margin-bottom: 22px; padding: 15px 17px; border-radius: 12px; font-size: .88rem; }
.bsp-form-success { background: var(--bsp-lime); color: var(--bsp-dark); }
.bsp-form-error { background: #f7dfdd; color: #73352f; }

/* CTA / policy */
.bsp-cta-section { background: var(--bsp-green); color: rgba(255,255,255,.86); text-align: center; }
.bsp-cta-section > .wp-block-group { max-width: 790px !important; }
.bsp-cta-section h2 { color: #fff; }
.bsp-cta-section .wp-block-buttons { justify-content: center; }
.bsp-policy > * { max-width: 850px; margin-left: auto; margin-right: auto; }
.bsp-policy h2 { margin-top: 48px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.bsp-policy h2:first-child { margin-top: 0; }
.bsp-policy li { margin-bottom: 9px; }

/* Footer */
.bsp-site-footer { background: #102F24; color: rgba(255,255,255,.70); padding: 52px 24px 30px; }
.bsp-footer-inner { width: min(100%, var(--bsp-content)); margin: 0 auto; }
.bsp-footer-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 28px; }
.bsp-footer-brand img { width: 50px; height: 50px; border-radius: 50%; }
.bsp-footer-brand div { display: flex; flex-direction: column; line-height: 1.1; }
.bsp-footer-brand strong { color: #fff; font-family: "Playfair Display", serif; font-size: 1.2rem; font-weight: 600; }
.bsp-footer-brand span { margin-top: 6px; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--bsp-lime); }
.bsp-footer-nav .menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px 18px; }
.bsp-footer-nav a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .78rem; }
.bsp-footer-nav a:hover { color: #fff; }
.bsp-copyright { margin: 28px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); text-align: center; font-size: .72rem; color: rgba(255,255,255,.45); }

/* Generic content */
.bsp-generic-content { min-height: 60vh; background: var(--bsp-base); }
.bsp-generic-entry { max-width: 850px; margin: 0 auto; }

/* Reveal animation */
.bsp-js .bsp-reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.bsp-js .bsp-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--bsp-blue); outline-offset: 3px; }

@media (max-width: 1180px) {
    .bsp-header-inner { padding-left: 22px; padding-right: 22px; }
    .bsp-primary-nav a { padding: 9px 7px; font-size: .78rem; }
    .bsp-nav-wrap { gap: 12px; }
    .bsp-contact-details-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    :root { --bsp-header-height: 78px; }
    .admin-bar .bsp-site-header { top: 32px; }
    .bsp-brand-icon { width: 50px; height: 50px; }
    .bsp-brand-name { font-size: 1.22rem; }
    .bsp-menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 0;
        background: transparent;
        color: var(--bsp-dark);
        font: inherit;
        font-size: .78rem;
        font-weight: 650;
        cursor: pointer;
    }
    .bsp-menu-bars { display: flex; width: 24px; height: 18px; flex-direction: column; justify-content: space-between; }
    .bsp-menu-bars i { display: block; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
    .bsp-menu-toggle[aria-expanded="true"] .bsp-menu-bars i:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .bsp-menu-toggle[aria-expanded="true"] .bsp-menu-bars i:nth-child(2) { opacity: 0; }
    .bsp-menu-toggle[aria-expanded="true"] .bsp-menu-bars i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .bsp-nav-wrap {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding: 18px 22px 24px;
        background: var(--bsp-base);
        border-top: 1px solid var(--bsp-border);
        box-shadow: 0 18px 35px rgba(24,62,48,.12);
    }
    .bsp-nav-wrap.is-open { display: block; }
    .bsp-primary-nav .menu { display: block; }
    .bsp-primary-nav a { padding: 11px 10px; font-size: .9rem; }
    .bsp-header-cta { width: 100%; margin-top: 14px; }
    .bsp-services-grid.is-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bsp-team-grid.is-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bsp-team-grid.is-detailed { grid-template-columns: 1fr; }
    .bsp-fees-grid { grid-template-columns: 1fr; }
    .bsp-feature-columns, .bsp-values-grid { flex-wrap: wrap !important; }
    .bsp-feature-columns > .wp-block-column, .bsp-values-grid > .wp-block-column { flex-basis: calc(50% - 12px) !important; }
    .bsp-contact-layout { gap: 30px; }
}

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

@media (max-width: 760px) {
    body { font-size: 15px; }
    .alignwide, .bsp-content-width { width: min(calc(100% - 32px), var(--bsp-content)); }
    .bsp-section, .bsp-page-hero { padding-left: 16px; padding-right: 16px; }
    .bsp-home-hero { min-height: 620px !important; }
    .bsp-hero-inner { padding-left: 16px; padding-right: 16px; }
    .bsp-hero-title { font-size: clamp(3.5rem, 16vw, 5.4rem); }
    .bsp-services-grid.is-compact, .bsp-services-grid.is-detailed { grid-template-columns: 1fr; }
    .bsp-service-card, .bsp-services-grid.is-detailed .bsp-service-card { padding: 28px; }
    .bsp-team-grid.is-compact { grid-template-columns: 1fr 1fr; gap: 16px; }
    .bsp-team-grid.is-detailed .bsp-team-card { display: block; }
    .bsp-team-grid.is-detailed .bsp-team-photo { height: 380px; }
    .bsp-contact-details-grid { grid-template-columns: 1fr 1fr; }
    .bsp-form-grid { grid-template-columns: 1fr; gap: 0; }
    .bsp-map-wrap iframe { height: 360px; }
    .bsp-feature-columns > .wp-block-column, .bsp-values-grid > .wp-block-column { flex-basis: 100% !important; }
}

@media (max-width: 520px) {
    .bsp-header-inner { min-height: 72px; padding: 9px 15px; }
    .bsp-brand { gap: 9px; }
    .bsp-brand-icon { width: 45px; height: 45px; }
    .bsp-brand-name { font-size: 1.03rem; }
    .bsp-brand-tagline { font-size: .52rem; margin-top: 5px; }
    .bsp-menu-toggle-label { display: none; }
    .bsp-team-grid.is-compact { grid-template-columns: 1fr; }
    .bsp-team-grid.is-compact .bsp-team-photo { aspect-ratio: 5 / 4; }
    .bsp-contact-details-grid { grid-template-columns: 1fr; }
    .bsp-footer-nav .menu { display: grid; grid-template-columns: 1fr 1fr; text-align: center; gap: 10px; }
    .bsp-rate-table th, .bsp-rate-table td { min-width: 120px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
    .bsp-js .bsp-reveal { opacity: 1; transform: none; }
}
