/*
Theme Name: New Bowman
Theme URI: https://bowmanfinancial.com
Author: Bowman Financial
Author URI: https://bowmanfinancial.com
Description: A refined, elegant theme for retirement financial planning services built with the SCI Method approach. Designed with accessibility and trust in mind.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: new-bowman
*/

/* ==========================================================================
   Custom Properties
   ========================================================================== */

:root {
    /* Primary Maroons */
    --bf-navy: #874039;
    --bf-navy-dark: #63211b;
    --bf-navy-light: #874039;

    /* Accent Maroons */
    --bf-gold: #874039;
    --bf-gold-light: #874039;
    --bf-gold-dark: #63211b;

    /* Backgrounds */
    --bf-cream: #E6E6E6;
    --bf-cream-dark: #E6E6E6;
    --bf-white: #ffffff;

    /* Text */
    --bf-text: #333333;
    --bf-text-light: #505050;
    --bf-border: rgba(135, 64, 57, 0.1);

    /* Typography Scale */
    --bf-text-xs: 0.875rem;
    --bf-text-sm: 1rem;
    --bf-text-base: 1.125rem;
    --bf-text-lg: 1.25rem;
    --bf-text-xl: 1.5rem;
    --bf-text-2xl: 1.875rem;
    --bf-text-3xl: 2.25rem;
    --bf-text-4xl: 3rem;
    --bf-text-5xl: 3.75rem;
    --bf-text-6xl: 4.5rem;

    /* Spacing Scale */
    --bf-space-xs: 0.5rem;
    --bf-space-sm: 1rem;
    --bf-space-md: 1.5rem;
    --bf-space-lg: 2.5rem;
    --bf-space-xl: 4rem;
    --bf-space-2xl: 6rem;
    --bf-space-3xl: 8rem;
    --bf-space-4xl: 10rem;

    /* Transitions */
    --bf-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bf-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Success color for thank you pages */
    --bf-success: #2e7d32;
    --bf-success-light: #e8f5e9;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--bf-text-base);
    line-height: 1.7;
    color: var(--bf-text);
    background-color: var(--bf-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bf-navy);
    letter-spacing: -0.01em;
    margin-top: 0;
}

p {
    margin-top: 0;
    line-height: 1.7;
}

a {
    color: var(--bf-navy);
    text-decoration: none;
    transition: color var(--bf-transition);
}

a:hover {
    color: var(--bf-gold);
}

em {
    color: var(--bf-gold);
}

/* Subheading style */
.bf-subheading {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: var(--bf-text-sm);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bf-gold);
    margin-bottom: var(--bf-space-sm);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.bf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 1rem 2.5rem;
    font-family: 'Source Sans 3', sans-serif;
    font-size: var(--bf-text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--bf-transition);
}

.bf-button--primary {
    background-color: var(--bf-navy);
    color: var(--bf-white);
    border-color: var(--bf-navy);
}

.bf-button--primary:hover {
    background-color: var(--bf-navy-dark);
    border-color: var(--bf-navy-dark);
    color: var(--bf-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 64, 57, 0.25);
}

.bf-button--white {
    background-color: #fff;
    color: var(--bf-navy);
    border-color: #fff;
}

.bf-button--white:hover {
    background-color: #ddd;
    border-color: #ddd;
    color: var(--bf-navy);
    transform: translateY(-2px);
}

.bf-button--link {
    color: var(--bf-navy);
    position: relative;
    border-bottom: 1px solid var(--bf-navy);
    padding: 4px;
}

.bf-button--link:after {
    position: relative;
    margin-left: 10px;
    content: ">";
    display: inline-block;
}

.bf-button--link:hover {
    color: var(--bf-navy);
    transform: translateY(-2px);
}
.bf-button--link:hover:after {
    left: 5px;
}

.bf-button--outline {
    background-color: transparent;
    color: var(--bf-navy);
    border-color: var(--bf-navy);
}

.bf-button--outline:hover {
    background-color: var(--bf-navy);
    color: var(--bf-white);
}

.bf-button--outline-white {
    background-color: transparent;
    color: var(--bf-white);
    border-color: var(--bf-white);
}

.bf-button--outline-white:hover {
    background-color: var(--bf-white);
    color: var(--bf-navy);
}

.bf-button--full {
    width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */

.bf-header {
    position: relative;
    background-color: var(--bf-white);
    border-bottom: 1px solid var(--bf-border);
    z-index: 999;
}

.bf-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

.bf-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--bf-text-2xl);
    font-weight: 500;
    color: var(--bf-navy);
    text-decoration: none;
}

