/*
Theme Name: BR Consulting
Theme URI: https://brconsulting.cz
Author: BR Consulting s.r.o.
Author URI: https://brconsulting.cz
Description: Professional WordPress theme for BR Consulting s.r.o. — specialists in waste management consulting with a focus on tires (pneumatiky) and OZV compliance processes. Built for B2B corporate use.
Version: 3.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: br-consulting
Tags: corporate, business, consulting, one-column, two-columns, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
    /* Brand Colors */
    --brc-primary: #1e3a1e;
    --brc-primary-light: #2a5a2a;
    --brc-primary-dark: #142814;
    --brc-accent: #7ab648;
    --brc-accent-light: #8ec45e;
    --brc-accent-dark: #5f9a32;
    --brc-bg: #fafdf6;
    --brc-bg-alt: #f0f5ea;
    --brc-dark-surface: #0f1a0f;
    --brc-warning: #c8a435;
    --brc-warning-light: #f5efd4;
    --brc-warning-dark: #a88a20;

    /* Neutral Colors */
    --brc-white: #ffffff;
    --brc-gray-50: #f8faf5;
    --brc-gray-100: #eef2e8;
    --brc-gray-200: #dde3d5;
    --brc-gray-300: #c1c9b8;
    --brc-gray-400: #99a38e;
    --brc-gray-500: #6e7a63;
    --brc-gray-600: #4a5440;
    --brc-gray-700: #374030;
    --brc-gray-800: #252d20;
    --brc-gray-900: #141a11;
    --brc-text: #1a2318;
    --brc-text-muted: #4a5440;
    --brc-text-light: #6e7a63;

    /* Typography */
    --brc-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --brc-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes (fluid, clamp-based) */
    --brc-text-xs: clamp(0.75rem, 0.7rem + 0.15vw, 0.8125rem);
    --brc-text-sm: clamp(0.8125rem, 0.775rem + 0.2vw, 0.875rem);
    --brc-text-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
    --brc-text-lg: clamp(1.0625rem, 0.975rem + 0.4vw, 1.25rem);
    --brc-text-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
    --brc-text-2xl: clamp(1.5rem, 1.25rem + 1vw, 2rem);
    --brc-text-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.5rem);
    --brc-text-4xl: clamp(2.25rem, 1.75rem + 2vw, 3.25rem);
    --brc-text-5xl: clamp(2.75rem, 2rem + 3vw, 4rem);

    /* Spacing Scale */
    --brc-space-xs: 0.25rem;
    --brc-space-sm: 0.5rem;
    --brc-space-md: 1rem;
    --brc-space-lg: 1.5rem;
    --brc-space-xl: 2rem;
    --brc-space-2xl: 3rem;
    --brc-space-3xl: 4rem;
    --brc-space-4xl: 6rem;
    --brc-space-5xl: 8rem;

    /* Layout */
    --brc-container: 1200px;
    --brc-container-narrow: 800px;
    --brc-container-wide: 1400px;
    --brc-gutter: clamp(1rem, 0.5rem + 2vw, 2rem);
    --brc-header-height: 80px;

    /* Borders & Radii */
    --brc-radius-sm: 4px;
    --brc-radius-md: 8px;
    --brc-radius-lg: 12px;
    --brc-radius-xl: 16px;
    --brc-radius-full: 9999px;
    --brc-border: 1px solid var(--brc-gray-200);

    /* Shadows */
    --brc-shadow-sm: 0 1px 3px rgba(15, 26, 15, 0.06);
    --brc-shadow-md: 0 4px 12px rgba(15, 26, 15, 0.08);
    --brc-shadow-lg: 0 8px 30px rgba(15, 26, 15, 0.1);
    --brc-shadow-xl: 0 16px 50px rgba(15, 26, 15, 0.12);

    /* Transitions */
    --brc-transition: 200ms ease;
    --brc-transition-slow: 400ms ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

body {
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-base);
    line-height: 1.7;
    color: var(--brc-text);
    background-color: var(--brc-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--brc-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--brc-primary);
    margin-bottom: var(--brc-space-md);
}

h1 { font-size: var(--brc-text-5xl); letter-spacing: -0.02em; }
h2 { font-size: var(--brc-text-4xl); letter-spacing: -0.01em; }
h3 { font-size: var(--brc-text-3xl); }
h4 { font-size: var(--brc-text-2xl); }
h5 { font-size: var(--brc-text-xl); }
h6 { font-size: var(--brc-text-lg); }

p {
    margin-bottom: var(--brc-space-md);
}

a {
    color: var(--brc-accent-dark);
    text-decoration: none;
    transition: color var(--brc-transition);
}

a:hover,
a:focus {
    color: var(--brc-primary);
}

a:focus-visible {
    outline: 2px solid var(--brc-accent);
    outline-offset: 2px;
    border-radius: var(--brc-radius-sm);
}

strong, b {
    font-weight: 600;
}

blockquote {
    border-left: 4px solid var(--brc-accent);
    padding: var(--brc-space-lg) var(--brc-space-xl);
    margin: var(--brc-space-xl) 0;
    background-color: var(--brc-bg-alt);
    border-radius: 0 var(--brc-radius-md) var(--brc-radius-md) 0;
    font-style: italic;
    color: var(--brc-text-muted);
}

blockquote p:last-child {
    margin-bottom: 0;
}

ul, ol {
    padding-left: var(--brc-space-xl);
    margin-bottom: var(--brc-space-md);
}

