/* ==========================================================================
   Brick Found Wealth - Premium Property Management
   Version: 1.0.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */

:root {
    --bfw-gold: #1D4ED8;
    --bfw-gold-hover: #3B82F6;
    --bfw-gold-light: #DBEAFE;
    --bfw-black: #111111;
    --bfw-black-light: #2A2A2A;
    --bfw-white: #FFFFFF;
    --bfw-white-soft: rgba(255, 255, 255, 0.8);
    --bfw-off-white: #F7F7F7;
    --bfw-text: rgba(0, 0, 0, 0.7);
    --bfw-heading: rgba(0, 0, 0, 0.8);
    --bfw-icon: rgba(0, 0, 0, 0.65);
    --bfw-text-light: #CCCCCC;
    --bfw-text-muted: #999999;
}

/* --------------------------------------------------------------------------
   Base & Reset
   -------------------------------------------------------------------------- */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    scrollbar-width: thin;
    scrollbar-color: #3B82F6 #111111;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: #3B82F6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1D4ED8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--bfw-text);
    background-color: var(--bfw-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--bfw-heading);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive visibility utilities */
.bfw-mobile-only {
    display: none;
}

.bfw-desktop-only {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Focus Visible (Accessibility)
   -------------------------------------------------------------------------- */

:focus-visible {
    outline: 2px solid var(--bfw-gold);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Skip Link (Accessibility)
   -------------------------------------------------------------------------- */

.bfw-skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bfw-gold);
    color: var(--bfw-black);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 6px 6px;
    transition: top 0.3s ease;
}

.bfw-skip-link:focus {
    top: 0;
}

/* --------------------------------------------------------------------------
   Honeypot (Anti-Spam)
   -------------------------------------------------------------------------- */

.bfw-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Global Layout
   -------------------------------------------------------------------------- */

.bfw-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.bfw-section {
    padding: 100px 0;
}

.bfw-section--alt {
    background-color: var(--bfw-off-white);
}

.bfw-section--dark {
    background-color: var(--bfw-black);
    color: var(--bfw-text-light);
}

.bfw-section--gold-light {
    background-color: var(--bfw-gold-light);
}

.bfw-section__heading {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--bfw-heading);
    margin-bottom: 1rem;
}

.bfw-section__heading--center {
    text-align: center;
}

.bfw-section__heading--light {
    color: var(--bfw-white-soft);
}

.bfw-section__line {
    width: 60px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
    margin-bottom: 1.5rem;
}

.bfw-section__line--center {
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.bfw-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
}

.bfw-btn--gold {
    background-color: var(--bfw-gold);
    color: var(--bfw-white);
    border-color: var(--bfw-gold);
}

.bfw-btn--gold:hover {
    background-color: var(--bfw-gold-hover);
    border-color: var(--bfw-gold-hover);
}

.bfw-btn--outline {
    background-color: transparent;
    color: var(--bfw-white);
    border-color: var(--bfw-gold);
}

.bfw-btn--outline:hover {
    color: var(--bfw-gold);
}

.bfw-btn--full {
    width: 100%;
}

.bfw-btn--lg {
    padding: 0.85rem 2.75rem;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Scroll Reveal Animation
   -------------------------------------------------------------------------- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bfw-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bfw-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.bfw-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: var(--bfw-black);
}

.bfw-header__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bfw-header__logo {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
}

.bfw-header__logo-icon {
    display: flex;
    align-items: center;
    color: var(--bfw-white-soft);
    position: relative;
    z-index: 2;
    margin-top: -8px;
}

.bfw-header__logo-icon svg {
    width: 44px;
    height: 44px;
}

.bfw-header__logo-text {
    display: inline-grid;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

.bfw-header__logo-main {
    font-size: 1.375rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    margin-right: -3px;
}

.bfw-header__logo-sub {
    display: flex;
    align-items: center;
    font-size: 0.69rem;
    font-weight: 600;
    color: var(--bfw-white-soft);
    margin-top: 5px;
}

.bfw-header__logo-sub::before,
.bfw-header__logo-sub::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--bfw-white-soft);
}

.bfw-header__logo-sub::before {
    margin-right: 6px;
}

.bfw-header__logo-sub::after {
    margin-left: 6px;
}

.bfw-header__logo-white {
    color: var(--bfw-white-soft);
}

.bfw-header__logo-accent {
    color: #3B82F6;
}

.bfw-header__nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 1.5rem;
}

.bfw-header__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bfw-header__menu-item {
    margin: 0;
    padding: 0;
}

.bfw-header__link {
    color: var(--bfw-white-soft);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.bfw-header__link:hover {
    color: var(--bfw-gold);
}

.bfw-header__cta {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--bfw-gold);
    color: var(--bfw-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--bfw-gold);
    border-radius: 5px;
    line-height: 1;
    transition: all 0.3s ease;
}

.bfw-header__cta:hover {
    background: var(--bfw-gold-hover);
    border-color: var(--bfw-gold-hover);
}

.bfw-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.bfw-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bfw-gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --------------------------------------------------------------------------
   Mobile Menu
   -------------------------------------------------------------------------- */

.bfw-mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--bfw-black);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.bfw-mobile-menu--active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.bfw-mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background-color: var(--bfw-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--bfw-white-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bfw-mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}

.bfw-mobile-menu__link {
    display: block;
    min-width: 260px;
    padding: 0.75rem 2rem;
    background-color: var(--bfw-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--bfw-white-soft);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.bfw-mobile-menu__link:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--bfw-white);
}

/* --------------------------------------------------------------------------
   Floating Side Navigation
   -------------------------------------------------------------------------- */