.bf-logo:hover {
    color: var(--bf-navy);
}

.bf-logo span {
    color: var(--bf-gold);
}
.main-logo {
    max-width:250px;
}

/* Navigation */
.bf-nav {
    display: flex;
    align-items: center;
    gap: var(--bf-space-lg);
}

.bf-nav a,
.bf-nav .menu-item a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: var(--bf-text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bf-navy);
    text-decoration: none;
    padding: var(--bf-space-xs) 0;
    position: relative;
}

.bf-nav > a {
    padding: 10px 20px;
    color: #fff;
}

.bf-nav a::after,
.bf-nav .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bf-gold);
    transition: width var(--bf-transition);
}

.bf-nav a:hover::after,
.bf-nav .menu-item a:hover::after,
.bf-nav .current-menu-item a::after {
    width: 100%;
}

/* WordPress menu reset */
.bf-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--bf-space-lg);
}

.bf-nav li {
    margin: 0;
}

/* Header CTA button */
.bf-header__cta {
    margin-left: var(--bf-space-md);
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.bf-main {
    min-height: 50vh;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.bf-section {
    padding: var(--bf-space-3xl) var(--bf-space-lg);
}

.bf-section--cream {
    background-color: var(--bf-cream);
}

.bf-section--white {
    background-color: var(--bf-white);
}

.bf-section--navy {
    background-color: var(--bf-navy);
    color: var(--bf-white);
}

.bf-section--navy h2 {
    color: var(--bf-white);
}

.bf-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.bf-section__inner--narrow {
    max-width: 800px;
}

.bf-section__inner--medium {
    max-width: 1000px;
}

.bf-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--bf-space-2xl);
}

.bf-section__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--bf-space-sm);
}

.bf-section__subtitle {
    font-size: var(--bf-text-lg);
    color: var(--bf-text-light);
}

/* ==========================================================================
   Hero Section (Gradient variant for inner pages)
   ========================================================================== */

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.bf-hero--gradient {
    background: linear-gradient(180deg, var(--bf-cream) 0%, var(--bf-white) 100%);
    padding: var(--bf-space-3xl) var(--bf-space-lg);
    text-align: center;
}

.bf-hero.home-hero {
    background: url(https://bowmanretirementplanning.com/wp-content/uploads/2026/05/bowman-home-hero-new.jpg) center 15% no-repeat;
    background-size:cover;
    padding: 100px 0;
    text-align: left;
}
.bf-hero-overlay {
    position: absolute;
    z-index: 98;
    width:100%;
    height: 100%;
    background: rgba(255,255,255,0);
    top: 0;
    left: 0;
}

.bf-hero__content {
    max-width: 60%;
    position: relative;
    z-index: 99;
    padding: 24px;
    margin: 0;
    text-align: left;
}

.bf-hero__content h1 {
    font-size:clamp(48px, 5vw, 64px);
}

.bf-hero .bf-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 400;
    color: var(--bf-navy);
    margin-bottom: var(--bf-space-md);
    text-shadow: none;
}
.bf-hero__title {
    color: #fff;
    text-shadow: 1px 1px 0px #000;
}

.bf-hero__text {
    font-size: var(--bf-text-xl);
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-lg);
    display: none; 
}

.bf-hero .bf-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bf-space-sm);
    justify-content: left;
    margin-bottom: var(--bf-space-md);
}

.bf-hero__buttons a {
    margin-bottom: 8px;
}

.bf-hero .bf-hero__link {
    display: block;
    font-size: var(--bf-text-sm);
    color: var(--bf-gold);
    margin-top: var(--bf-space-sm);
}

.bf-hero .bf-hero__link:hover {
    text-decoration: underline;
}

.bf-hero .bf-hero__note {
    font-size: var(--bf-text-sm);
    color: var(--bf-text-light);
    margin-top: var(--bf-space-lg);
}

/* ABOUT SECTION */
.bf-about-section {
    background: url(https://klv.kfu.temporary.site/website_8fc23989/wp-content/uploads/2026/01/matthew-mcbrayer-fZL3EN4aJUI-unsplash.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}
.bf-about-quote {
    position: relative;
}
.bf-section__inner {
    position: relative;
    z-index: 99;
}

/* ==========================================================================
   SCI Method Cards (3-column grid)
   ========================================================================== */
.sci-hero {
    position: relative;
}

.bf-sci-intro {
    text-align: center;
    margin-bottom: var(--bf-space-2xl);
}

.bf-sci-intro__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-xs);
}