li {
    margin-bottom: var(--brc-space-xs);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.brc-container {
    width: 100%;
    max-width: var(--brc-container);
    margin-inline: auto;
    padding-inline: var(--brc-gutter);
}

.brc-container--narrow {
    max-width: var(--brc-container-narrow);
}

.brc-container--wide {
    max-width: var(--brc-container-wide);
}

.brc-section {
    padding-block: var(--brc-space-4xl);
}

.brc-section--alt {
    background-color: var(--brc-bg-alt);
}

.brc-section--dark {
    background-color: var(--brc-dark-surface);
    color: var(--brc-gray-100);
}

.brc-section--dark h2,
.brc-section--dark h3,
.brc-section--dark h4 {
    color: var(--brc-white);
}

/* Grid System */
.brc-grid {
    display: grid;
    gap: var(--brc-space-xl);
}

.brc-grid--2 {
    grid-template-columns: repeat(1, 1fr);
}

.brc-grid--3 {
    grid-template-columns: repeat(1, 1fr);
}

.brc-grid--4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .brc-grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .brc-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .brc-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brc-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .brc-grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.brc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 253, 246, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: var(--brc-border);
    height: var(--brc-header-height);
    transition: background-color var(--brc-transition), box-shadow var(--brc-transition);
}

.brc-header.is-scrolled {
    box-shadow: var(--brc-shadow-md);
    background-color: rgba(250, 253, 246, 0.98);
}

.brc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--brc-container-wide);
    margin-inline: auto;
    padding-inline: var(--brc-gutter);
}

.brc-logo {
    display: flex;
    align-items: center;
    gap: var(--brc-space-sm);
    font-family: var(--brc-font-heading);
    font-size: var(--brc-text-xl);
    font-weight: 700;
    color: var(--brc-primary);
    text-decoration: none;
    flex-shrink: 0;
}

.brc-logo:hover,
.brc-logo:focus {
    color: var(--brc-primary);
}

.brc-logo__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.brc-logo__text span {
    color: var(--brc-accent);
}

/* Primary Navigation */
.brc-nav {
    display: none;
    align-items: center;
    gap: var(--brc-space-xs);
}

@media (min-width: 1024px) {
    .brc-nav {
        display: flex;
    }
}

.brc-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.brc-nav__item {
    position: relative;
    margin-bottom: 0;
}

.brc-nav__link {
    display: block;
    padding: var(--brc-space-sm) var(--brc-space-md);
    font-size: var(--brc-text-sm);
    font-weight: 500;
    color: var(--brc-text);
    text-decoration: none;
    border-radius: var(--brc-radius-md);
    transition: color var(--brc-transition), background-color var(--brc-transition);
    white-space: nowrap;
}

.brc-nav__link:hover,
.brc-nav__link:focus {
    color: var(--brc-primary);
    background-color: var(--brc-bg-alt);
}

.brc-nav__link.current-menu-item > a,
.brc-nav__item.current-menu-item > .brc-nav__link {
    color: var(--brc-accent-dark);
    font-weight: 600;
}

/* Dropdown Menu */
.brc-nav__item .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    min-width: 280px;
    padding: var(--brc-space-sm);
    background-color: var(--brc-white);
    border: var(--brc-border);
    border-radius: var(--brc-radius-lg);
    box-shadow: var(--brc-shadow-lg);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--brc-transition), visibility var(--brc-transition), transform var(--brc-transition);
}

.brc-nav__item:hover > .sub-menu,
.brc-nav__item:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brc-nav__item .sub-menu li {
    margin-bottom: 0;
}

.brc-nav__item .sub-menu a {
    display: block;
    padding: var(--brc-space-sm) var(--brc-space-md);
    font-size: var(--brc-text-sm);
    color: var(--brc-text);
    border-radius: var(--brc-radius-md);
    transition: background-color var(--brc-transition), color var(--brc-transition);
}

.brc-nav__item .sub-menu a:hover,
.brc-nav__item .sub-menu a:focus {
    background-color: var(--brc-bg-alt);
    color: var(--brc-primary);
}

/* CTA Menu Item */
.menu-cta > a,
a.brc-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--brc-space-sm);
    padding: 0.6rem 1.25rem;
    font-size: var(--brc-text-sm);
    font-weight: 600;
    color: var(--brc-white) !important;
    background-color: var(--brc-accent);
    border-radius: var(--brc-radius-full);
    text-decoration: none;
    transition: background-color var(--brc-transition), transform var(--brc-transition);
    cursor: pointer;
}

.menu-cta > a:hover,
.menu-cta > a:focus,
a.brc-nav__cta:hover,
a.brc-nav__cta:focus {
    background-color: var(--brc-accent-dark);
    color: var(--brc-white) !important;
}

/* Mobile Menu Toggle */
.brc-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brc-primary);
}

@media (min-width: 1024px) {
    .brc-menu-toggle {
        display: none;
    }
}

.brc-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Navigation */
.brc-mobile-nav {
    position: fixed;
    top: var(--brc-header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--brc-bg);
    padding: var(--brc-space-xl) var(--brc-gutter);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 300ms ease;
}

.brc-mobile-nav.is-open {
    transform: translateX(0);
}

.brc-mobile-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brc-mobile-nav__list li {
    margin-bottom: 0;
    border-bottom: var(--brc-border);
}