.bfw-sidenav {
    position: fixed;
    right: 30px;
    top: 90px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bfw-sidenav__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background: var(--bfw-black);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: var(--bfw-white);
    text-decoration: none;
    padding: 10px;
}

.bfw-sidenav__item:hover {
    background: var(--bfw-black-light);
}

.bfw-sidenav__item--active::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 10px;
    height: 10px;
    background: #3B82F6;
    border-radius: 50%;
}

.bfw-sidenav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bfw-sidenav__icon svg {
    stroke: currentColor;
}

.bfw-sidenav__label {
    font-size: 10px;
    font-weight: 500;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-align: center;
}

.bfw-sidenav__item--sm .bfw-sidenav__label {
    font-size: 8px;
}

/* Side nav visible at 1568px+ (no content overlap) */
@media (min-width: 1568px) {
    .bfw-sidenav {
        display: flex;
        right: 10px;
    }

    .bfw-header__nav {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.bfw-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.bfw-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85));
}

.bfw-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 0;
}

.bfw-hero__inner {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bfw-hero__text {
    flex: 0 0 55%;
    color: var(--bfw-white-soft);
}

.bfw-hero__heading {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--bfw-white-soft);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.bfw-hero__line {
    display: none;
}

.bfw-hero__subheading {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.bfw-hero__bullets-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.bfw-hero__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bfw-hero__ico-logo {
    height: 120px;
    width: auto;
}

.bfw-hero__bullet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--bfw-white-soft);
    font-size: 1rem;
}