.bf-sci-intro__subtitle {
    font-size: var(--bf-text-lg);
    color: var(--bf-text-light);
}

.bf-sci-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bf-space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.bf-sci-card {
    background: var(--bf-white);
    border: 1px solid var(--bf-cream-dark);
    padding: var(--bf-space-xl);
    transition: all var(--bf-transition);
    position: relative;
}

.bf-sci-card .card-letter{
    position: absolute;
    left: -30px;
    top: -75px;
    font-size: 120px;
    font-weight: bold;
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    text-shadow: 0px 0px 0px #000, 2px 2px 0px #999, 0px 0px 40px rgba(0,0,0,.1);
}

.bf-sci-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(135, 64, 57, 0.1);
    border-color: var(--bf-gold);
}

.bf-sci-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--bf-text-xl);
    color: var(--bf-navy);
    margin-bottom: var(--bf-space-sm);
}

.bf-sci-card__text {
    color: var(--bf-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.bf-sci-buttons {
    display: flex;
    gap: var(--bf-space-sm);
    justify-content: center;
    margin-top: var(--bf-space-2xl);
}

/* ==========================================================================
   Checklist (Who This Is For, etc.)
   ========================================================================== */

.bf-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--bf-space-lg);
}

.bf-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: var(--bf-space-sm);
    margin-bottom: var(--bf-space-sm);
    font-size: var(--bf-text-lg);
}

.bf-checklist__icon {
    color: var(--bf-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-size: 1.25rem;
    font-weight: bold;
}

/* ==========================================================================
   Lead Magnet Form Section
   ========================================================================== */

.bf-lead-magnet {
    max-width: 700px;
    margin: 0 auto;
}

.bf-lead-magnet__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-md);
}

.bf-lead-magnet__intro {
    font-size: var(--bf-text-lg);
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-lg);
}

.bf-lead-magnet__box {
    background: var(--bf-white);
    border: 1px solid var(--bf-cream-dark);
    padding: var(--bf-space-lg);
}

.bf-lead-magnet__features-title {
    font-size: var(--bf-text-lg);
    font-weight: 600;
    margin-bottom: var(--bf-space-md);
}

.bf-lead-magnet__features {
    margin-bottom: var(--bf-space-lg);
}

.bf-lead-magnet__disclaimer {
    font-size: var(--bf-text-xs);
    color: var(--bf-text-light);
    text-align: center;
    margin-top: var(--bf-space-sm);
}

/* ==========================================================================
   Podcast Teaser
   ========================================================================== */
.podcast-hero {
    background: var(--bf-navy);
}

.bf-podcast-intro {
    margin-bottom: var(--bf-space-lg);
}

.bf-podcast-intro__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-xs);
}

.bf-podcast-intro__subtitle {
    font-size: var(--bf-text-lg);
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-md);
}

.bf-podcast-intro__text {
    color: var(--bf-text-light);
}

.bf-podcast-list {
    display: flex;
    flex-direction: column;
    gap: var(--bf-space-sm);
    margin-bottom: var(--bf-space-lg);
}

.bf-podcast-item {
    background: var(--bf-white);
    border: 1px solid var(--bf-cream-dark);
    padding: var(--bf-space-md);
}

.bf-podcast-item__label {
    font-weight: 600;
    color: var(--bf-navy);
}

.bf-podcast-item__title {
    color: var(--bf-text-light);
}

.bf-podcast-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bf-space-sm);
    justify-content: center;
}

/* ==========================================================================
   About Teaser (Home page)
   ========================================================================== */
.about-hero {
    position: relative;
}

.bf-about-teaser {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.bf-about-teaser__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-md);
}

.bf-about-teaser__text {
    font-size: var(--bf-text-lg);
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-lg);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.bf-cta {
    background-color: var(--bf-navy);
    text-align: center;
    padding: var(--bf-space-3xl) var(--bf-space-lg);
}

.bf-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.bf-cta__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--bf-white);
    margin-bottom: var(--bf-space-md);
}

.bf-cta__title em {
    color: var(--bf-gold);
}

.bf-cta__text {
    font-size: var(--bf-text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--bf-space-lg);
}

.bf-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bf-space-sm);
    justify-content: center;
}

/* ==========================================================================
   Pillar Sections (SCI Method page)
   ========================================================================== */