.brc-mobile-nav__list a {
    display: block;
    padding: var(--brc-space-md) 0;
    font-size: var(--brc-text-lg);
    font-weight: 500;
    color: var(--brc-text);
}

.brc-mobile-nav__list a:hover,
.brc-mobile-nav__list a:focus {
    color: var(--brc-accent-dark);
}

.brc-mobile-nav__list .sub-menu {
    list-style: none;
    padding-left: var(--brc-space-xl);
}

.brc-mobile-nav__list .sub-menu a {
    font-size: var(--brc-text-base);
    font-weight: 400;
    color: var(--brc-text-muted);
}

/* Body offset for fixed header */
body {
    padding-top: var(--brc-header-height);
}

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

.brc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--brc-space-sm);
    padding: 0.75rem 1.75rem;
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-base);
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--brc-radius-full);
    cursor: pointer;
    transition: all var(--brc-transition);
    white-space: nowrap;
}

.brc-btn:focus-visible {
    outline: 2px solid var(--brc-accent);
    outline-offset: 2px;
}

.brc-btn--primary {
    color: var(--brc-white);
    background-color: var(--brc-accent);
    border-color: var(--brc-accent);
}

.brc-btn--primary:hover,
.brc-btn--primary:focus {
    background-color: var(--brc-accent-dark);
    border-color: var(--brc-accent-dark);
    color: var(--brc-white);
}

.brc-btn--secondary {
    color: var(--brc-primary);
    background-color: transparent;
    border-color: var(--brc-primary);
}

.brc-btn--secondary:hover,
.brc-btn--secondary:focus {
    background-color: var(--brc-primary);
    color: var(--brc-white);
}

.brc-btn--dark {
    color: var(--brc-white);
    background-color: var(--brc-primary);
    border-color: var(--brc-primary);
}

.brc-btn--dark:hover,
.brc-btn--dark:focus {
    background-color: var(--brc-primary-light);
    border-color: var(--brc-primary-light);
    color: var(--brc-white);
}

.brc-btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--brc-text-sm);
}

.brc-btn--lg {
    padding: 1rem 2.25rem;
    font-size: var(--brc-text-lg);
}

.brc-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.brc-hero {
    position: relative;
    padding-block: var(--brc-space-5xl) var(--brc-space-4xl);
    background-color: var(--brc-dark-surface);
    color: var(--brc-gray-100);
    overflow: hidden;
}

.brc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brc-hero-overlay-start, rgba(15, 26, 15, 0.95)) 0%, var(--brc-hero-overlay-end, rgba(15, 26, 15, 0.85)) 100%);
    z-index: 1;
}

.brc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.brc-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.brc-hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.brc-hero__title {
    font-size: var(--brc-text-5xl);
    color: var(--brc-white);
    margin-bottom: var(--brc-space-lg);
    line-height: 1.1;
}

.brc-hero__title em {
    font-style: normal;
    color: var(--brc-accent);
}

.brc-hero__desc {
    font-size: var(--brc-text-lg);
    color: var(--brc-gray-300);
    margin-bottom: var(--brc-space-2xl);
    line-height: 1.7;
    max-width: 600px;
}

.brc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--brc-space-md);
}

/* Trust Bar */
.brc-trust-bar {
    position: relative;
    z-index: 2;
    margin-top: var(--brc-space-4xl);
    padding-top: var(--brc-space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brc-trust-bar__items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--brc-space-2xl);
    align-items: center;
}

.brc-trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--brc-space-sm);
    font-size: var(--brc-text-sm);
    color: var(--brc-gray-400);
}

.brc-trust-bar__item svg {
    width: 20px;
    height: 20px;
    color: var(--brc-accent);
    flex-shrink: 0;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.brc-section-header {
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: var(--brc-space-3xl);
}

.brc-section-header--left {
    text-align: left;
    margin-inline: 0;
}

.brc-section-label {
    display: inline-block;
    font-size: var(--brc-text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brc-accent);
    margin-bottom: var(--brc-space-sm);
}

.brc-section-header h2 {
    margin-bottom: var(--brc-space-md);
}

.brc-section-header p {
    font-size: var(--brc-text-lg);
    color: var(--brc-text-muted);
}

/* ==========================================================================
   Service Cards
   ========================================================================== */

.brc-service-card {
    position: relative;
    padding: var(--brc-space-2xl);
    background-color: var(--brc-white);
    border: var(--brc-border);
    border-radius: var(--brc-radius-xl);
    transition: border-color var(--brc-transition), box-shadow var(--brc-transition), transform var(--brc-transition);
    cursor: pointer;
}

.brc-service-card:hover {
    border-color: var(--brc-accent);
    box-shadow: var(--brc-shadow-lg);
    transform: translateY(-2px);
}

.brc-service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--brc-bg-alt);
    border-radius: var(--brc-radius-lg);
    margin-bottom: var(--brc-space-lg);
    color: var(--brc-accent);
    transition: background-color var(--brc-transition), color var(--brc-transition);
}

.brc-service-card:hover .brc-service-card__icon {
    background-color: var(--brc-accent);
    color: var(--brc-white);
}

.brc-service-card__icon svg {
    width: 28px;
    height: 28px;
}

.brc-service-card__title {
    font-family: var(--brc-font-heading);
    font-size: var(--brc-text-xl);
    font-weight: 700;
    color: var(--brc-primary);
    margin-bottom: var(--brc-space-sm);
}