.bfw-hero__bullet-icon {
    stroke: var(--bfw-white-soft);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.bfw-hero__learn-more {
    margin-top: 1rem;
}

.bfw-hero__mobile-cta {
    display: none;
    margin-top: 1rem;
}

.bfw-hero__form-wrap {
    flex: 0 0 40%;
    margin-left: auto;
}

.bfw-hero__form-card {
    background-color: var(--bfw-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bfw-hero__form-title {
    color: var(--bfw-heading);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   Form
   -------------------------------------------------------------------------- */

.bfw-form__row {
    display: flex;
    gap: 1rem;
}

.bfw-form__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    flex: 1;
}

.bfw-form__label {
    color: var(--bfw-text);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.bfw-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--bfw-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bfw-white);
}

.bfw-form__input:focus {
    border-color: var(--bfw-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
    outline: none;
}

.bfw-form__select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--bfw-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bfw-white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.bfw-form__select:focus {
    border-color: var(--bfw-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
    outline: none;
}

.bfw-form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--bfw-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bfw-white);
    resize: vertical;
}

.bfw-form__textarea:focus {
    border-color: var(--bfw-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
    outline: none;
}

.bfw-form__privacy {
    font-size: 0.75rem;
    color: var(--bfw-text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

.bfw-form__error {
    display: block;
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    line-height: 1.4;
}

.bfw-form__input[aria-invalid="true"],
.bfw-form__select[aria-invalid="true"],
.bfw-form__textarea[aria-invalid="true"] {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.bfw-form__submit {
    position: relative;
    background-color: var(--bfw-black);
    border-color: var(--bfw-black);
    color: var(--bfw-white);
}

.bfw-form__submit:hover {
    background-color: var(--bfw-black-light);
    border-color: var(--bfw-black-light);
}

.bfw-form__submit-text {
    visibility: visible;
}

.bfw-form__spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(17, 17, 17, 0.2);
    border-top-color: var(--bfw-black);
    border-radius: 50%;
    animation: bfw-spin 0.6s linear infinite;
}

@keyframes bfw-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.bfw-form--loading .bfw-form__submit-text {
    visibility: hidden;
}

.bfw-form--loading .bfw-form__spinner {
    display: block;
}

.bfw-form-message {
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.bfw-form-message--success {
    color: var(--bfw-gold);
    opacity: 1;
}

.bfw-form-message--error {
    color: #e74c3c;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Trust Strip
   -------------------------------------------------------------------------- */

.bfw-trust {
    background-color: var(--bfw-black);
}

.bfw-trust__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2.5rem 0;
}

.bfw-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.bfw-trust__icon {
    width: 64px;
    height: 64px;
    background-color: var(--bfw-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bfw-white-soft);
}

.bfw-trust__icon svg {
    width: 28px;
    height: 28px;
}

.bfw-trust__label {
    color: var(--bfw-white-soft);
    font-weight: 600;
    font-size: 0.9rem;
}


/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.bfw-about {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bfw-off-white, #F7F7F7);
    padding: 30px 0;
}

.bfw-about__inner {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.bfw-about__image {
    flex: 0 0 64%;
}

.bfw-about__image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.bfw-about__card {
    flex: 1;
    background: var(--bfw-white);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bfw-about__card .bfw-section__heading {
    text-align: left;
    color: var(--bfw-heading);
}

.bfw-about__card .bfw-section__line {
    margin-left: 0;
    width: 100%;
}

.bfw-about__body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--bfw-text);
    margin: 0 0 1.5rem;
}

.bfw-about__body:last-of-type {
    margin-bottom: 1.5rem;
}

.bfw-about__btn {
    align-self: flex-start;
    background-color: var(--bfw-gold);
    border-color: var(--bfw-gold);
    color: var(--bfw-white);
}

.bfw-about__btn:hover {
    background-color: var(--bfw-gold-hover);
    border-color: var(--bfw-gold-hover);
}

.bfw-about .bfw-benefits__grid {
    margin-top: 1.5rem;
}

.bfw-about__cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.bfw-about .bfw-benefits__card {
    background: var(--bfw-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bfw-about .bfw-benefits__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.bfw-about .bfw-benefits__title {
    color: var(--bfw-heading);
}

.bfw-about .bfw-benefits__text {
    color: var(--bfw-text);
}

/* --------------------------------------------------------------------------
   Benefits
   -------------------------------------------------------------------------- */

.bfw-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.bfw-benefits__card {
    background-color: var(--bfw-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bfw-benefits__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.bfw-benefits__icon {
    width: 64px;
    height: 64px;
    background-color: var(--bfw-white);
    border: 1px solid var(--bfw-icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--bfw-icon);
    stroke: var(--bfw-icon);
}

.bfw-benefits__icon svg {
    width: 32px;
    height: 32px;
}

.bfw-benefits__title {
    color: var(--bfw-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.bfw-benefits__text {
    color: var(--bfw-text);
    font-size: 1rem;
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Landlords
   -------------------------------------------------------------------------- */

.bfw-landlords {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, var(--bfw-black) 50%, transparent 50.1%),
        url('../images/livingroom.webp');
    background-size: 100vw 100%, cover;
    background-position: center, center;
    background-attachment: fixed, fixed;
    position: relative;
}

.bfw-landlords::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.bfw-landlords::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 0;
}

.bfw-landlords > .bfw-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.bfw-landlords__heading {
    color: var(--bfw-white-soft);
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: left;
    width: 100%;
    max-width: 1400px;
}

.bfw-landlords__intro {
    color: var(--bfw-white-soft);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 1400px;
    width: 100%;
}

.bfw-landlords__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Desktop: show 8 items, hide mobile version */
.bfw-landlords__content--mobile {
    display: none;
}

/* Desktop intro, hide mobile intro */
.bfw-landlords__intro--mobile {
    display: none;
}

/* Individual item row: icon | text | checkmark */
.bfw-landlords__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bfw-white);
    border-radius: 0;
    padding: 1.75rem 1.5rem;
    min-height: 140px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Remove right border on right column items */
.bfw-landlords__item:nth-child(even) {
    border-right: none;
}

/* Remove bottom border on last row items */
.bfw-landlords__item:nth-child(7),
.bfw-landlords__item:nth-child(8) {
    border-bottom: none;
}

.bfw-landlords__item:nth-child(1) {
    border-radius: 6px 0 0 0;
}

.bfw-landlords__item:nth-child(2) {
    border-radius: 0 6px 0 0;
}

.bfw-landlords__item:nth-child(7) {
    border-radius: 0 0 0 6px;
}

.bfw-landlords__item:nth-child(8) {
    border-radius: 0 0 6px 0;
}

.bfw-landlords__item-icon {
    width: 64px;
    height: 64px;
    background-color: var(--bfw-white);
    border: 1px solid var(--bfw-icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bfw-icon);
}

.bfw-landlords__item-icon svg {
    width: 28px;
    height: 28px;
}

.bfw-landlords__item-text {
    flex: 1;
    min-width: 0;
}

.bfw-landlords__item-title {
    color: var(--bfw-black);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.bfw-landlords__item-desc {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.bfw-landlords__item-check {
    display: none;
}

.bfw-landlords__cta {
    text-align: right;
    margin-top: 16px;
    width: 100%;
    max-width: 1400px;
}

.bfw-landlords__cta .bfw-btn {
    background-color: var(--bfw-black);
    border-color: var(--bfw-black);
    color: var(--bfw-white);
}

.bfw-landlords__cta .bfw-btn:hover {
    background-color: var(--bfw-black-light);
    border-color: var(--bfw-black-light);
}

/* Hidden on desktop - shown only on mobile */
.bfw-landlords__image {
    display: none;
}

.bfw-section__line--light {
    background-color: var(--bfw-gold);
}

/* --------------------------------------------------------------------------
   Estate Agents - Two Column Layout
   -------------------------------------------------------------------------- */

.bfw-agents {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bfw-black);
    padding: 30px 0;
}

/* Main two-column grid */
.bfw-agents__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* Left column: heading + flowchart */
.bfw-agents__left {
    display: flex;
    flex-direction: column;
}

.bfw-agents__left .bfw-section__heading {
    color: var(--bfw-white-soft);
    margin-bottom: 1rem;
}

.bfw-agents__left .bfw-section__line {
    background-color: var(--bfw-white-soft);
    margin-bottom: 2rem;
}

/* Vertical Flowchart */
.bfw-agents__flowchart {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    justify-content: space-between;
    position: relative;
}

/* Single continuous line behind all icons */
.bfw-agents__flowchart::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    border-left: 2px dashed rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Individual role item in flowchart */
.bfw-agents__role {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    padding: 1rem 0;
}

.bfw-agents__role-icon {
    width: 64px;
    height: 64px;
    background-color: var(--bfw-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bfw-white-soft);
    position: relative;
    z-index: 2;
}

.bfw-agents__role-content h3 {
    color: var(--bfw-white-soft);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.bfw-agents__role-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

/* Vertical connector line between roles - hidden, using ::before on flowchart instead */
.bfw-agents__connector-v {
    display: none;
}

/* Right column: Dark themed card */
.bfw-agents__card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.bfw-agents__card-title {
    color: var(--bfw-white-soft);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
}

/* Mobile-only heading - hidden on desktop */
.bfw-agents__card-heading--mobile {
    display: none;
}

.bfw-agents__desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.bfw-agents__help {
    margin-bottom: 2rem;
}

/* Mobile help hidden on desktop */
.bfw-agents__help--mobile {
    display: none;
}

.bfw-agents__help h4 {
    color: var(--bfw-white-soft);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.25rem 0;
}

.bfw-agents__help-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bfw-agents__help-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.75;
}

.bfw-agents__help-list li > span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bfw-agents__help-list li strong {
    color: var(--bfw-white-soft);
    font-weight: 600;
}

.bfw-agents__help-list li > span > span {
    color: rgba(255, 255, 255, 0.6);
}

.bfw-agents__bullet {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bfw-agents__bullet::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid rgba(255, 255, 255, 0.75);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.bfw-agents__help-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.bfw-agents__card .bfw-btn {
    display: inline-block;
    align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Serviced Accommodation (Light)
   -------------------------------------------------------------------------- */

.bfw-sa {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(135deg, transparent 50%, var(--bfw-black) 50.1%),
        url('../images/bathroom.webp');
    background-size: 100vw 100%, cover;
    background-position: center, center;
    background-attachment: fixed, fixed;
    padding: 30px 0;
    position: relative;
}

.bfw-sa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.bfw-sa::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 0;
}

.bfw-sa .bfw-container {
    position: relative;
    z-index: 1;
}

.bfw-sa .bfw-section__line--center {
    margin-left: auto;
    margin-right: auto;
}

/* Horizontal Steps */
.bfw-sa__steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.bfw-sa__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 180px;
    width: 180px;
}

.bfw-sa__step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bfw-white);
    color: var(--bfw-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bfw-sa__step-title {
    color: var(--bfw-white);
    font-weight: 600;
    font-size: 1.1rem;
    max-width: 160px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bfw-sa__connector {
    flex: 1;
    height: 3px;
    border-top: 3px dashed rgba(255, 255, 255, 0.8);
    margin-top: 28px;
}

/* Content: Benefits + Image (swapped) */
.bfw-sa__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.bfw-sa__image {
    display: grid;
    order: 2;
}

.bfw-sa__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bfw-sa__benefits {
    order: 1;
    background: var(--bfw-white);
    padding: 32px 2.5rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bfw-sa__title {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--bfw-heading);
    margin: 0 0 1rem 0;
}

.bfw-sa__benefits .bfw-section__line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
    margin-bottom: 1.5rem;
}

.bfw-sa__intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--bfw-text);
    margin: 0 0 1.25rem 0;
}

.bfw-sa__group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bfw-heading);
    margin: calc(1.25rem + 20px) 0 0.75rem 0;
}

.bfw-sa__group-title:first-of-type {
    margin-top: 10px;
}

.bfw-sa__image img {
    width: 100%;
    height: 100%;
    border-radius: 0 8px 8px 0;
    object-fit: cover;
}

.bfw-sa__benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.bfw-sa__benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--bfw-text);
    font-size: 1rem;
    line-height: 1.75;
}

.bfw-sa__check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: transparent;
    border: 1px solid var(--bfw-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.bfw-sa__check::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--bfw-heading);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.bfw-sa__cta {
    text-align: right;
    margin-top: 16px;
    width: 100%;
}

.bfw-sa__cta .bfw-btn {
    background-color: var(--bfw-gold);
    border-color: var(--bfw-gold);
    color: var(--bfw-white);
}

.bfw-sa__cta .bfw-btn:hover {
    background-color: var(--bfw-gold-hover);
    border-color: var(--bfw-gold-hover);
}

/* --------------------------------------------------------------------------
   HMO (Dark)
   -------------------------------------------------------------------------- */

.bfw-hmo {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bfw-black);
    padding: 30px 0;
}

.bfw-hmo .bfw-section__line--center {
    margin-left: auto;
    margin-right: auto;
}

.bfw-section__line--white {
    background-color: var(--bfw-white-soft);
}

/* Horizontal Steps */
.bfw-hmo__steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.bfw-hmo__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 180px;
    width: 180px;
}

.bfw-hmo__step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bfw-white-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.bfw-hmo__step-title {
    color: var(--bfw-white-soft);
    font-weight: 600;
    font-size: 1.1rem;
    max-width: 160px;
}

.bfw-hmo__connector {
    flex: 1;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    margin-top: 32px;
}

/* Content: Benefits + Image (mirrored from SA) */
.bfw-hmo__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.bfw-hmo__image {
    display: grid;
}

.bfw-hmo__image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.bfw-hmo__benefits {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bfw-hmo__title {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--bfw-white-soft);
    margin: 0 0 0.75rem 0;
}

.bfw-section__line--light {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
}

.bfw-hmo__intro {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.25rem 0;
}

.bfw-hmo__group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bfw-white-soft);
    margin: calc(1.25rem + 20px) 0 0.75rem 0;
}

.bfw-hmo__group-title:first-of-type {
    margin-top: 10px;
}

.bfw-hmo__benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.bfw-hmo__benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
    padding: 0;
}