.bf-pillars {
    max-width: 900px;
    margin: 0 auto;
}

.bf-pillar {
    margin-bottom: var(--bf-space-3xl);
}

.bf-pillar:last-child {
    margin-bottom: 0;
}

.bf-pillar__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--bf-text-3xl);
    color: var(--bf-gold);
    margin-bottom: var(--bf-space-md);
}

.bf-pillar__text {
    font-size: var(--bf-text-lg);
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-md);
}

.bf-pillar__deliverables {
    background: var(--bf-cream);
    padding: var(--bf-space-lg);
}

.bf-pillar__deliverables-title {
    font-weight: 600;
    margin-bottom: var(--bf-space-md);
}

/* ==========================================================================
   Expectation Cards (SCI Method - What You Can Expect)
   ========================================================================== */

.bf-expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bf-space-md);
    max-width: 800px;
    margin: 0 auto var(--bf-space-lg);
}

.bf-expect-card {
    background: var(--bf-white);
    border: 1px solid var(--bf-cream-dark);
    padding: var(--bf-space-lg);
}

.bf-expect-card__text {
    color: var(--bf-text-light);
    margin: 0;
}

/* ==========================================================================
   Process Timeline (SCI Method page)
   ========================================================================== */

.bf-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.bf-timeline__list {
    display: flex;
    flex-direction: column;
    gap: var(--bf-space-md);
}

.bf-timeline__step {
    display: flex;
    align-items: flex-start;
    gap: var(--bf-space-md);
}

.bf-timeline__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--bf-navy);
    color: var(--bf-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--bf-text-lg);
}

.bf-timeline__content {
    padding-top: 0.5rem;
}

.bf-timeline__content h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: var(--bf-text-lg);
    color: var(--bf-navy);
    margin-bottom: var(--bf-space-xs);
}

.bf-timeline__content p {
    color: var(--bf-text-light);
    margin: 0;
}

.bf-timeline__cta {
    text-align: center;
    margin-top: var(--bf-space-2xl);
}

/* ==========================================================================
   Resource Cards (Resources page)
   ========================================================================== */

.bf-resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bf-space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.bf-resource-card {
    background: var(--bf-white);
    border: 2px solid var(--bf-gold-light);
    padding: var(--bf-space-xl);
}

.bf-resource-card__icon {
    width: 48px;
    height: 48px;
    background: var(--bf-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--bf-space-md);
    color: var(--bf-gold);
    font-size: 1.5rem;
}

.bf-resource-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--bf-text-xl);
    color: var(--bf-navy);
    margin-bottom: var(--bf-space-sm);
}

.bf-resource-card__text {
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-md);
}

.bf-resource-card__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--bf-space-xs);
}

/* ==========================================================================
   Episode List (Resources page)
   ========================================================================== */

.bf-episode-list {
    display: flex;
    flex-direction: column;
    gap: var(--bf-space-md);
}

.bf-episode-card {
    background: var(--bf-white);
    border: 1px solid var(--bf-cream-dark);
    padding: var(--bf-space-lg);
}

.bf-episode-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--bf-space-xs);
}

.bf-episode-card__title {
    font-weight: 600;
    color: var(--bf-navy);
}

.bf-episode-card__badge {
    font-size: var(--bf-text-xs);
    color: var(--bf-text-light);
}

.bf-episode-card__text {
    font-size: var(--bf-text-sm);
    color: var(--bf-text-light);
    margin: 0;
}

/* ==========================================================================
   Planning Notes Cards (Resources page)
   ========================================================================== */

.bf-notes-intro {
    margin-bottom: var(--bf-space-lg);
}

.bf-notes-intro__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-xs);
}

.bf-notes-intro__text {
    color: var(--bf-text-light);
}

.bf-note-list {
    display: flex;
    flex-direction: column;
    gap: var(--bf-space-sm);
}

.bf-note-card {
    background: var(--bf-white);
    border: 1px solid var(--bf-cream-dark);
    padding: var(--bf-space-lg);
}

.bf-note-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bf-note-card__title {
    font-weight: 600;
    color: var(--bf-navy);
    margin-bottom: var(--bf-space-xs);
}

.bf-note-card__text {
    font-size: var(--bf-text-sm);
    color: var(--bf-text-light);
    margin: 0;
}

.bf-note-card__tag {
    font-size: var(--bf-text-xs);
    padding: var(--bf-space-xs) var(--bf-space-sm);
    border-radius: 2px;
    flex-shrink: 0;
}