.brc-service-card__desc {
    font-size: var(--brc-text-base);
    color: var(--brc-text-muted);
    margin-bottom: var(--brc-space-lg);
    line-height: 1.7;
}

.brc-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--brc-space-xs);
    font-size: var(--brc-text-sm);
    font-weight: 600;
    color: var(--brc-accent-dark);
    cursor: pointer;
}

.brc-service-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--brc-transition);
}

.brc-service-card:hover .brc-service-card__link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Why Us / Features Section
   ========================================================================== */

.brc-features {
    display: grid;
    gap: var(--brc-space-xl);
}

@media (min-width: 768px) {
    .brc-features {
        grid-template-columns: 1fr 1fr;
    }
}

.brc-feature-item {
    display: flex;
    gap: var(--brc-space-md);
    align-items: flex-start;
}

.brc-feature-item__check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: rgba(122, 182, 72, 0.12);
    border-radius: var(--brc-radius-full);
    color: var(--brc-accent);
    margin-top: 2px;
}

.brc-feature-item__check svg {
    width: 18px;
    height: 18px;
}

.brc-feature-item__text h4 {
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-base);
    font-weight: 600;
    color: var(--brc-primary);
    margin-bottom: var(--brc-space-xs);
}

.brc-feature-item__text p {
    font-size: var(--brc-text-sm);
    color: var(--brc-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   About / Two-Column Layout
   ========================================================================== */

.brc-split {
    display: grid;
    gap: var(--brc-space-3xl);
    align-items: center;
}

@media (min-width: 768px) {
    .brc-split {
        grid-template-columns: 1fr 1fr;
    }
}

.brc-split--reverse .brc-split__media {
    order: 0;
}

@media (min-width: 768px) {
    .brc-split--reverse .brc-split__media {
        order: -1;
    }
}

.brc-split__media {
    position: relative;
    border-radius: var(--brc-radius-xl);
    overflow: hidden;
}

.brc-split__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--brc-radius-xl);
}

.brc-split__content {
    max-width: 520px;
}

/* Stats Row */
.brc-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--brc-space-lg);
    margin-top: var(--brc-space-2xl);
    padding-top: var(--brc-space-2xl);
    border-top: var(--brc-border);
}

@media (min-width: 640px) {
    .brc-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brc-stat__number {
    display: block;
    font-family: var(--brc-font-heading);
    font-size: var(--brc-text-3xl);
    font-weight: 700;
    color: var(--brc-accent);
    line-height: 1;
    margin-bottom: var(--brc-space-xs);
}

.brc-stat__label {
    font-size: var(--brc-text-sm);
    color: var(--brc-text-muted);
}

/* ==========================================================================
   Blog / Post Cards
   ========================================================================== */

.brc-post-card {
    display: flex;
    flex-direction: column;
    background-color: var(--brc-white);
    border: var(--brc-border);
    border-radius: var(--brc-radius-xl);
    overflow: hidden;
    transition: border-color var(--brc-transition), box-shadow var(--brc-transition), transform var(--brc-transition);
    cursor: pointer;
}

.brc-post-card:hover {
    border-color: var(--brc-accent);
    box-shadow: var(--brc-shadow-lg);
    transform: translateY(-2px);
}

.brc-post-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.brc-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--brc-transition-slow);
}

.brc-post-card:hover .brc-post-card__image img {
    transform: scale(1.03);
}

.brc-post-card__body {
    padding: var(--brc-space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.brc-post-card__meta {
    display: flex;
    align-items: center;
    gap: var(--brc-space-md);
    font-size: var(--brc-text-xs);
    color: var(--brc-text-light);
    margin-bottom: var(--brc-space-sm);
}

.brc-post-card__category {
    display: inline-block;
    padding: 0.125rem 0.625rem;
    font-size: var(--brc-text-xs);
    font-weight: 600;
    color: var(--brc-accent-dark);
    background-color: rgba(122, 182, 72, 0.1);
    border-radius: var(--brc-radius-full);
    text-decoration: none;
}

.brc-post-card__category:hover,
.brc-post-card__category:focus {
    color: var(--brc-white);
    background-color: var(--brc-accent);
}

.brc-post-card__title {
    font-family: var(--brc-font-heading);
    font-size: var(--brc-text-lg);
    font-weight: 700;
    color: var(--brc-primary);
    margin-bottom: var(--brc-space-sm);
    line-height: 1.3;
}

.brc-post-card__title a {
    color: inherit;
    text-decoration: none;
}

.brc-post-card__title a:hover,
.brc-post-card__title a:focus {
    color: var(--brc-accent-dark);
}

.brc-post-card__excerpt {
    font-size: var(--brc-text-sm);
    color: var(--brc-text-muted);
    margin-bottom: var(--brc-space-md);
    flex-grow: 1;
    line-height: 1.7;
}

.brc-post-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: var(--brc-space-xs);
    font-size: var(--brc-text-sm);
    font-weight: 600;
    color: var(--brc-accent-dark);
    cursor: pointer;
}

.brc-post-card__readmore svg {
    width: 16px;
    height: 16px;
    transition: transform var(--brc-transition);
}

.brc-post-card:hover .brc-post-card__readmore svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Process Steps
   ========================================================================== */

.brc-steps {
    counter-reset: step-counter;
}

.brc-step {
    display: grid;
    gap: var(--brc-space-xl);
    align-items: start;
    padding: var(--brc-space-2xl) 0;
    border-bottom: var(--brc-border);
    counter-increment: step-counter;
}

@media (min-width: 768px) {
    .brc-step {
        grid-template-columns: 80px 1fr;
    }
}

.brc-step:last-child {
    border-bottom: none;
}

.brc-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    font-family: var(--brc-font-heading);
    font-size: var(--brc-text-2xl);
    font-weight: 700;
    color: var(--brc-white);
    background-color: var(--brc-accent);
    border-radius: var(--brc-radius-lg);
}