.bfw-hmo__check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.bfw-hmo__check::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid rgba(255, 255, 255, 0.5);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.bfw-hmo__cta {
    text-align: center;
}

/* --------------------------------------------------------------------------
   FAQs
   -------------------------------------------------------------------------- */

.bfw-faqs {
    background: var(--bfw-black);
    padding: 140px 0 180px;
}

.bfw-faqs__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bfw-faqs__main {
    max-width: 100%;
}

.bfw-faqs .bfw-section__heading {
    color: var(--bfw-white-soft);
    margin-bottom: 2rem;
}

.bfw-faqs__badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4.25rem;
}

.bfw-faqs__badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.bfw-faqs__badge-heading {
    color: var(--bfw-white-soft);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bfw-faqs__badge-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.bfw-faqs__badge-logo {
    max-width: 160px;
    height: auto;
}

/* PRS logo is wider, needs more width to match ICO visually */
.bfw-faqs__badge:nth-child(2) .bfw-faqs__badge-logo {
    max-width: 220px;
}

.bfw-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bfw-accordion__item {
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.bfw-accordion__item:hover,
.bfw-accordion__item:focus-within,
.bfw-accordion__item--active {
    background-color: transparent;
}

.bfw-accordion__btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: transparent;
    border: none;
    color: var(--bfw-white-soft);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.bfw-accordion__btn:hover,
.bfw-accordion__btn:focus,
.bfw-accordion__btn:active {
    color: var(--bfw-white-soft);
    background-color: transparent;
    outline: none;
}

.bfw-accordion__item--active .bfw-accordion__btn {
    color: var(--bfw-white-soft);
    background-color: transparent;
}

.bfw-accordion__icon {
    color: var(--bfw-white-soft);
    font-size: 1.75rem;
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.bfw-accordion__item--active .bfw-accordion__icon {
    transform: rotate(45deg);
    color: var(--bfw-gold);
}

.bfw-accordion__body {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    will-change: height;
    box-sizing: border-box;
}

.bfw-accordion__answer {
    padding: 0 1.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.bfw-footer {
    background-color: #161616;
}

.bfw-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    align-items: stretch;
}

/* Card base styles */
.bfw-footer__card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

/* Company card - left side, full height */
.bfw-footer__card--company {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Nav card - middle */
.bfw-footer__card--nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bfw-footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bfw-footer__nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.bfw-footer__nav-link:hover {
    color: var(--bfw-white);
}

/* Right column stacks the two smaller cards */
.bfw-footer__right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Socials card */
.bfw-footer__card--socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Contact card */
.bfw-footer__card--contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bfw-footer__brand {
    display: flex;
    flex-direction: column;
}

.bfw-footer__logo {
    max-height: 40px;
    margin-bottom: 1rem;
    width: auto;
}

.bfw-footer__tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.bfw-footer__heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.bfw-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bfw-footer__menu li {
    margin-bottom: 0.6rem;
}

.bfw-footer__link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.bfw-footer__link:hover {
    color: var(--bfw-white);
}

.bfw-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bfw-footer__contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.bfw-footer__contact-icon {
    color: rgba(255, 255, 255, 0.6);
    stroke: rgba(255, 255, 255, 0.6);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.bfw-footer__socials {
    display: flex;
    gap: 1rem;
    margin-top: 0;
}

.bfw-footer__social {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.bfw-footer__social:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.bfw-footer__social svg {
    stroke: currentColor;
    width: 28px;
    height: 28px;
}

.bfw-footer__bottom {
    background-color: var(--bfw-black);
    padding: 1.5rem 0;
}

.bfw-footer__copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.bfw-footer__company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
}

.bfw-footer__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bfw-footer__info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.bfw-footer__info-list li:last-child {
    margin-bottom: 0;
}

.bfw-footer__info-list strong {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-right: 0.35rem;
}

.bfw-footer__info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.bfw-footer__info-icon svg {
    stroke: currentColor;
    width: 18px;
    height: 18px;
}

.bfw-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bfw-footer__privacy-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.bfw-footer__privacy-link:hover {
    color: var(--bfw-white);
}

/* --------------------------------------------------------------------------
   Privacy Modal
   -------------------------------------------------------------------------- */

.bfw-privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bfw-privacy-modal[hidden] {
    display: none;
}

.bfw-privacy-modal--active {
    opacity: 1;
    visibility: visible;
}

.bfw-privacy-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.bfw-privacy-modal__content {
    position: relative;
    background: var(--bfw-black);
    border: none;
    border-radius: 0;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 2.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.bfw-privacy-modal__content::-webkit-scrollbar {
    width: 8px;
}

.bfw-privacy-modal__content::-webkit-scrollbar-track {
    background: transparent;
}

.bfw-privacy-modal__content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.bfw-privacy-modal__content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.bfw-privacy-modal--active .bfw-privacy-modal__content {
    transform: translateY(0);
}

.bfw-privacy-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    aspect-ratio: 1 / 1;
    padding: 0;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--bfw-white-soft);
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.bfw-privacy-modal__close:hover,
.bfw-privacy-modal__close:focus,
.bfw-privacy-modal__close:active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--bfw-white);
    outline: none;
    box-shadow: none;
}

.bfw-privacy-modal__title {
    color: var(--bfw-white-soft);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
}

.bfw-privacy-modal__line {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
}

.bfw-privacy-modal__body {
    color: var(--bfw-white-soft);
    font-size: 0.95rem;
    line-height: 1.75;
}

.bfw-privacy-modal__body h3 {
    color: var(--bfw-white-soft);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.bfw-privacy-modal__body h3:first-child {
    margin-top: 0;
}

.bfw-privacy-modal__body p {
    margin: 0 0 1rem 0;
}

.bfw-privacy-modal__body ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.bfw-privacy-modal__body ul li {
    margin-bottom: 0.5rem;
}

.bfw-privacy-modal__body a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.bfw-privacy-modal__body a:hover,
.bfw-privacy-modal__body a:focus,
.bfw-privacy-modal__body a:active {
    color: var(--bfw-white);
    outline: none;
}

.bfw-privacy-modal__updated {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 2rem;
}

/* Privacy link in form */
.bfw-privacy-link {
    color: #4a90d9;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.bfw-privacy-link:hover,
.bfw-privacy-link:focus,
.bfw-privacy-link:active {
    color: #6ba3e0;
    outline: none;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* --------------------------------------------------------------------------
   Max 1200px
   -------------------------------------------------------------------------- */

@media (min-width: 1024px) and (max-width: 1400px) {
    .bfw-container,
    .bfw-header__container {
        max-width: calc(100% - 4rem);
    }

    /* Hero: Center content like mobile */
    .bfw-hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .bfw-hero__text {
        flex: 1 1 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bfw-hero__bullets {
        display: inline-flex;
        flex-direction: column;
        text-align: left;
    }

    /* Hero: Hide form and Learn More, show mobile CTA button */
    .bfw-hero__form-wrap,
    .bfw-hero__learn-more {
        display: none;
    }

    .bfw-hero__mobile-cta {
        display: inline-flex;
        margin-top: 1.5rem;
        background: var(--bfw-gold);
        color: var(--bfw-white);
        border: none;
    }

    .bfw-hero__mobile-cta:hover {
        background: var(--bfw-gold-hover);
        border: none;
    }
}

/* --------------------------------------------------------------------------
   Max 1200px - Tablet
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .bfw-header__container {
        position: relative;
    }

    .bfw-header__nav {
        display: none;
    }

    .bfw-header__cta {
        display: none;
    }

    .bfw-header__hamburger {
        display: flex;
    }

    .bfw-hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .bfw-hero__text {
        flex: 1 1 100%;
    }

    .bfw-hero__form-wrap {
        flex: 1 1 100%;
        max-width: 500px;
    }

    .bfw-hero__bullets {
        display: inline-flex;
        flex-direction: column;
        text-align: left;
    }

    .bfw-hero__line {
        margin-left: auto;
        margin-right: auto;
    }

    .bfw-about {
        min-height: auto;
    }

    .bfw-about__inner {
        flex-direction: column;
    }

    .bfw-about__image {
        flex: 1 1 100%;
    }

    .bfw-about__card .bfw-section__heading {
        text-align: center;
    }

    .bfw-about__card .bfw-section__line {
        margin-left: auto;
        margin-right: auto;
    }

    .bfw-about__btn {
        align-self: center;
    }

    .bfw-landlords {
        min-height: auto;
        padding: 60px 0;
    }

    .bfw-landlords__heading {
        margin-bottom: 1.5rem;
    }

    .bfw-landlords__content {
        grid-template-columns: 1fr;
    }

    .bfw-landlords__item:nth-child(1) {
        border-radius: 6px 6px 0 0;
    }

    .bfw-landlords__item:nth-child(2),
    .bfw-landlords__item:nth-child(7) {
        border-radius: 0;
    }

    .bfw-landlords__item:nth-child(8) {
        border-radius: 0 0 6px 6px;
    }

    .bfw-landlords__cta {
        margin-top: 2.5rem;
    }

    /* Estate Agents - Tablet responsive */
    .bfw-agents {
        min-height: auto;
        padding: 2rem 0;
    }

    .bfw-agents__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bfw-agents__left {
        order: 1;
    }

    .bfw-agents__card {
        order: 2;
    }

    /* SA - Tablet */
    .bfw-sa {
        min-height: auto;
        padding: 60px 0;
    }

    .bfw-sa__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* HMO - Tablet */
    .bfw-hmo {
        min-height: auto;
        padding: 60px 0;
    }

    .bfw-hmo__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bfw-hmo__benefits {
        order: 2;
    }

    .bfw-hmo__image {
        order: 1;
    }

    .bfw-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bfw-section {
        padding: 80px 0;
    }
}

/* --------------------------------------------------------------------------
   Max 1024px - Tablets & Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 1023px) {
    /* Fix mobile background jump - iOS/Android don't support fixed backgrounds well */
    .bfw-hero,
    .bfw-landlords,
    .bfw-sa,
    .bfw-faqs {
        background-attachment: scroll;
    }

    /* Prevent iOS auto-zoom on input focus (requires 16px minimum) */
    .bfw-form__input,
    .bfw-form__select,
    .bfw-form__textarea {
        font-size: 1rem;
    }

    /* SA - Mobile: plain white background, hide steps and image */
    .bfw-sa.bfw-section {
        background: var(--bfw-white);
        padding: 32px 0;
        min-height: auto;
    }

    .bfw-sa .bfw-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .bfw-sa::before,
    .bfw-sa::after {
        display: none;
    }

    .bfw-sa__steps {
        display: none;
    }

    .bfw-sa__image {
        display: none;
    }

    .bfw-sa__content {
        box-shadow: none;
        border-radius: 0;
    }

    .bfw-sa__benefits {
        background: transparent;
        padding: 0;
        border-radius: 0;
    }

    .bfw-sa__title {
        color: var(--bfw-heading);
    }

    .bfw-sa__intro {
        color: var(--bfw-text);
    }

    .bfw-sa__group-title {
        color: var(--bfw-heading);
        margin-top: 1rem;
        margin-bottom: calc(0.75rem + 10px);
    }

    .bfw-sa__group-title:first-of-type {
        margin-top: 0;
    }

    .bfw-sa__benefits-list li {
        color: var(--bfw-text);
        align-items: flex-start;
    }

    .bfw-sa__check {
        border-color: var(--bfw-icon);
    }

    .bfw-sa__check::after {
        border-color: var(--bfw-icon);
    }

    /* HMO - Mobile steps */
    .bfw-hmo__steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .bfw-hmo__step {
        flex: 0 0 auto;
        width: auto;
    }

    .bfw-hmo__connector {
        flex: 0 0 auto;
        width: 2px;
        height: 40px;
        border-top: none;
        border-left: 2px dashed rgba(255, 255, 255, 0.3);
        margin-top: 0;
    }

    .bfw-hmo__step-title {
        max-width: none;
    }

    /* FAQ - Mobile */
    .bfw-faqs.bfw-section {
        padding: 32px 0;
    }

    .bfw-faqs .bfw-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .bfw-faqs .bfw-section__heading {
        line-height: 1.4;
        margin-top: -20px;
    }

    .bfw-accordion__btn {
        line-height: 1.5;
    }

    .bfw-faqs__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bfw-faqs__badges {
        order: -1;
        margin-top: 0;
    }

    .bfw-faqs__badge {
        align-items: center;
        text-align: center;
    }

    .bfw-faqs__badge:first-child .bfw-faqs__badge-text {
        margin-bottom: 0.5rem;
    }

    .bfw-faqs__badge-logo {
        max-width: 136px;
    }

    .bfw-faqs__badge:nth-child(2) .bfw-faqs__badge-logo {
        max-width: 187px;
    }

    .bfw-footer .bfw-footer__inner.bfw-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .bfw-footer__card {
        padding: 1.25rem;
    }

    .bfw-footer__card--company {
        max-width: none;
    }

    .bfw-footer__card--nav {
        order: -1;
    }

    .bfw-footer__nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1.5rem;
    }

    .bfw-footer__right {
        gap: 1rem;
    }

    .bfw-footer__bottom {
        padding: 1rem 0;
    }

    .bfw-footer__bottom-inner {
        flex-direction: column;
        gap: 0.35rem;
        text-align: center;
    }

    .bfw-cta__inner {
        padding: 60px 1.5rem;
    }

    /* Container - Mobile */
    .bfw-container {
        width: 100%;
        max-width: none;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* About section - 32px top padding only on mobile */
    .bfw-about.bfw-section {
        padding: 32px 0 0 0;
    }

    /* Benefits grid - dark theme on mobile */
    .bfw-benefits__grid {
        grid-template-columns: 1fr;
        background: var(--bfw-black);
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 2rem 1rem;
    }

    /* Hide first two benefit cards on mobile */
    .bfw-about .bfw-benefits__card:nth-child(1),
    .bfw-about .bfw-benefits__card:nth-child(2) {
        display: none;
    }

    .bfw-about .bfw-benefits__card {
        background: var(--bfw-black);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: none;
    }

    .bfw-about .bfw-benefits__icon {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--bfw-white-soft);
    }

    .bfw-about .bfw-benefits__icon svg {
        stroke: var(--bfw-white-soft);
    }

    .bfw-about .bfw-benefits__title {
        color: var(--bfw-white-soft);
    }

    .bfw-about .bfw-benefits__text {
        color: rgba(255, 255, 255, 0.6);
    }

    .bfw-form__row {
        flex-direction: column;
    }

    .bfw-hero__form-card {
        padding: 1.75rem;
    }

    .bfw-hero {
        /* Fallback for older browsers */
        height: calc(100vh - 80px);
        /* JS-enhanced fallback (--vh set by JavaScript) */
        height: calc(var(--vh, 1vh) * 100 - 80px);
        /* Modern fix for iOS Safari 15.4+ (svh = small viewport height) */
        height: calc(100svh - 80px);

        max-height: calc(100vh - 80px);
        max-height: calc(var(--vh, 1vh) * 100 - 80px);
        max-height: calc(100svh - 80px);

        min-height: 0;
        padding: 0;
        background-attachment: scroll;
        background-position: top right;
        overflow: hidden;
        margin-top: -1px;
        padding-top: 1px;
    }

    .bfw-btn--lg {
        padding: 0.85rem 2rem;
    }

    /* Full-width centered buttons on mobile (except hero and about) */
    .bfw-landlords .bfw-btn,
    .bfw-agents .bfw-btn,
    .bfw-sa .bfw-btn,
    .bfw-faqs .bfw-btn {
        width: 100%;
        text-align: center;
        display: block;
    }

    /* All buttons same blue color on mobile */
    .bfw-btn--gold,
    .bfw-landlords__cta .bfw-btn {
        background-color: var(--bfw-gold);
        border-color: var(--bfw-gold);
        color: var(--bfw-white);
    }

    .bfw-section {
        padding: 50px 0;
    }

    .bfw-landlords {
        min-height: auto;
        padding: 32px 1rem;
        background: var(--bfw-white);
    }

    .bfw-landlords::before,
    .bfw-landlords::after {
        display: none;
    }

    .bfw-landlords > .bfw-container {
        max-width: none;
        padding: 0;
        align-items: flex-start;
    }

    .bfw-landlords__heading {
        color: var(--bfw-heading);
        margin-bottom: 0.5rem;
    }

    .bfw-landlords__intro {
        color: var(--bfw-text);
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Mobile: hide 8-item desktop, show 4-item mobile */
    .bfw-landlords__content--desktop {
        display: none;
    }

    /* Mobile: hide desktop intro, show mobile intro */
    .bfw-landlords__intro--desktop {
        display: none;
    }

    .bfw-landlords__intro--mobile {
        display: block;
    }

    .bfw-landlords__content--mobile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        max-width: none;
        width: 100%;
    }

    .bfw-landlords__item,
    .bfw-landlords__item:nth-child(1),
    .bfw-landlords__item:nth-child(2),
    .bfw-landlords__item:nth-child(7),
    .bfw-landlords__item:nth-child(8) {
        padding: 0;
        background: transparent;
        border-radius: 0;
        border: none;
        align-items: flex-start;
        min-height: auto;
        width: 100%;
    }

    .bfw-landlords__item:first-child,
    .bfw-landlords__item:last-child {
        border: none;
    }

    .bfw-landlords__item-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        border-color: var(--bfw-icon);
    }

    .bfw-landlords__item-icon svg {
        width: 20px;
        height: 20px;
    }

    .bfw-landlords__item-title {
        line-height: 1.4;
    }

    .bfw-landlords__image {
        display: block;
        width: 100%;
        margin-top: 1.5rem;
    }

    .bfw-landlords__image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .bfw-landlords__cta {
        margin-top: 1.5rem;
    }

    /* Agents - Mobile: hide flowchart, show card only */
    .bfw-agents__left {
        display: none;
    }

    .bfw-agents__card {
        padding: 0;
        border: none;
    }

    .bfw-agents__card-heading--mobile {
        display: block;
        color: var(--bfw-white-soft);
        font-size: clamp(1.4rem, 2.5vw, 1.75rem);
        font-weight: 700;
        margin: 0 0 0.5rem 0;
    }

    .bfw-agents__card-title--desktop {
        display: none;
    }

    .bfw-agents__help--desktop {
        display: none;
    }

    .bfw-agents__help--mobile {
        display: block;
    }

    .bfw-agents__left .bfw-section__heading {
        margin-bottom: 0.7rem;
    }

    /* Privacy Modal - Mobile */
    .bfw-privacy-modal__content {
        padding: 1.5rem;
    }

    .bfw-privacy-modal__title {
        font-size: 1.25rem;
        padding-right: 2rem;
    }

    /* Mobile: Hide inline form + Learn More, show CTA button */
    .bfw-hero__form-wrap,
    .bfw-hero__learn-more {
        display: none;
    }

    .bfw-hero__text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bfw-hero__mobile-cta {
        display: inline-flex;
        margin-top: 1.5rem;
        background: var(--bfw-gold);
        color: var(--bfw-white);
        border: none;
    }

    .bfw-hero__mobile-cta:hover {
        background: var(--bfw-gold-hover);
        border: none;
    }

    /* Mobile: Smaller logo far left, hamburger far right */
    .bfw-header__container {
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem 0 10px;
        max-width: 100%;
    }

    .bfw-header__hamburger {
        align-items: center;
        align-self: center;
    }

    .bfw-header__hamburger span {
        background: var(--bfw-white);
        width: 28px;
        height: 3px;
    }

    .bfw-header__logo {
        gap: 2px;
        margin-top: 4px;
    }

    .bfw-header__logo-icon {
        margin-top: -5px;
    }

    .bfw-header__logo-icon svg {
        width: 40px;
        height: 40px;
    }

    .bfw-header__logo-main {
        font-size: 1.2rem;
    }

    .bfw-hero__heading {
        font-size: 1.875rem;
    }

    .bfw-header__logo-sub {
        font-size: 0.6rem;
        margin-top: 3px;
    }

    .bfw-header__logo-sub::before,
    .bfw-header__logo-sub::after {
        height: 1px;
    }

    .bfw-header__logo-sub::before {
        margin-right: 4px;
    }

    .bfw-header__logo-sub::after {
        margin-left: 4px;
    }

    /* Trust strip hidden on mobile */
    .bfw-trust {
        display: none;
    }

    /* About section - mobile */
    .bfw-about__inner {
        flex-direction: column;
        gap: 0;
    }

    .bfw-about__btn {
        display: none;
    }

    .bfw-about__card {
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        text-align: left;
    }

    .bfw-about .bfw-section__heading {
        text-align: left;
        margin-top: 0;
    }

    .bfw-about__body:last-of-type {
        margin-bottom: 6px;
    }

    .bfw-about__image {
        margin-top: 0;
        margin-bottom: 5px;
        width: 100%;
    }

    .bfw-about__image img {
        border-radius: 8px;
    }


    /* Responsive visibility - swap desktop/mobile text */
    .bfw-mobile-only {
        display: block;
    }

    .bfw-desktop-only {
        display: none;
    }

    /* About section mobile structured content */
    .bfw-about__mobile-content {
        display: block;
    }

    .bfw-about__intro {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--bfw-text);
        margin-bottom: 1.25rem;
    }

    .bfw-about__subheading {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--bfw-heading);
        margin: 0 0 0.5rem;
    }

    .bfw-about__mobile-content .bfw-about__body {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .bfw-about__mobile-content .bfw-about__body:last-of-type {
        margin-bottom: 1.25rem;
    }
}

/* --------------------------------------------------------------------------
   Hero heading: Keep full size until 748px
   -------------------------------------------------------------------------- */
@media (min-width: 748px) {
    .bfw-hero__heading {
        font-size: clamp(2.25rem, 5vw, 3.5rem);
    }
}

/* --------------------------------------------------------------------------
   Hamburger: Match mobile styling at 1024-1200px
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) and (max-width: 1200px) {
    .bfw-header__hamburger span {
        background: var(--bfw-white);
        width: 28px;
        height: 3px;
    }
}

/* =============================================================================
   CONTACT MODAL (Mobile Full-Screen)
   ============================================================================= */

.bfw-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bfw-contact-modal[hidden] {
    display: none;
}

.bfw-contact-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.bfw-contact-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.bfw-contact-modal__content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bfw-white);
    padding: 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bfw-contact-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bfw-black);
    color: var(--bfw-white);
    font-size: 1.75rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.bfw-contact-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bfw-heading);
    margin: 1rem 0 1rem 0;
    padding-right: 3rem;
}

.bfw-contact-modal__line {
    display: none;
}

.bfw-contact-modal__form .bfw-form__field {
    margin-bottom: 1rem;
}

.bfw-contact-modal__form .bfw-form__label {
    margin-bottom: 0.35rem;
}

.bfw-contact-modal__form .bfw-form__textarea {
    resize: none;
}

.bfw-contact-modal__form .bfw-form__row {
    flex-direction: row;
}