.bf-note-card__tag--basics {
    background: var(--bf-cream);
    color: var(--bf-navy);
}

.bf-note-card__tag--retirement {
    background: #e8f5e9;
    color: #2e7d32;
}

.bf-note-card__tag--taxes {
    background: #f3e5f5;
    color: #7b1fa2;
}

/* ==========================================================================
   Social Links (Resources page)
   ========================================================================== */

.bf-social {
    text-align: center;
}

.bf-social__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-xs);
}

.bf-social__text {
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-lg);
}

.bf-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bf-space-sm);
    justify-content: center;
}

.bf-social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--bf-space-xs);
    padding: var(--bf-space-sm) var(--bf-space-md);
    border: 1px solid var(--bf-navy);
    color: var(--bf-navy);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--bf-text-sm);
    letter-spacing: 0.05em;
    transition: all var(--bf-transition);
}

.bf-social-link:hover {
    background: var(--bf-navy);
    color: var(--bf-white);
}

/* ==========================================================================
   About Page - Beliefs List
   ========================================================================== */

.bf-beliefs {
    margin-bottom: var(--bf-space-2xl);
    display: flex;
    flex-wrap:wrap;
}

.bf-beliefs__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-lg);
}

.bf-beliefs__list {
    display: flex;
    flex-direction: column;
    gap: var(--bf-space-sm);
    width: 50%;
    padding-right: 32px;
}

.bf-beliefs__item {
    display: flex;
    align-items: flex-start;
    gap: var(--bf-space-sm);
    font-size: var(--bf-text-lg);
}
.bf-beliefs_headshot {
    width: 50%;
}
.bf-beliefs_headshot img {
    max-width: 100%;
}
@media (max-width:768px) {
    .bf-beliefs__title {
        margin: 16px 0;
    }
    .bf-beliefs {
        flex-direction:column-reverse;
    }
    .bf-beliefs__list {
        width: 100%;
    }
    .bf-beliefs_headshot {
        width: 100%;
    }
}

/* ==========================================================================
   About Page - Work Style Box
   ========================================================================== */

.bf-work-style {
    margin-bottom: var(--bf-space-2xl);
}

.bf-work-style__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-md);
}

.bf-work-style__box {
    background: var(--bf-cream);
    padding: var(--bf-space-xl);
}

.bf-work-style__text {
    font-size: var(--bf-text-lg);
    color: var(--bf-text-light);
    margin: 0;
}

.bf-work-style__cta {
    text-align: center;
    margin-top: var(--bf-space-lg);
}

/* ==========================================================================
   About Page - Background Card
   ========================================================================== */

.bf-background {
    margin-bottom: var(--bf-space-2xl);
}

.bf-background__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-md);
}

.bf-background-card {
    background: var(--bf-white);
    border: 1px solid var(--bf-cream-dark);
    padding: var(--bf-space-xl);
}

.bf-background-card__item {
    margin-bottom: var(--bf-space-md);
}

.bf-background-card__item:last-child {
    margin-bottom: 0;
}

.bf-background-card__label {
    font-weight: 600;
    color: var(--bf-navy);
}

.bf-background-card__text {
    color: var(--bf-text-light);
}

/* ==========================================================================
   Philosophy Quote (About page)
   ========================================================================== */

.bf-philosophy {
    text-align: center;
    padding: var(--bf-space-xl);
    max-width: 800px;
    margin: 0 auto;
}

.bf-philosophy__quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--bf-text-2xl);
    font-style: italic;
    color: var(--bf-navy);
    margin: 0 0 var(--bf-space-md);
    border: none;
    padding: 0;
}

.bf-philosophy__author {
    color: var(--bf-text-light);
    margin: 0;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.bf-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bf-space-2xl);
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Form */
.bf-contact-form__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-md);
}

.bf-form-group {
    margin-bottom: var(--bf-space-md);
}

.bf-form-group label {
    display: block;
    font-size: var(--bf-text-sm);
    font-weight: 600;
    color: var(--bf-navy);
    margin-bottom: var(--bf-space-xs);
}

.bf-form-group input,
.bf-form-group textarea {
    width: 100%;
    padding: var(--bf-space-sm) var(--bf-space-md);
    font-family: 'Source Sans 3', sans-serif;
    font-size: var(--bf-text-base);
    border: 1px solid var(--bf-cream-dark);
    background: var(--bf-cream);
    transition: border-color var(--bf-transition);
}