.brc-step__content h3 {
    font-size: var(--brc-text-2xl);
    margin-bottom: var(--brc-space-sm);
}

.brc-step__content p {
    color: var(--brc-text-muted);
    max-width: 600px;
}

/* ==========================================================================
   Info Cards (Educational/Warning)
   ========================================================================== */

.brc-info-card {
    padding: var(--brc-space-xl);
    border-radius: var(--brc-radius-lg);
    margin-bottom: var(--brc-space-lg);
}

.brc-info-card--info {
    background-color: var(--brc-bg-alt);
    border-left: 4px solid var(--brc-accent);
}

.brc-info-card--warning {
    background-color: var(--brc-warning-light);
    border-left: 4px solid var(--brc-warning);
}

.brc-info-card--danger {
    background-color: #fef2f2;
    border-left: 4px solid #dc2626;
}

.brc-info-card__title {
    display: flex;
    align-items: center;
    gap: var(--brc-space-sm);
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-base);
    font-weight: 700;
    margin-bottom: var(--brc-space-sm);
}

.brc-info-card__title svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.brc-info-card--info .brc-info-card__title { color: var(--brc-primary); }
.brc-info-card--info .brc-info-card__title svg { color: var(--brc-accent); }
.brc-info-card--warning .brc-info-card__title { color: var(--brc-warning-dark); }
.brc-info-card--warning .brc-info-card__title svg { color: var(--brc-warning); }
.brc-info-card--danger .brc-info-card__title { color: #dc2626; }
.brc-info-card--danger .brc-info-card__title svg { color: #dc2626; }

.brc-info-card p {
    font-size: var(--brc-text-sm);
    color: var(--brc-text-muted);
    margin-bottom: 0;
}

.brc-info-card ul {
    font-size: var(--brc-text-sm);
    color: var(--brc-text-muted);
    margin-bottom: 0;
    padding-left: var(--brc-space-lg);
}

/* ==========================================================================
   FAQ / Accordion
   ========================================================================== */

.brc-faq__item {
    border: var(--brc-border);
    border-radius: var(--brc-radius-lg);
    margin-bottom: var(--brc-space-md);
    overflow: hidden;
    background-color: var(--brc-white);
}

.brc-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--brc-space-md);
    width: 100%;
    padding: var(--brc-space-lg) var(--brc-space-xl);
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-base);
    font-weight: 600;
    color: var(--brc-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.brc-faq__question:hover {
    color: var(--brc-accent-dark);
}

.brc-faq__question:focus-visible {
    outline: 2px solid var(--brc-accent);
    outline-offset: -2px;
}

.brc-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--brc-transition);
}

.brc-faq__item.is-open .brc-faq__icon {
    transform: rotate(180deg);
}

.brc-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.brc-faq__item.is-open .brc-faq__answer {
    max-height: 500px;
}

.brc-faq__answer__inner {
    padding: 0 var(--brc-space-xl) var(--brc-space-lg);
    color: var(--brc-text-muted);
    font-size: var(--brc-text-base);
    line-height: 1.7;
}

/* ==========================================================================
   Contact Form & Info
   ========================================================================== */

.brc-contact-layout {
    display: grid;
    gap: var(--brc-space-3xl);
}

@media (min-width: 768px) {
    .brc-contact-layout {
        grid-template-columns: 1fr 380px;
    }
}

.brc-contact-form {
    background-color: var(--brc-white);
    border: var(--brc-border);
    border-radius: var(--brc-radius-xl);
    padding: var(--brc-space-2xl);
}

.brc-form-group {
    margin-bottom: var(--brc-space-lg);
}

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

.brc-form-group label .brc-required {
    color: #dc2626;
    margin-left: 2px;
}

.brc-form-group input[type="text"],
.brc-form-group input[type="email"],
.brc-form-group input[type="tel"],
.brc-form-group select,
.brc-form-group textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-base);
    color: var(--brc-text);
    background-color: var(--brc-bg);
    border: 1px solid var(--brc-gray-200);
    border-radius: var(--brc-radius-md);
    transition: border-color var(--brc-transition), box-shadow var(--brc-transition);
    -webkit-appearance: none;
    appearance: none;
}

.brc-form-group input:focus,
.brc-form-group select:focus,
.brc-form-group textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--brc-accent);
    box-shadow: 0 0 0 3px rgba(122, 182, 72, 0.15);
}

.brc-form-group textarea,
.wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
}

.brc-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234a5440' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* GDPR Checkbox */
.brc-form-gdpr {
    display: flex;
    gap: var(--brc-space-sm);
    align-items: flex-start;
    margin-bottom: var(--brc-space-xl);
}

.brc-form-gdpr input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--brc-accent);
    flex-shrink: 0;
    cursor: pointer;
}

.brc-form-gdpr label {
    font-size: var(--brc-text-sm);
    color: var(--brc-text-muted);
    line-height: 1.5;
    cursor: pointer;
}