.bf-form-group input:focus,
.bf-form-group textarea:focus {
    outline: none;
    border-color: var(--bf-gold);
}

.bf-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.bf-form-disclaimer {
    font-size: var(--bf-text-xs);
    color: var(--bf-text-light);
    margin-top: var(--bf-space-sm);
}

/* Contact Info Cards */
.bf-contact-info__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-md);
}

.bf-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--bf-space-md);
}

.bf-info-card {
    background: var(--bf-white);
    border: 1px solid var(--bf-cream-dark);
    padding: var(--bf-space-lg);
}

.bf-info-card__header {
    display: flex;
    align-items: center;
    gap: var(--bf-space-sm);
    margin-bottom: var(--bf-space-sm);
}

.bf-info-card__icon {
    width: 40px;
    height: 40px;
    background: var(--bf-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bf-gold);
    font-size: 1.25rem;
}

.bf-info-card__title {
    font-weight: 600;
    color: var(--bf-navy);
    font-size: var(--bf-text-lg);
}

.bf-info-card__text {
    color: var(--bf-text-light);
    margin: 0;
}

/* Office Hours */
.bf-office-hours {
    background: var(--bf-cream);
    padding: var(--bf-space-lg);
    margin-top: var(--bf-space-lg);
}

.bf-office-hours__title {
    font-weight: 600;
    margin-bottom: var(--bf-space-xs);
}

.bf-office-hours__text {
    font-size: var(--bf-text-sm);
    color: var(--bf-text-light);
    margin: 0;
}

/* Calendar Placeholder */
.bf-calendar {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bf-calendar__title {
    font-size: var(--bf-text-3xl);
    margin-bottom: var(--bf-space-md);
}

.bf-calendar__text {
    font-size: var(--bf-text-lg);
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-lg);
}

.bf-calendar-placeholder {
    background: var(--bf-white);
    border: 1px solid var(--bf-cream-dark);
    padding: var(--bf-space-3xl);
    text-align: center;
    color: var(--bf-text-light);
}

.bf-calendar-placeholder__title {
    margin-bottom: var(--bf-space-sm);
}

.bf-calendar-placeholder__text {
    font-size: var(--bf-text-sm);
    margin: 0;
}

/* ==========================================================================
   FAQ Page (All items visible, no accordion)
   ========================================================================== */

.bf-faq-intro {
    margin-bottom: var(--bf-space-lg);
}

.bf-faq-intro__text {
    font-size: var(--bf-text-xl);
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-sm);
}

.bf-faq-intro__note {
    font-size: var(--bf-text-sm);
    color: var(--bf-text-light);
}

.bf-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.bf-faq-item {
    border-bottom: 1px solid var(--bf-cream-dark);
    padding: var(--bf-space-lg) 0;
}

.bf-faq-item:last-child {
    border-bottom: none;
}

.bf-faq-item__category {
    font-size: var(--bf-text-xs);
    color: var(--bf-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--bf-space-sm);
}

.bf-faq-item__question {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--bf-text-xl);
    color: var(--bf-navy);
    margin-bottom: var(--bf-space-md);
}

.bf-faq-item__answer {
    color: var(--bf-text);
    line-height: 1.8;
    white-space: pre-line;
}

/* ==========================================================================
   Thank You Pages
   ========================================================================== */

.bf-thankyou {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--bf-space-3xl) var(--bf-space-lg);
}

.bf-thankyou__content {
    max-width: 600px;
}

.bf-thankyou__icon {
    width: 64px;
    height: 64px;
    background: var(--bf-success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--bf-space-lg);
    color: var(--bf-success);
    font-size: 2rem;
}

.bf-thankyou__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--bf-text-3xl);
    color: var(--bf-navy);
    margin-bottom: var(--bf-space-md);
}

.bf-thankyou__text {
    font-size: var(--bf-text-lg);
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-lg);
}

.bf-thankyou__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bf-space-sm);
    justify-content: center;
    margin-bottom: var(--bf-space-lg);
}

.bf-thankyou__note {
    font-size: var(--bf-text-sm);
    color: var(--bf-text-light);
}

/* ==========================================================================
   Page Header (for simple interior pages)
   ========================================================================== */

.bf-page-header {
    background: linear-gradient(135deg, var(--bf-navy) 0%, var(--bf-navy-dark) 100%);
    padding: var(--bf-space-4xl) var(--bf-space-lg);
    text-align: center;
}

.bf-page-header__date {
    color: #fff;
}

.bf-page-header__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: var(--bf-space-md);
}

.bf-page-header__subtitle {
    font-size: var(--bf-text-xl);
    color: var(--bf-navy);
    max-width: 600px;
    margin: 0 auto;
}

.blog-hero .bf-inner-content {
    position: relative;
    z-index: 99;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.bf-footer {
    background-color: var(--bf-navy-dark);
    color: #fff;
    padding: var(--bf-space-2xl) var(--bf-space-lg) var(--bf-space-lg);
}

.footer-logo {
    width: 200px;
}

.bf-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.bf-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--bf-space-xl);
    margin-bottom: var(--bf-space-2xl);
}

.bf-footer__brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--bf-text-2xl);
    color: var(--bf-white);
    margin-bottom: var(--bf-space-md);
}

.bf-footer__brand span {
    color: var(--bf-gold);
}

.bf-footer__tagline {
    font-size: var(--bf-text-base);
    line-height: 1.6;
    max-width: 300px;
    opacity: 0.7;
}

.bf-footer__heading {
    font-family: 'Source Sans 3', sans-serif;
    font-size: var(--bf-text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bf-gold);
    margin-bottom: var(--bf-space-md);
}

.bf-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bf-footer__links li {
    margin-bottom: var(--bf-space-xs);
    opacity: 0.7;
}

.bf-footer__links a {
    color: #fff;
    font-size: var(--bf-text-base);
    transition: color var(--bf-transition);
}

.bf-footer__links a:hover {
    color: var(--bf-gold);
}

.bf-footer__contact {
    line-height: 1.8;
    opacity: 0.7;
}

.bf-footer__bottom {
    padding-top: var(--bf-space-lg);
    padding-bottom: var(--bf-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--bf-space-md);
}

.bf-footer__copyright {
    font-size: var(--bf-text-sm);
    opacity: 0.5;
    margin: 0;
}

.bf-footer__legal {
    display: flex;
    gap: var(--bf-space-lg);
}

.bf-footer__legal a {
    font-size: var(--bf-text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.bf-footer__legal a:hover {
    color: var(--bf-gold);
}

/* ==========================================================================
   Default Page Template
   ========================================================================== */

.bf-page-content {
    padding: var(--bf-space-2xl) var(--bf-space-lg);
}

.bf-page-content__inner {
    max-width: 800px;
    margin: 0 auto;
}

.bf-page-content h1 {
    font-size: var(--bf-text-4xl);
    margin-bottom: var(--bf-space-lg);
}

/* ==========================================================================
   Blog Posts
   ========================================================================== */

.bf-post-item {
    padding-bottom: var(--bf-space-xl);
    margin-bottom: var(--bf-space-xl);
    border-bottom: 1px solid var(--bf-cream-dark);
}

.bf-post-item:last-child {
    border-bottom: none;
}

.bf-post-item__date {
    display: block;
    font-size: var(--bf-text-sm);
    color: var(--bf-gold);
    font-weight: 600;
    margin-bottom: var(--bf-space-xs);
}

.bf-post-item__title {
    font-size: var(--bf-text-2xl);
    margin-bottom: var(--bf-space-sm);
}

.bf-post-item__title a {
    color: var(--bf-navy);
}

.bf-post-item__title a:hover {
    color: var(--bf-gold);
}

.bf-post-item__excerpt {
    color: var(--bf-text-light);
    margin-bottom: var(--bf-space-sm);
}

.bf-post-item__link {
    font-weight: 600;
    color: var(--bf-navy);
}

/* Single Post */
.bf-post__content {
    font-size: var(--bf-text-lg);
    line-height: 1.8;
}

.bf-post__content p {
    margin-bottom: var(--bf-space-md);
}

.bf-post__content h2,
.bf-post__content h3,
.bf-post__content h4 {
    margin-top: var(--bf-space-xl);
    margin-bottom: var(--bf-space-sm);
}

/* Post Navigation */
.bf-post-nav {
    display: flex;
    justify-content: space-between;
    padding-top: var(--bf-space-xl);
    margin-top: var(--bf-space-xl);
    border-top: 1px solid var(--bf-cream-dark);
}

/* Pagination */
.bf-pagination {
    text-align: center;
    padding-top: var(--bf-space-xl);
}

.bf-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: var(--bf-space-sm);
}

.bf-pagination a,
.bf-pagination span {
    padding: var(--bf-space-xs) var(--bf-space-sm);
}

.bf-pagination .current {
    background-color: var(--bf-navy);
    color: var(--bf-white);
}

.bf-no-posts {
    text-align: center;
    color: var(--bf-text-light);
    padding: var(--bf-space-2xl);
}

.bf-footer-disclosures {
    margin-top: 32px;
}

.bf-footer-disclosures h4,
.bf-footer-disclosures h5 {
    font-size: 14px;
    color: rgba(255,255,255,.5);
}

.bf-footer-disclosures p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .bf-sci-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .bf-expect-grid {
        grid-template-columns: 1fr;
    }

    .bf-resource-grid {
        grid-template-columns: 1fr;
    }

    .bf-contact-grid {
        grid-template-columns: 1fr;
    }

    .bf-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --bf-text-base: 1rem;
        --bf-space-3xl: 5rem;
        --bf-space-4xl: 6rem;
    }

    .bf-header__inner {
        flex-direction: column;
        gap: var(--bf-space-md);
        padding: var(--bf-space-sm) var(--bf-space-md);
    }

    .bf-nav {
        width: 100%;
        justify-content: center;
    }

    .bf-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--bf-space-md);
    }

    .bf-header__cta {
        margin-left: 0;
    }

    .bf-hero--gradient {
        padding: var(--bf-space-2xl) var(--bf-space-md);
    }

    .bf-hero--gradient .bf-hero__buttons {
        flex-direction: column;
    }

    .bf-section {
        padding: var(--bf-space-2xl) var(--bf-space-md);
    }

    .bf-sci-cards {
        grid-template-columns: 1fr;
    }

    .bf-sci-buttons {
        flex-direction: column;
        align-items: center;
    }

    .bf-cta__buttons {
        flex-direction: column;
    }

    .bf-timeline__step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .bf-podcast-buttons {
        flex-direction: column;
        align-items: center;
    }

    .bf-social-links {
        flex-direction: column;
        align-items: center;
    }

    .bf-thankyou__buttons {
        flex-direction: column;
    }

    .bf-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bf-footer__tagline {
        max-width: none;
    }

    .bf-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .bf-footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bf-page-header {
        padding: var(--bf-space-2xl) var(--bf-space-md);
    }
}