/* CF7 Integration */
.wpcf7-form p {
    margin: 0 0 var(--brc-space-lg);
}

.wpcf7-form p:last-of-type {
    margin-bottom: 0;
}

.wpcf7-form label {
    display: block;
    font-size: var(--brc-text-sm);
    font-weight: 600;
    color: var(--brc-primary);
    line-height: 1.4;
}

.wpcf7-form label > br {
    display: none;
}

.wpcf7-form .brc-form-group p > br {
    display: none;
}

.wpcf7-form .brc-form-group p {
    margin: 0;
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: var(--brc-space-xs);
}

.wpcf7-form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--brc-space-sm);
    padding: 0.75rem 2rem;
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-base);
    font-weight: 600;
    color: var(--brc-white);
    background-color: var(--brc-accent);
    border: 2px solid var(--brc-accent);
    border-radius: var(--brc-radius-full);
    cursor: pointer;
    transition: all var(--brc-transition);
}

.wpcf7-form .wpcf7-submit:hover,
.wpcf7-form .wpcf7-submit:focus {
    background-color: var(--brc-accent-dark);
    border-color: var(--brc-accent-dark);
}

.wpcf7-form .wpcf7-not-valid-tip {
    font-size: var(--brc-text-xs);
    color: #dc2626;
    margin-top: var(--brc-space-xs);
}

.wpcf7-response-output {
    padding: var(--brc-space-md) var(--brc-space-lg) !important;
    border-radius: var(--brc-radius-md) !important;
    font-size: var(--brc-text-sm) !important;
}

/* Contact Info Sidebar */
.brc-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--brc-space-xl);
}

.brc-contact-info__card {
    padding: var(--brc-space-xl);
    background-color: var(--brc-white);
    border: var(--brc-border);
    border-radius: var(--brc-radius-xl);
}

.brc-contact-info__card h3 {
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-lg);
    font-weight: 700;
    margin-bottom: var(--brc-space-lg);
}

.brc-contact-info__item {
    display: flex;
    gap: var(--brc-space-md);
    align-items: flex-start;
    margin-bottom: var(--brc-space-md);
}

.brc-contact-info__item:last-child {
    margin-bottom: 0;
}

.brc-contact-info__item svg {
    width: 20px;
    height: 20px;
    color: var(--brc-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.brc-contact-info__item p {
    font-size: var(--brc-text-sm);
    color: var(--brc-text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.brc-contact-info__item a {
    color: var(--brc-accent-dark);
    font-weight: 500;
}

/* ==========================================================================
   Page Header / Breadcrumb
   ========================================================================== */

.brc-page-header {
    padding-block: var(--brc-space-3xl) var(--brc-space-2xl);
    background-color: var(--brc-primary);
    color: var(--brc-white);
}

.brc-page-header h1 {
    color: var(--brc-white);
    margin-bottom: var(--brc-space-sm);
}

.brc-page-header p {
    font-size: var(--brc-text-lg);
    color: var(--brc-gray-300);
    max-width: 600px;
    margin-bottom: 0;
}

.brc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--brc-space-xs);
    font-size: var(--brc-text-xs);
    color: var(--brc-gray-400);
    margin-bottom: var(--brc-space-lg);
    list-style: none;
    padding: 0;
}

.brc-breadcrumb a {
    color: var(--brc-gray-300);
}

.brc-breadcrumb a:hover,
.brc-breadcrumb a:focus {
    color: var(--brc-accent);
}

.brc-breadcrumb__sep {
    color: var(--brc-gray-500);
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.brc-content-layout {
    display: grid;
    gap: var(--brc-space-3xl);
}

@media (min-width: 1024px) {
    .brc-content-layout {
        grid-template-columns: 1fr 320px;
    }
}

.brc-sidebar .widget {
    padding: var(--brc-space-xl);
    background-color: var(--brc-white);
    border: var(--brc-border);
    border-radius: var(--brc-radius-xl);
    margin-bottom: var(--brc-space-xl);
}

.brc-sidebar .widget-title {
    font-family: var(--brc-font-heading);
    font-size: var(--brc-text-lg);
    font-weight: 700;
    color: var(--brc-primary);
    margin-bottom: var(--brc-space-lg);
    padding-bottom: var(--brc-space-sm);
    border-bottom: 2px solid var(--brc-accent);
}

.brc-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brc-sidebar .widget ul li {
    margin-bottom: 0;
    border-bottom: var(--brc-border);
}

.brc-sidebar .widget ul li:last-child {
    border-bottom: none;
}

.brc-sidebar .widget ul li a {
    display: block;
    padding: var(--brc-space-sm) 0;
    font-size: var(--brc-text-sm);
    color: var(--brc-text-muted);
    transition: color var(--brc-transition);
}

.brc-sidebar .widget ul li a:hover,
.brc-sidebar .widget ul li a:focus {
    color: var(--brc-accent-dark);
}

/* Sidebar CTA Widget */
.brc-sidebar-cta {
    padding: var(--brc-space-xl);
    background: linear-gradient(135deg, var(--brc-primary) 0%, var(--brc-primary-light) 100%);
    border-radius: var(--brc-radius-xl);
    color: var(--brc-white);
    text-align: center;
}

.brc-sidebar-cta h3 {
    color: var(--brc-white);
    font-size: var(--brc-text-xl);
    margin-bottom: var(--brc-space-sm);
}

.brc-sidebar-cta p {
    font-size: var(--brc-text-sm);
    color: var(--brc-gray-300);
    margin-bottom: var(--brc-space-lg);
}

/* ==========================================================================
   Single Post
   ========================================================================== */

.brc-single {
    max-width: var(--brc-container-narrow);
    margin-inline: auto;
}

.brc-single__header {
    margin-bottom: var(--brc-space-2xl);
}

.brc-single__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--brc-space-md);
    font-size: var(--brc-text-sm);
    color: var(--brc-text-light);
    margin-bottom: var(--brc-space-lg);
}

.brc-single__featured {
    margin-bottom: var(--brc-space-2xl);
    border-radius: var(--brc-radius-xl);
    overflow: hidden;
}

.brc-single__featured img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.brc-single__content {
    font-size: var(--brc-text-base);
    line-height: 1.8;
}

.brc-single__content h2 {
    font-size: var(--brc-text-2xl);
    margin-top: var(--brc-space-2xl);
    margin-bottom: var(--brc-space-md);
}

.brc-single__content h3 {
    font-size: var(--brc-text-xl);
    margin-top: var(--brc-space-xl);
    margin-bottom: var(--brc-space-sm);
}

.brc-single__content p {
    margin-bottom: var(--brc-space-lg);
}

.brc-single__content ul,
.brc-single__content ol {
    margin-bottom: var(--brc-space-lg);
}

/* Post Navigation */
.brc-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--brc-space-lg);
    margin-top: var(--brc-space-3xl);
    padding-top: var(--brc-space-2xl);
    border-top: var(--brc-border);
}

.brc-post-nav__item {
    display: flex;
    flex-direction: column;
    gap: var(--brc-space-xs);
    text-decoration: none;
}

.brc-post-nav__item--next {
    text-align: right;
}

.brc-post-nav__label {
    display: inline-flex;
    align-items: center;
    font-size: var(--brc-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brc-text-light);
}

.brc-post-nav__item--next .brc-post-nav__label {
    justify-content: flex-end;
}

.brc-post-nav__title {
    font-weight: 600;
    color: var(--brc-primary);
    font-size: var(--brc-text-sm);
}

.brc-post-nav__title:hover,
.brc-post-nav__title:focus {
    color: var(--brc-accent-dark);
}

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

.brc-footer {
    background-color: var(--brc-dark-surface);
    color: var(--brc-gray-300);
    padding-top: var(--brc-space-4xl);
}

.brc-footer__grid {
    display: grid;
    gap: var(--brc-space-2xl);
    margin-bottom: var(--brc-space-3xl);
}

@media (min-width: 640px) {
    .brc-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brc-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.brc-footer__brand p {
    font-size: var(--brc-text-sm);
    color: var(--brc-gray-400);
    line-height: 1.7;
    margin-bottom: var(--brc-space-lg);
    max-width: 300px;
}

.brc-footer h4 {
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-sm);
    font-weight: 700;
    color: var(--brc-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--brc-space-lg);
}

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

.brc-footer__links li {
    margin-bottom: var(--brc-space-sm);
}

.brc-footer__links a {
    font-size: var(--brc-text-sm);
    color: var(--brc-gray-400);
    transition: color var(--brc-transition);
}

.brc-footer__links a:hover,
.brc-footer__links a:focus {
    color: var(--brc-accent);
}

.brc-footer__bottom {
    padding-block: var(--brc-space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--brc-space-md);
}

.brc-footer__copyright {
    font-size: var(--brc-text-xs);
    color: var(--brc-gray-500);
}

.brc-footer__legal {
    display: flex;
    gap: var(--brc-space-lg);
    list-style: none;
    padding: 0;
    margin: 0;
}

.brc-footer__legal a {
    font-size: var(--brc-text-xs);
    color: var(--brc-gray-500);
}

.brc-footer__legal a:hover,
.brc-footer__legal a:focus {
    color: var(--brc-accent);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.brc-cta-banner {
    padding: var(--brc-space-3xl) var(--brc-space-2xl);
    background: linear-gradient(135deg, var(--brc-primary) 0%, var(--brc-primary-light) 100%);
    border-radius: var(--brc-radius-xl);
    text-align: center;
    color: var(--brc-white);
}

.brc-cta-banner h2 {
    color: var(--brc-white);
    margin-bottom: var(--brc-space-md);
}

.brc-cta-banner p {
    color: var(--brc-gray-300);
    max-width: 500px;
    margin-inline: auto;
    margin-bottom: var(--brc-space-xl);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.brc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--brc-space-xs);
    margin-top: var(--brc-space-3xl);
}

.brc-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: var(--brc-text-sm);
    font-weight: 500;
    color: var(--brc-text-muted);
    background-color: var(--brc-white);
    border: var(--brc-border);
    border-radius: var(--brc-radius-md);
    text-decoration: none;
    transition: all var(--brc-transition);
    cursor: pointer;
}

.brc-pagination .page-numbers:hover,
.brc-pagination .page-numbers:focus {
    border-color: var(--brc-accent);
    color: var(--brc-accent-dark);
}

.brc-pagination .page-numbers.current {
    background-color: var(--brc-accent);
    border-color: var(--brc-accent);
    color: var(--brc-white);
}

/* ==========================================================================
   404 & Search
   ========================================================================== */

.brc-404,
.brc-search-page {
    text-align: center;
    padding-block: var(--brc-space-5xl);
}