/* ==========================================================================
   Mobile Menu - Hamburger & Fixed Navigation
   ========================================================================== */

/* Hamburger Button - Hidden on desktop */
.bf-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.bf-hamburger__line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--bf-navy);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger animation when active */
.bf-hamburger.is-active .bf-hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.bf-hamburger.is-active .bf-hamburger__line:nth-child(2) {
    opacity: 0;
}

.bf-hamburger.is-active .bf-hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Fixed header on mobile */
    .bf-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--bf-white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .bf-header__inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }

    /* Show hamburger on mobile */
    .bf-hamburger {
        display: block;
    }

    /* Mobile navigation - hidden by default */
    .bf-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bf-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    .bf-nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .bf-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .bf-nav li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
    }

    .bf-nav.is-open li {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Staggered fade-in animation for menu items */
    .bf-nav.is-open li:nth-child(1) { transition-delay: 0.1s; }
    .bf-nav.is-open li:nth-child(2) { transition-delay: 0.15s; }
    .bf-nav.is-open li:nth-child(3) { transition-delay: 0.2s; }
    .bf-nav.is-open li:nth-child(4) { transition-delay: 0.25s; }
    .bf-nav.is-open li:nth-child(5) { transition-delay: 0.3s; }
    .bf-nav.is-open li:nth-child(6) { transition-delay: 0.35s; }

    .bf-nav a,
    .bf-nav .menu-item a {
        display: block;
        padding: 20px;
        font-size: var(--bf-text-lg);
    }

    .bf-header__cta {
        margin-left: 0;
        margin-top: var(--bf-space-md);
        opacity: 0;
        transform: translateY(20px);
    }

    .bf-nav.is-open .bf-header__cta {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s;
    }

    /* Add padding to main content for fixed header */
    .bf-main {
        padding-top: 70px;
    }

    /* Homepage hero mobile fixes */
    .bf-hero.home-hero {
        padding: 60px 20px;
    }

    .bf-hero__content {
        max-width: 100%;
        padding: 150px 20px 0 20px;
    }

    .bf-hero__content h1,
    .bf-hero .bf-hero__title {
        font-size: clamp(28px, 7vw, 40px);
        line-height: 1.2;
    }

    .bf-hero .bf-hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bf-hero .bf-hero__buttons a {
        text-align: center;
    }
}