.brc-404__code {
    font-family: var(--brc-font-heading);
    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: 700;
    color: var(--brc-gray-200);
    line-height: 1;
    margin-bottom: var(--brc-space-md);
}

.brc-search-form {
    display: flex;
    max-width: 500px;
    margin-inline: auto;
    border: var(--brc-border);
    border-radius: var(--brc-radius-full);
    overflow: hidden;
    background-color: var(--brc-white);
}

.brc-search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem 1.25rem;
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-base);
    color: var(--brc-text);
    border: none;
    background: none;
    outline: none;
}

.brc-search-form button {
    padding: 0.75rem 1.5rem;
    font-family: var(--brc-font-body);
    font-size: var(--brc-text-sm);
    font-weight: 600;
    color: var(--brc-white);
    background-color: var(--brc-accent);
    border: none;
    cursor: pointer;
    transition: background-color var(--brc-transition);
}

.brc-search-form button:hover,
.brc-search-form button:focus {
    background-color: var(--brc-accent-dark);
}

/* ==========================================================================
   Services Page (Expanded Cards)
   ========================================================================== */

.brc-service-detail {
    padding: var(--brc-space-2xl);
    background-color: var(--brc-white);
    border: var(--brc-border);
    border-radius: var(--brc-radius-xl);
    margin-bottom: var(--brc-space-xl);
}

.brc-service-detail__header {
    display: flex;
    align-items: flex-start;
    gap: var(--brc-space-lg);
    margin-bottom: var(--brc-space-lg);
    cursor: pointer;
}

.brc-service-detail__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    background-color: var(--brc-bg-alt);
    border-radius: var(--brc-radius-lg);
    color: var(--brc-accent);
}

.brc-service-detail__icon svg {
    width: 28px;
    height: 28px;
}

.brc-service-detail__title {
    font-size: var(--brc-text-2xl);
    margin-bottom: var(--brc-space-xs);
}

.brc-service-detail__subtitle {
    font-size: var(--brc-text-sm);
    color: var(--brc-text-light);
    margin-bottom: 0;
}

.brc-service-detail__body {
    padding-left: 0;
}

@media (min-width: 768px) {
    .brc-service-detail__body {
        padding-left: calc(56px + var(--brc-space-lg));
    }
}

.brc-service-detail__body ul {
    list-style: none;
    padding: 0;
}

.brc-service-detail__body ul li {
    position: relative;
    padding-left: var(--brc-space-xl);
    margin-bottom: var(--brc-space-sm);
    color: var(--brc-text-muted);
}

.brc-service-detail__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background-color: var(--brc-accent);
    border-radius: var(--brc-radius-full);
}

/* ==========================================================================
   Team Grid
   ========================================================================== */

.brc-team-card {
    text-align: center;
    padding: var(--brc-space-xl);
    background-color: var(--brc-white);
    border: var(--brc-border);
    border-radius: var(--brc-radius-xl);
}

.brc-team-card__photo {
    width: 120px;
    height: 120px;
    border-radius: var(--brc-radius-full);
    object-fit: cover;
    margin-inline: auto;
    margin-bottom: var(--brc-space-md);
    border: 3px solid var(--brc-bg-alt);
}

.brc-team-card__name {
    font-family: var(--brc-font-heading);
    font-size: var(--brc-text-lg);
    font-weight: 700;
    color: var(--brc-primary);
    margin-bottom: var(--brc-space-xs);
}

.brc-team-card__role {
    font-size: var(--brc-text-sm);
    color: var(--brc-accent-dark);
    font-weight: 500;
    margin-bottom: var(--brc-space-sm);
}

.brc-team-card__bio {
    font-size: var(--brc-text-sm);
    color: var(--brc-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.brc-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.brc-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .brc-animate {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.brc-text-center { text-align: center; }
.brc-text-left { text-align: left; }
.brc-mt-0 { margin-top: 0; }
.brc-mb-0 { margin-bottom: 0; }
.brc-mb-sm { margin-bottom: var(--brc-space-sm); }
.brc-mb-md { margin-bottom: var(--brc-space-md); }
.brc-mb-lg { margin-bottom: var(--brc-space-lg); }
.brc-mb-xl { margin-bottom: var(--brc-space-xl); }
.brc-mb-2xl { margin-bottom: var(--brc-space-2xl); }

/* Screen reader only */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    clip: auto !important;
    clip-path: none;
    display: block;
    font-size: 1rem;
    height: auto;
    left: 5px;
    top: 5px;
    width: auto;
    z-index: 100000;
    padding: 15px 23px 14px;
    background-color: var(--brc-white);
    color: var(--brc-primary);
    box-shadow: var(--brc-shadow-lg);
}

/* WordPress Core Classes */
.alignnone { margin: var(--brc-space-md) 0; }
.aligncenter { display: block; margin: var(--brc-space-md) auto; }
.alignleft { float: left; margin: 0 var(--brc-space-md) var(--brc-space-md) 0; }
.alignright { float: right; margin: 0 0 var(--brc-space-md) var(--brc-space-md); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: var(--brc-text-xs); color: var(--brc-text-light); margin-top: var(--brc-space-xs); }
.gallery-caption { font-size: var(--brc-text-xs); }
.bypostauthor { border-left: 3px solid var(--brc-accent); }
.sticky .brc-post-card { border-color: var(--brc-accent); }
