/*
Theme Name: ATTY911
Theme URI: https://attorney911.com
Author: Attorney911
Description: Custom theme for Attorney911 - Legal Emergency Lawyers. Premium High-End Design.
Version: 2.0.0
License: Proprietary
Text Domain: atty911
*/

/* ============================================
   ROOT VARIABLES - ATTORNEY911 BRAND SYSTEM
   ============================================ */
:root {
    /* ===== ATTORNEY911 BRAND COLORS ===== */
    
    /* PRIMARY: Deep Maroon Red - CTAs, Buttons, Accents */
    --color-primary: #8B1A1A;
    --color-primary-dark: #6B1414;
    --color-primary-light: #A52222;
    
    /* SECONDARY: Pure Black - Headers, Footers, Dark Sections */
    --color-black: #000000;
    --color-black-soft: #1A1A1A;
    --color-black-lighter: #2D2D2D;
    
    /* ACCENT: Gold - Highlights, Awards, Special Elements */
    --color-gold: #C9A227;
    --color-gold-light: #D4AF37;
    --color-gold-dark: #A8871E;
    
    /* NEUTRALS: Backgrounds */
    --color-bg-white: #FFFFFF;
    --color-bg-cream: #F9F7F4;
    --color-bg-light-gray: #F2F2F2;
    --color-bg-medium-gray: #E5E5E5;
    
    /* TEXT COLORS */
    --color-text-dark: #1A1A1A;
    --color-text-body: #444444;
    --color-text-light: #FFFFFF;
    --color-text-muted: #6B6B6B;
    --color-text-subtle: #999999;
    
    /* LEGACY ALIASES (for backward compatibility) */
    --color-red: var(--color-primary);
    --color-red-dark: var(--color-primary-dark);
    --color-bg-dark: var(--color-black-soft);
    --color-bg-navy: var(--color-black);

    /* ===== TYPOGRAPHY ===== */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-script: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes - Fluid Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;

    /* ===== SPACING ===== */
    --section-padding: 100px;
    --section-padding-sm: 60px;
    --container-max: 1400px;
    --container-narrow: 900px;

    /* ===== SHADOWS ===== */
    --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-dramatic: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-red: 0 8px 25px rgba(139, 26, 26, 0.3);
    
    /* ===== BORDERS & RADIUS ===== */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* ===== TRANSITIONS ===== */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Anchor scroll offset for sticky header */
[id] {
    scroll-margin-top: 120px;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-body);
    background: var(--color-bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-red);
}

/* ============================================
   TYPOGRAPHY - PREMIUM ELEGANT STYLE
   Like Black Srebnick "Dedicated to your case"
   ============================================ */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

/* Italic emphasis like "Dedicated to YOUR case" */
.text-italic {
    font-style: italic;
}

.text-gold {
    color: var(--color-gold);
}

/* Gradient Text - Velkel-Inspired Maroon → Gold */
.text-gradient {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 40%,
        var(--color-gold) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient--reverse {
    background: linear-gradient(
        135deg,
        var(--color-gold) 0%,
        var(--color-primary-light) 60%,
        var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient--gold {
    background: linear-gradient(
        90deg,
        var(--color-gold-dark) 0%,
        var(--color-gold-light) 50%,
        var(--color-gold) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Script Accent - For emotional punch words */
.text-script {
    font-family: var(--font-script);
    font-style: italic;
    font-weight: 400;
}

.text-script--large {
    font-family: var(--font-script);
    font-style: italic;
    font-weight: 400;
    font-size: 1.3em;
    line-height: 1;
}

/* Mixed Typography - Setup + Payoff Pattern */
.headline-mixed {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
}

.headline-mixed__setup {
    font-family: var(--font-sans);
    font-size: 0.4em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
}

.headline-mixed__payoff {
    font-family: var(--font-script);
    font-size: 1em;
    font-style: italic;
    font-weight: 400;
    color: var(--color-text-dark);
}

.headline-mixed__payoff--gradient {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-gold) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Script/accent font for dramatic headlines */
.headline-dramatic {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
}

.headline-bold {
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85em;
}

/* Section label - small caps like "WHY GERSON?" */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

/* Section Header - Standardized centered header with dramatic headline */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-label {
    margin-bottom: 0.75rem;
}

.section-header .headline-dramatic {
    margin-bottom: 0;
}

.section-header--left {
    text-align: left;
}

.section-header--compact {
    margin-bottom: 2.5rem;
}

/* Section Tagline - Centered italic quote/statement */
.section-tagline {
    text-align: center;
    margin-top: 3rem;
}

.section-tagline__text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-primary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ============================================
   HEADER - Clean & Premium
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.site-header--transparent {
    background: transparent;
}

.site-header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-subtle);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 80px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header-nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header-nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color 0.3s;
}

.site-header--scrolled .header-nav__link {
    color: var(--color-text-dark);
}

.header-nav__link:hover {
    color: var(--color-gold);
}

/* Header CTA Button */
.header-cta .btn {
    background: var(--color-red);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.header-cta .btn:hover {
    background: var(--color-red-dark);
    transform: translateY(-2px);
}

/* ============================================
   HERO - Erdmann "Powerful & Proven" Style
   CENTERED, STACKED, ELEGANT SCRIPT
   ============================================ */

/* Script font variable */
:root {
    --font-script: 'Cormorant Garamond', Georgia, serif;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-navy);
    overflow: hidden;
    padding: 8rem 0 4rem;
    color: var(--color-text-light);
}

.hero--erdmann {
    min-height: 90vh;
}

/* Background image/video */
.hero__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__media img,
.hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero__video {
    min-width: 100%;
    min-height: 100%;
}

/* Dark overlay */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero__overlay--dark {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.6) 100%);
}

/* CENTERED HERO CONTENT */
.hero__center {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* HERO EYEBROW BLOCK - STANDOUT */
.hero__eyebrow-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero__eyebrow-main {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--color-text-light);
    padding: 0.6rem 2rem;
    background: var(--color-primary);
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(139, 26, 26, 0.4);
}

.hero__eyebrow-locations {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.hero__eyebrow-locations i {
    font-size: 0.75rem;
}

/* Legacy single eyebrow (fallback) */
.hero__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* STACKED HEADLINE - Powerful / & / Proven */
.hero__headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero__word {
    font-family: var(--font-script);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 400;
    font-style: italic;
    color: white;
    letter-spacing: 0.02em;
}

/* GIANT DECORATIVE AMPERSAND */
.hero__amp {
    font-family: var(--font-script);
    font-size: clamp(5rem, 14vw, 10rem);
    font-weight: 600;
    font-style: italic;
    color: var(--color-gold);
    line-height: 0.7;
    margin: -0.1em 0;
}

.hero__lead {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.hero__micro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 2rem;
    border: 1px solid var(--color-gold);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.hero__micro-link {
    color: var(--color-gold);
    font-weight: 700;
}

.hero__micro-link:hover {
    color: white;
}

/* CASE RESULTS CARDS - BOTTOM ROW */
.hero__results {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.hero__cards {
    display: flex;
    justify-content: center;
    gap: 0;
}

.hero-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    padding: 1.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.hero-card:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* BIG DOLLAR AMOUNTS */
.hero-card__amount {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-card__plus {
    font-size: 1.25rem;
    font-weight: 400;
    vertical-align: super;
}

.hero-card__mill {
    font-size: 1rem;
    font-weight: 500;
    vertical-align: top;
    line-height: 1;
}

.hero-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.hero-card__gold {
    color: var(--color-gold);
}

.hero-card__type {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* NAVIGATION ARROWS */
.hero__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.hero__arrow:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .hero-card {
        min-width: 180px;
        padding: 1.25rem 1.5rem;
    }
    
    .hero-card__amount {
        font-size: 1.75rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 80vh;
        padding: 6rem 0 3rem;
    }
    
    .hero__word {
        font-size: clamp(3rem, 8vw, 5rem);
    }
    
    .hero__amp {
        font-size: clamp(4rem, 12vw, 8rem);
    }
    
    .hero__cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    
    .hero-card {
        min-width: 160px;
        padding: 1rem 1.25rem;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-card:nth-child(2) {
        border-right: none;
    }
    
    .hero-card:nth-child(3),
    .hero-card:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 5rem 0 2rem;
    }
    
    .hero__eyebrow-main {
        font-size: 0.8rem;
        padding: 0.5rem 1.5rem;
        letter-spacing: 0.2em;
    }
    
    .hero__eyebrow-locations {
        font-size: 0.75rem;
    }
    
    .hero__word {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero__amp {
        font-size: clamp(3rem, 15vw, 6rem);
    }
    
    .hero__lead {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero__micro {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
    }
    
    .hero__micro-sep {
        display: none;
    }
    
    .hero__results {
        margin-top: 2rem;
    }
    
    .hero__arrow {
        display: none;
    }
    
    .hero__cards {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-card {
        width: 100%;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 1rem;
    }
    
    .hero-card:last-child {
        border-bottom: none;
    }
    
    .hero-card__amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }
    
    .hero__eyebrow-block {
        margin-bottom: 1.5rem;
    }
    
    .hero__word {
        font-size: 2.5rem;
    }
    
    .hero__amp {
        font-size: 3.5rem;
    }
    
    .hero__headline {
        margin-bottom: 1rem;
    }
    
    .hero__lead {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

/* ============================================
   HERO FORM ROW
   ============================================ */
.hero-form-row {
    background: var(--color-black);
    padding: 3.5rem 0;
}

.hero-form-row__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-form-row__content {
    color: white;
}

.hero-form-row__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-form-row__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: white;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.hero-form-row__subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.hero-form-row__subtitle strong {
    color: #FFFFFF;
}

.hero-form-row__subtitle em {
    color: var(--color-gold);
    font-style: normal;
}

.hero-form-row__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-form-row__bullets li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.hero-form-row__bullets li strong {
    color: #FFFFFF;
}

.hero-form-row__bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 700;
}

.hero-form-row__cta-text {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-form-row__cta-text i {
    color: var(--color-gold);
    margin-right: 0.5rem;
}

.hero-form-row__cta-text a {
    color: var(--color-gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.25rem;
}

.hero-form-row__cta-text a:hover {
    text-decoration: underline;
}

.hero-form-row__cta-numeric {
    display: inline;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.75rem;
}

.hero-form-row__cta-numeric::before {
    content: '|';
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* FORM - WHITE BACKGROUNDS, STRUCTURED ROWS */
.hero-form-row__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hero-form-row__form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.hero-form-row__form .form-row--full {
    display: block;
    width: 100%;
}

.hero-form-row__form input,
.hero-form-row__form select,
.hero-form-row__form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #FFFFFF;
    color: #000000;
    transition: var(--transition-base);
    box-sizing: border-box;
    height: 52px;
}

.hero-form-row__form input::placeholder,
.hero-form-row__form textarea::placeholder {
    color: #000000;
    font-weight: 400;
}

.hero-form-row__form select {
    color: #000000;
    cursor: pointer;
    appearance: none;
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23000000' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.hero-form-row__form select option {
    background: #FFFFFF;
    color: #000000;
}

.hero-form-row__form textarea {
    resize: vertical;
    min-height: 280px;
    height: auto;
}

.hero-form-row__form input:hover,
.hero-form-row__form select:hover,
.hero-form-row__form textarea:hover {
    border-color: var(--color-text-subtle);
}

.hero-form-row__form input:focus,
.hero-form-row__form select:focus,
.hero-form-row__form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.15);
}

/* CTA BUTTON - HIGHLY ACTIONABLE */
.hero-form-row__form .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--color-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-red);
    height: auto;
}

.hero-form-row__form .btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.5);
}

/* ============================================
   WPFORMS INTEGRATION STYLES
   Overrides for WPForms plugin output
   ============================================ */

/* Container Reset */
.hero-form-row__form .wpforms-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-form-row__form .wpforms-container .wpforms-form {
    margin: 0;
    padding: 0;
}

/* Hide default labels - we'll use placeholders */
.hero-form-row__form .wpforms-field-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Show required asterisk in a cleaner way */
.hero-form-row__form .wpforms-required-label {
    display: none;
}

/* HIDE the Chat Id garbage field */
.hero-form-row__form .wpforms-field-text[data-field-id] label[for*="chat" i],
.hero-form-row__form .wpforms-field label[for*="chat" i],
.hero-form-row__form .wpforms-field input[name*="chat" i],
.hero-form-row__form .wpforms-field-container > div:has(label[for*="chat" i]),
.hero-form-row__form .wpforms-field:has(input[name*="chat" i]) {
    display: none !important;
}

/* Alternative: Hide by field position if Chat Id is always 4th field */
.hero-form-row__form #wpforms-69-field_4-container {
    display: none !important;
}

/* Field Container Layout */
.hero-form-row__form .wpforms-field-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual Field Wrappers */
.hero-form-row__form .wpforms-field {
    margin: 0 !important;
    padding: 0 !important;
}

/* All Input Fields */
.hero-form-row__form .wpforms-field input[type="text"],
.hero-form-row__form .wpforms-field input[type="email"],
.hero-form-row__form .wpforms-field input[type="tel"],
.hero-form-row__form .wpforms-field input[type="url"],
.hero-form-row__form .wpforms-field input[type="number"],
.hero-form-row__form .wpforms-field select,
.hero-form-row__form .wpforms-field textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    font-family: var(--font-sans) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    background: #FFFFFF !important;
    border: 2px solid #E5E5E5 !important;
    border-radius: 8px !important;
    color: #1a1a1a !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
    box-sizing: border-box !important;
}

/* Input Height */
.hero-form-row__form .wpforms-field input[type="text"],
.hero-form-row__form .wpforms-field input[type="email"],
.hero-form-row__form .wpforms-field input[type="tel"],
.hero-form-row__form .wpforms-field select {
    height: 52px !important;
}

/* Textarea */
.hero-form-row__form .wpforms-field textarea {
    resize: vertical !important;
    min-height: 140px !important;
    height: auto !important;
}

/* Placeholder Styling */
.hero-form-row__form .wpforms-field input::placeholder,
.hero-form-row__form .wpforms-field textarea::placeholder {
    color: #666666 !important;
    font-weight: 400 !important;
    opacity: 1 !important;
}

/* Hover State */
.hero-form-row__form .wpforms-field input:hover,
.hero-form-row__form .wpforms-field select:hover,
.hero-form-row__form .wpforms-field textarea:hover {
    border-color: #CCCCCC !important;
}

/* Focus State - Gold Accent */
.hero-form-row__form .wpforms-field input:focus,
.hero-form-row__form .wpforms-field select:focus,
.hero-form-row__form .wpforms-field textarea:focus {
    outline: none !important;
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}

/* Select Dropdown Arrow */
.hero-form-row__form .wpforms-field select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 24px !important;
    padding-right: 44px !important;
    cursor: pointer !important;
}

/* Submit Button */
.hero-form-row__form .wpforms-submit-container {
    margin-top: 8px !important;
    padding: 0 !important;
}

.hero-form-row__form .wpforms-submit {
    width: 100% !important;
    padding: 16px 24px !important;
    font-family: var(--font-sans) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    background: var(--color-primary) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.3) !important;
}

.hero-form-row__form .wpforms-submit:hover {
    background: var(--color-primary-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.5) !important;
}

.hero-form-row__form .wpforms-submit:active {
    transform: translateY(0) !important;
}

/* Hide honeypot and other hidden fields */
.hero-form-row__form .wpforms-field-hp,
.hero-form-row__form .wpforms-recaptcha-container {
    display: none !important;
}

/* Error States */
.hero-form-row__form .wpforms-error {
    border-color: #dc3545 !important;
}

.hero-form-row__form .wpforms-error-container {
    margin-top: 8px !important;
    padding: 12px 16px !important;
    background: #fff5f5 !important;
    border-left: 4px solid #dc3545 !important;
    border-radius: 4px !important;
    color: #dc3545 !important;
    font-size: 14px !important;
}

.hero-form-row__form label.wpforms-error {
    display: block !important;
    margin-top: 6px !important;
    color: #dc3545 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

/* Success/Confirmation Message */
.hero-form-row__form .wpforms-confirmation-container-full {
    padding: 2rem !important;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%) !important;
    border: 2px solid var(--color-gold) !important;
    border-radius: 12px !important;
    text-align: center !important;
}

.hero-form-row__form .wpforms-confirmation-container-full p {
    font-size: 1.1rem !important;
    color: var(--color-text-dark) !important;
    margin: 0 !important;
}

/* Loading/Submitting State */
.hero-form-row__form .wpforms-submit.wpforms-submit-spinning {
    opacity: 0.7 !important;
    pointer-events: none !important;
}

/* WPForms Responsive */
@media (max-width: 768px) {
    .hero-form-row__form .wpforms-field input[type="text"],
    .hero-form-row__form .wpforms-field input[type="email"],
    .hero-form-row__form .wpforms-field input[type="tel"],
    .hero-form-row__form .wpforms-field select {
        height: 48px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    .hero-form-row__form .wpforms-field textarea {
        min-height: 120px !important;
    }
    
    .hero-form-row__form .wpforms-submit {
        padding: 14px 20px !important;
        font-size: 16px !important;
    }
}

/* Hero Form Row Responsive */
@media (max-width: 1024px) {
    .hero-form-row__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-form-row__content {
        text-align: center;
    }
    
    .hero-form-row__bullets {
        display: inline-block;
        text-align: left;
    }
    
    .hero-form-row__cta-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-form-row {
        padding: 2.5rem 0;
    }
    
    .hero-form-row__title {
        font-size: 1.5rem;
    }
    
    .hero-form-row__subtitle {
        font-size: 1rem;
    }
    
    .hero-form-row__bullets li {
        font-size: 0.9rem;
    }
    
    .hero-form-row__form .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-form-row__form input,
    .hero-form-row__form select {
        height: 48px;
    }
    
    .hero-form-row__form textarea {
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-form-row {
        padding: 2rem 0;
    }
    
    .hero-form-row__eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }
    
    .hero-form-row__title {
        font-size: 1.25rem;
    }
    
    .hero-form-row__cta-text {
        font-size: 1rem;
    }
    
    .hero-form-row__cta-text a {
        font-size: 1.1rem;
        display: block;
        margin-top: 0.5rem;
    }
    
    .hero-form-row__cta-numeric {
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
    
    .hero-form-row__cta-numeric::before {
        display: none;
    }
    
    .hero-form-row__form .btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* ============================================
   HERO FORM - Glass Effect (Legacy)
   ============================================ */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 2px;
    box-shadow: var(--shadow-dramatic);
}

.hero-form__title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.hero-form__subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: 1px solid #E5E5E5;
    background: var(--color-bg-light-gray);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* ============================================
   BUTTONS - Premium Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-text-light);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn--gold {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn--gold:hover {
    background: var(--color-gold-light);
}

.btn--outline {
    background: transparent;
    border: 2px solid currentColor;
    color: var(--color-text-dark);
}

.btn--outline-light {
    color: white;
    border-color: white;
}

.btn--outline:hover,
.btn--outline-light:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: white;
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 0.9rem;
}

/* ============================================
   AWARDS & CREDENTIALS STRIP - Premium Design
   ============================================ */
.awards-strip {
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-bg-white) 100%);
    padding: 4rem 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.awards-strip::before {
    content: 'ATTY911';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-sans);
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.awards-strip__inner {
    position: relative;
    z-index: 1;
}

.awards-strip__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Award Badges Row */
.awards-strip__badges {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--color-bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition-base);
}

/* Image-based badges */
.award-badge--image {
    padding: 1rem 1.25rem;
    justify-content: center;
    align-items: center;
    background: var(--color-bg-white);
}

.award-badge__img {
    height: 120px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.award-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold);
}

.award-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    color: var(--color-bg-white);
    font-size: 1.25rem;
}

.award-badge__score {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-bg-white);
}

.award-badge__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.award-badge__title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: 0.02em;
}

.award-badge__subtitle {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Tagline with Lines */
.awards-strip__tagline {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.awards-strip__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.awards-strip__text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-text-dark);
    text-transform: uppercase;
    white-space: nowrap;
}

/* Google Rating Block */
.awards-strip__google {
    margin-top: 0.5rem;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--color-bg-white);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.2);
}

.google-rating__icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.google-rating__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
}

.google-rating__stars {
    color: var(--color-primary);
    font-size: 1rem;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    line-height: 1;
}

.google-rating__details {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.google-rating__score {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.google-rating__count {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .awards-strip__badges {
        gap: 1rem;
    }
    
    .award-badge {
        padding: 0.75rem 1rem;
    }
    
    .award-badge__img {
        height: 100px;
        max-width: 130px;
    }
    
    .award-badge__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .awards-strip {
        padding: 3rem 0 0 0;
    }
    
    .awards-strip__badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 320px;
    }
    
    .award-badge {
        width: 100%;
        justify-content: center;
    }
    
    .award-badge__img {
        height: 80px;
        max-width: 100px;
    }
    
    .awards-strip__tagline {
        gap: 1rem;
    }
    
    .awards-strip__text {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        text-align: center;
        white-space: normal;
    }
}

/* ============================================
   COVERFLOW TESTIMONIALS CAROUSEL
   Zimmerman Reed Inspired Design
   ============================================ */
.testimonials-coverflow {
    width: 100%;
    background: var(--color-bg-white);
    padding: 3rem 0 2rem;
    margin-top: 2rem;
}

/* Header */
.coverflow-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.coverflow-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-text-dark);
    margin: 0;
}

.coverflow-title__accent {
    color: var(--color-primary);
    font-style: italic;
}

.coverflow-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coverflow-stars {
    color: var(--color-primary);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.coverflow-score {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.coverflow-count {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
}

/* Carousel Container */
.coverflow-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navigation Arrows */
.coverflow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.coverflow-nav:hover {
    color: var(--color-primary);
}

.coverflow-nav--prev {
    left: 0;
}

.coverflow-nav--next {
    right: 0;
}

/* Carousel Wrapper */
.coverflow-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

/* Track */
.coverflow-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 280px;
}

/* Individual Slides */
.coverflow-slide {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.6) translateX(0);
    pointer-events: none;
}

.coverflow-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 5;
    pointer-events: auto;
}

.coverflow-slide.prev {
    opacity: 0.5;
    transform: scale(0.75) translateX(-320px);
    z-index: 3;
    pointer-events: auto;
}

.coverflow-slide.next {
    opacity: 0.5;
    transform: scale(0.75) translateX(320px);
    z-index: 3;
    pointer-events: auto;
}

.coverflow-slide.far-prev {
    opacity: 0.2;
    transform: scale(0.6) translateX(-500px);
    z-index: 1;
}

.coverflow-slide.far-next {
    opacity: 0.2;
    transform: scale(0.6) translateX(500px);
    z-index: 1;
}

/* Quote Marks */
.coverflow-quote {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.08);
    user-select: none;
}

.coverflow-quote--open {
    align-self: flex-start;
    margin-right: -1rem;
    margin-top: -1rem;
}

.coverflow-quote--close {
    align-self: flex-end;
    margin-left: -1rem;
    margin-bottom: -1rem;
}

.coverflow-slide.active .coverflow-quote {
    color: rgba(139, 26, 26, 0.15);
}

/* Card */
.coverflow-card {
    background: var(--color-bg-light-gray);
    padding: 2.5rem 2rem;
    max-width: 420px;
    min-width: 320px;
    border-left: 4px solid var(--color-primary);
    position: relative;
}

.coverflow-slide.active .coverflow-card {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.coverflow-card__text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 1.5rem;
    font-style: normal;
}

.coverflow-slide.active .coverflow-card__text {
    color: var(--color-text-dark);
}

.coverflow-card__author {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-muted);
}

/* Pagination */
.coverflow-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.coverflow-pagination__current {
    font-weight: 700;
    color: var(--color-text-dark);
}

.coverflow-pagination__separator {
    margin: 0 0.25rem;
}

/* Responsive */
@media (max-width: 991px) {
    .coverflow-slide.prev {
        transform: scale(0.7) translateX(-250px);
    }
    
    .coverflow-slide.next {
        transform: scale(0.7) translateX(250px);
    }
    
    .coverflow-slide.far-prev,
    .coverflow-slide.far-next {
        opacity: 0;
    }
    
    .coverflow-card {
        min-width: 280px;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .testimonials-coverflow {
        padding: 2rem 0 1.5rem;
    }
    
    .coverflow-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .coverflow-title {
        font-size: 1.5rem;
    }
    
    .coverflow-container {
        padding: 0 40px;
    }
    
    .coverflow-nav {
        width: 40px;
        font-size: 2.5rem;
    }
    
    .coverflow-slide.prev,
    .coverflow-slide.next {
        opacity: 0.3;
        transform: scale(0.65) translateX(-180px);
    }
    
    .coverflow-slide.next {
        transform: scale(0.65) translateX(180px);
    }
    
    .coverflow-card {
        min-width: 260px;
        max-width: 300px;
        padding: 2rem 1.5rem;
    }
    
    .coverflow-quote {
        font-size: 4rem;
    }
    
    .coverflow-card__text {
        font-size: 1rem;
    }
}

/* ============================================
   TESTIMONIALS - "PEOPLE ARE TALKING"
   Inspired by Zimmerman Reed
   ============================================ */
/* ============================================
   TESTIMONIALS - "PEOPLE ARE TALKING"
   Horizontal Drift Animation (Marquee)
   ============================================ */
.testimonials {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.testimonials__header {
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 4px solid var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.testimonials__header .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

/* Duplicating content logic handled via JS usually, 
   but for CSS-only drift we ideally need duplicate content. 
   For now, simple scroll. */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: #F8F9FA;
    padding: 2rem;
    min-width: 350px;
    max-width: 350px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card__quote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card__author {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* ============================================
   CASE RESULTS
   ============================================ */
.results-section {
    position: relative;
    background: #F8F9FA;
    overflow: hidden;
}

.watermark-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.results-grid--8 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-card__amount {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.result-card__type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Criminal Defense Results Variant */
.result-card--defense {
    border-left: 4px solid var(--color-gold);
}

.result-card--defense .result-card__amount {
    color: var(--color-gold);
}

.results-footer {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.results-footer h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

/* Results Grid Responsive */
@media (max-width: 1200px) {
    .results-grid,
    .results-grid--8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .results-grid,
    .results-grid--8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-card__amount {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .results-grid,
    .results-grid--8 {
        grid-template-columns: 1fr;
    }
    
    .result-card {
        padding: 1.25rem;
    }
}

/* ============================================
   YOUTUBE CTA
   ============================================ */
.youtube-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.view-all-link {
    display: block;
    padding: 1rem;
    color: var(--color-gold);
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: white;
}

/* ============================================
   PRACTICE AREAS - Bold & Clear
   Like Erdmann "Our Practice Areas"
   ============================================ */
.practice-areas {
    background: var(--color-bg-light-gray);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(0, 0, 0, 0.08);
}

.practice-grid--3x3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.practice-card {
    background: var(--color-bg-white);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.practice-card:hover {
    background: var(--color-black);
}

.practice-card:hover .practice-card__title,
.practice-card:hover .practice-card__link,
.practice-card:hover .practice-card__desc {
    color: var(--color-text-light);
}

.practice-card:hover .practice-card__icon {
    color: var(--color-primary);
}

.practice-card__icon {
    font-size: 2.25rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    transition: color 0.3s;
}

.practice-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    transition: color 0.3s;
    line-height: 1.3;
}

.practice-card__desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-body);
    margin-bottom: 1.5rem;
    transition: color 0.3s;
    text-align: center;
    flex-grow: 1;
    max-width: 340px;
}

.practice-card__link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    transition: color 0.3s;
    margin-top: auto;
    padding-top: 1rem;
}

/* ============================================
   ATTORNEY SECTION - "Highly Focused Team"
   Like Black Srebnick layout
   ============================================ */
.attorneys {
    position: relative;
    overflow: hidden;
}

/* City skyline background like Black Srebnick */
.attorneys__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.attorneys__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attorneys__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.95) 100%);
}

.attorneys__content {
    position: relative;
    z-index: 1;
}

.attorneys__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.attorney-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.attorney-card__image-wrapper {
    position: relative;
    overflow: visible;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-medium);
}

/* Elegant Brush Accent - BEHIND photo as refined flourish */
.attorney-card__image-wrapper::before {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 75%;
    height: 55%;
    background: linear-gradient(
        145deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    z-index: -1;
    border-radius: 3px;
    transform: rotate(2deg);
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.attorney-card:hover .attorney-card__image-wrapper::before {
    transform: rotate(1deg) translate(-4px, -4px);
    opacity: 1;
}

/* Thin gold accent line - top left corner */
.attorney-card__image-wrapper::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 50px;
    height: 3px;
    background: var(--color-gold);
    z-index: 10;
    transition: width 0.4s ease;
}

.attorney-card:hover .attorney-card__image-wrapper::after {
    width: 80px;
}

/* Second attorney - mirror the accent to opposite corner */
.attorney-card:nth-child(2) .attorney-card__image-wrapper::before {
    right: auto;
    left: -15px;
    transform: rotate(-2deg);
}

.attorney-card:nth-child(2):hover .attorney-card__image-wrapper::before {
    transform: rotate(-1deg) translate(4px, -4px);
}

.attorney-card:nth-child(2) .attorney-card__image-wrapper::after {
    left: auto;
    right: -6px;
}

.attorney-card__image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
    position: relative;
    z-index: 1;
    border-radius: var(--radius-sm);
}

.attorney-card:hover .attorney-card__image {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.02);
}

.attorney-card__content {
    padding-top: 1rem;
}

.attorney-card__name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.attorney-card__title {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.attorney-card__roots {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin: 0 0 1rem 0;
}

.attorney-card__highlights {
    list-style: none;
}

.attorney-card__highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.attorney-card__highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Attorneys Responsive */
@media (max-width: 1200px) {
    .attorneys__grid {
        gap: 2rem;
    }
    
    .attorney-card {
        grid-template-columns: 1fr 1.3fr;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .attorneys__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .attorney-card {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Reset brush accent for mobile */
    .attorney-card__image-wrapper::before {
        width: 60%;
        height: 45%;
        bottom: -10px;
        right: -10px;
    }
    
    .attorney-card:nth-child(2) .attorney-card__image-wrapper::before {
        left: -10px;
    }
}

@media (max-width: 768px) {
    .attorney-card {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .attorney-card__image-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .attorney-card__content {
        padding-top: 0;
    }
    
    .attorney-card__highlights {
        text-align: left;
        display: inline-block;
    }
    
    .attorney-card .btn {
        width: 100%;
    }
    
    /* Hide brush accent on mobile */
    .attorney-card__image-wrapper::before,
    .attorney-card__image-wrapper::after {
        display: none;
    }
}

/* ============================================
   FEATURED CASE - Like Hazing Spotlight
   Overlapping layout
   ============================================ */
.featured-case {
    position: relative;
}

.featured-case__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.featured-case__image {
    position: relative;
}

.featured-case__image img {
    width: 100%;
    box-shadow: var(--shadow-dramatic);
}

/* Gold accent frame */
.featured-case__image::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    border: 3px solid var(--color-gold);
    z-index: -1;
}

.featured-case__content {
    background: var(--color-bg-white);
    padding: 4rem;
    margin-left: -4rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-medium);
}

.featured-case__amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.featured-case__mill {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: super;
    line-height: 1;
    position: relative;
    top: 0.15em;
}

.featured-case__type {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* Featured Case - Press/News Coverage */
.featured-case__press {
    background: var(--color-bg-light-gray);
    border-left: 4px solid var(--color-gold);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.featured-case__press-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.featured-case__press-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 0.75rem;
}

.featured-case__press-outlet {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.featured-case__press-outlet i {
    color: var(--color-primary);
    font-size: 0.85rem;
}

.featured-case__press-date {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.featured-case__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.featured-case__ctas .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-case__ctas .btn i {
    font-size: 0.75rem;
}

/* Featured Case Responsive */
@media (max-width: 1024px) {
    .featured-case__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-case__content {
        margin-left: 0;
        padding: 2.5rem;
    }
    
    .featured-case__image::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .featured-case__content {
        padding: 2rem 1.5rem;
    }
    
    .featured-case__content h2 {
        font-size: 1.75rem !important;
    }
    
    .featured-case__amount {
        font-size: 2.5rem;
    }
    
    .featured-case__press-logos {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .featured-case__ctas {
        flex-direction: column;
    }
    
    .featured-case__ctas .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Practice Areas Responsive */
@media (max-width: 1024px) {
    .practice-grid,
    .practice-grid--3x3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .practice-grid,
    .practice-grid--3x3 {
        grid-template-columns: 1fr;
    }
    
    .practice-card {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   INSIDER ADVANTAGE SECTION
   Why Attorney911 is Different
   ============================================ */
.insider-advantage {
    background: var(--color-bg-cream);
    position: relative;
    overflow: hidden;
}

.insider-advantage::before {
    content: '911';
    position: absolute;
    right: 18%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-sans);
    font-size: clamp(18rem, 32vw, 32rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.035);
    line-height: 0.75;
    letter-spacing: -0.05em;
    pointer-events: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.insider-advantage__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.insider-advantage__content {
    position: relative;
    z-index: 1;
}

.insider-advantage__list {
    margin-top: 2.5rem;
}

.insider-advantage__item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.insider-advantage__item:first-child {
    padding-top: 0;
}

.insider-advantage__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.insider-advantage__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
}

.insider-advantage__text h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.insider-advantage__text p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
}

/* Stats Visual */
.insider-advantage__visual {
    position: relative;
    z-index: 1;
}

.insider-advantage__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.insider-advantage__stat {
    background: white;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insider-advantage__stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dramatic);
}

.insider-advantage__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.insider-advantage__stat-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .insider-advantage__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .insider-advantage__stats {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .insider-advantage__item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .insider-advantage__icon {
        margin: 0 auto;
    }
    
    .insider-advantage__stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .insider-advantage__stat {
        padding: 1.5rem 1rem;
    }
    
    .insider-advantage__stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   NETFLIX-STYLE VIDEO SECTION
   ============================================ */
.netflix-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
    color: var(--color-text-light);
    padding: 5rem 0;
    overflow: hidden;
}

.netflix-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.netflix-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.netflix-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.netflix-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1;
}

.netflix-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.netflix-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF0000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.netflix-subscribe:hover {
    background: #cc0000;
    transform: scale(1.05);
}

.netflix-subscribe i {
    font-size: 1.2rem;
}

/* Featured Video */
.netflix-featured {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.netflix-featured__player {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

.netflix-featured__player iframe {
    width: 100%;
    height: 100%;
}

.netflix-featured__info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.netflix-featured__badge {
    display: inline-block;
    background: var(--color-gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 1rem;
    width: fit-content;
}

.netflix-featured__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.netflix-featured__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Video Carousel Row */
.netflix-row {
    margin-bottom: 2rem;
}

.netflix-row__title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.netflix-row__title i {
    color: var(--color-gold);
}

.netflix-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) transparent;
}

.netflix-carousel::-webkit-scrollbar {
    height: 6px;
}

.netflix-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.netflix-carousel::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

/* Video Cards */
.netflix-card {
    flex-shrink: 0;
    width: 220px;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.netflix-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.netflix-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    background: #222;
}

.netflix-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.netflix-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.netflix-card:hover .netflix-card__overlay {
    opacity: 1;
}

.netflix-card__play {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(139, 26, 26, 0.5);
}

.netflix-card__number {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.netflix-card__info {
    padding: 0.75rem 0.25rem;
}

.netflix-card__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* See More Card */
.netflix-card--more .netflix-card__thumb--more {
    background: linear-gradient(135deg, var(--color-primary) 0%, #5a1515 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.netflix-card__more-text {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-align: center;
    line-height: 1.2;
}

/* Podcast CTA */
.netflix-cta {
    text-align: center;
    margin-top: 2rem;
}

.netflix-podcast-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(139, 26, 26, 0.3) 0%, rgba(201, 162, 39, 0.2) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.netflix-podcast-btn:hover {
    background: linear-gradient(90deg, rgba(139, 26, 26, 0.5) 0%, rgba(201, 162, 39, 0.3) 100%);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.netflix-podcast-btn i:first-child {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.netflix-podcast-btn strong {
    color: var(--color-gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .netflix-featured {
        grid-template-columns: 1fr;
    }
    
    .netflix-featured__player {
        border-radius: 8px 8px 0 0;
    }
    
    .netflix-featured__info {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .netflix-section {
        padding: 3rem 0;
    }
    
    .netflix-container {
        padding: 0 1rem;
    }
    
    .netflix-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .netflix-card {
        width: 180px;
    }
    
    .netflix-podcast-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   BLOG GRID
   ============================================ */
.blog-section {
    background: var(--color-bg-cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.blog-card {
    background: white;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.blog-card__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-card__title a {
    color: var(--color-text-dark);
}

.blog-card__title a:hover {
    color: var(--color-primary);
}

.blog-card__excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.blog-card__meta {
    margin-bottom: 0.75rem;
}

.blog-card__date {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
    font-style: italic;
}

.blog-card__readmore {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.blog-card__readmore:hover {
    color: var(--color-gold);
}

/* Blog Responsive */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .blog-card__content {
        padding: 1.25rem;
    }
    
    .blog-card__title {
        font-size: 1rem;
    }
}

/* Blog Footer - View All Button */
.blog-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

/* ============================================
   GIANT "9" HOUSTON STATEMENT SECTION
   The BE SOMEONE Moment - Visual Brand Statement
   ============================================ */
.houston-statement {
    position: relative;
    background: var(--color-bg-white);
    padding: 8rem 0;
    overflow: hidden;
}

.houston-statement__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* The Giant 9 */
.houston-statement__nine {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.houston-statement__nine-text {
    font-family: var(--font-sans);
    font-size: clamp(20rem, 35vw, 35rem);
    font-weight: 900;
    line-height: 0.8;
    background: linear-gradient(
        180deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 35%,
        var(--color-gold) 70%,
        var(--color-gold-light) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(8px 8px 0 rgba(0, 0, 0, 0.08));
    user-select: none;
}

/* Texture overlay for grunge/paint feel */
.houston-statement__nine::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Content side */
.houston-statement__content {
    max-width: 500px;
}

.houston-statement__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

.houston-statement__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.houston-statement__headline em {
    font-family: var(--font-script);
    font-style: italic;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-gold) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.houston-statement__text {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.houston-statement__tagline {
    font-family: var(--font-script);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .houston-statement {
        padding: 5rem 0;
    }
    
    .houston-statement__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .houston-statement__nine-text {
        font-size: clamp(12rem, 40vw, 20rem);
    }
    
    .houston-statement__content {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .houston-statement {
        padding: 3rem 0;
    }
    
    .houston-statement__nine-text {
        font-size: 10rem;
    }
}

/* ============================================
   PROMISE STATEMENT SECTION
   Velkel-Inspired Elegant Script Typography
   ============================================ */
.promise-section {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-soft) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(139, 26, 26, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.promise-section__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.promise-section__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.promise-section__headline {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.promise-section__headline span {
    color: var(--color-gold);
}

.promise-section__text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.promise-section__text strong {
    color: var(--color-text-light);
}

/* Final CTA Section - Standardized */
.final-cta {
    background: var(--color-black);
    color: var(--color-text-light);
    text-align: center;
    padding: 5rem 0;
}

.final-cta__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.final-cta__text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Promise Section Responsive */
@media (max-width: 768px) {
    .promise-section {
        padding: 4rem 0;
    }
    
    .promise-section__headline {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .promise-section__text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Final CTA Responsive */
@media (max-width: 768px) {
    .final-cta {
        padding: 3rem 0;
    }
    
    .final-cta__text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ============================================
   PRACTICE AREA TEMPLATE
   High-converting practice area pages
   ============================================ */

/* Practice Hero */
.practice-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: calc(80px + 3rem) 0 4rem;
    overflow: hidden;
}

.practice-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.practice-hero__bg--default {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.practice-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.practice-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.practice-hero__content {
    color: white;
}

.practice-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.practice-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.practice-hero__lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 540px;
}

.practice-hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.practice-hero__stat {
    text-align: center;
}

.practice-hero__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.practice-hero__stat-plus {
    font-size: 1.5rem;
    vertical-align: super;
}

.practice-hero__stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.practice-hero__cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.practice-hero__or {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Form Card */
.practice-hero__form-wrapper {
    /* position: sticky; - Disabled for better UX on long pages */
    /* top: 100px; */
}

.practice-hero__form-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.practice-hero__form-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.practice-hero__form-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.practice-hero__form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.practice-hero__form-disclaimer i {
    color: var(--color-gold);
}

/* Trust Bar */
.trust-bar {
    background: var(--color-primary);
    padding: 1rem 0;
}

.trust-bar__inner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-bar__item i {
    color: var(--color-gold);
}

/* Practice Content Layout */
.practice-content {
    padding: 4rem 0;
}

.practice-content__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

.practice-content__main {
    max-width: 100%;
}

.practice-content__main .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-body);
}

.practice-content__main .entry-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 2.5rem 0 1rem;
}

.practice-content__main .entry-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 2rem 0 0.75rem;
}

.practice-content__main .entry-content p {
    margin-bottom: 1.5rem;
}

.practice-content__main .entry-content ul,
.practice-content__main .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.practice-content__main .entry-content li {
    margin-bottom: 0.5rem;
}

/* Inline CTA Box */
.practice-content__cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.practice-content__cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.75rem;
}

.practice-content__cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.practice-content__cta-box .btn {
    background: var(--color-gold);
    color: var(--color-text-dark);
}

.practice-content__cta-box .btn:hover {
    background: var(--color-gold-light);
}

/* Sidebar */
.practice-content__sidebar {
    /* position: sticky; - Disabled for better UX on long pages */
    /* top: 100px; */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.sidebar-card--dark {
    background: var(--color-bg-dark);
    border: none;
    text-align: center;
}

.sidebar-card--dark .sidebar-card__title {
    color: white;
}

.sidebar-card--dark .sidebar-card__text {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.sidebar-card__phone {
    margin-bottom: 0.5rem;
}

.sidebar-card__phone a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
}

.sidebar-card__phone a:hover {
    color: var(--color-gold-light);
}

.sidebar-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: var(--color-text-body);
}

.sidebar-card__list li:last-child {
    border-bottom: none;
}

.sidebar-card__list i {
    color: var(--color-gold);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.sidebar-card__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-card__links li {
    margin-bottom: 0.5rem;
}

.sidebar-card__links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--color-text-body);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-card__links a:hover {
    color: var(--color-primary);
}

.sidebar-card__links i {
    width: 1.25rem;
    text-align: center;
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* Compact Results Grid */
.results-grid--compact {
    grid-template-columns: repeat(3, 1fr);
}

/* 4-Column Results Grid */
.results-grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

/* WPForms in Practice Hero (white background) */
.practice-hero__form .wpforms-container,
.practice-hero__form .wpforms-form-fallback {
    width: 100%;
}

.practice-hero__form .wpforms-field-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.practice-hero__form .wpforms-field {
    margin: 0 !important;
    padding: 0 !important;
}

.practice-hero__form .wpforms-field-label {
    display: none !important;
}

.practice-hero__form .wpforms-field input,
.practice-hero__form .wpforms-field textarea {
    width: 100% !important;
    padding: 12px 14px !important;
    font-family: var(--font-sans) !important;
    font-size: 15px !important;
    background: #f8f8f8 !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 6px !important;
    color: var(--color-text-dark) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.practice-hero__form .wpforms-field input:focus,
.practice-hero__form .wpforms-field textarea:focus {
    outline: none !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.15) !important;
    background: white !important;
}

.practice-hero__form .wpforms-field textarea {
    min-height: 100px !important;
    resize: vertical !important;
}

.practice-hero__form .wpforms-field-name .wpforms-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.practice-hero__form .wpforms-submit-container {
    margin-top: 8px !important;
}

.practice-hero__form .wpforms-submit {
    width: 100% !important;
    padding: 14px 20px !important;
    font-family: var(--font-sans) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    background: var(--color-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

.practice-hero__form .wpforms-submit:hover {
    background: var(--color-primary-light) !important;
    transform: translateY(-2px) !important;
}

/* Hide Chat Id in practice form too */
.practice-hero__form #wpforms-69-field_5-container {
    display: none !important;
}

/* Practice Area Responsive */
@media (max-width: 1024px) {
    .practice-hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .practice-hero__form-wrapper {
        position: relative;
        top: 0;
    }
    
    .practice-content__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .practice-content__sidebar {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid--compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .practice-hero {
        min-height: auto;
        padding: calc(80px + 2rem) 0 2rem;
    }
    
    .practice-hero__stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .practice-hero__cta-row {
        flex-direction: column;
        text-align: center;
    }
    
    .practice-content__sidebar {
        grid-template-columns: 1fr;
    }
    
    .trust-bar__inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .results-grid--compact {
        grid-template-columns: 1fr;
    }
    
    .results-grid--4col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .practice-hero__form-card {
        padding: 1.5rem;
    }
}

/* Gold Button Variant */
.btn--gold {
    background: var(--color-gold);
    color: var(--color-text-dark);
    font-weight: 700;
}

.btn--gold:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

/* ============================================
   FULL-WIDTH CTA BANNER
   Centered call-to-action section
   ============================================ */
.cta-banner {
    background: var(--color-primary);
    padding: 4rem 0;
}

.cta-banner__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--color-primary-dark);
    border-radius: 16px;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.75rem;
}

.cta-banner__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
}

.cta-banner .btn--gold {
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

@media (max-width: 768px) {
    .cta-banner__inner {
        padding: 2rem 1.5rem;
    }
    
    .cta-banner__title {
        font-size: 1.75rem;
    }
}

/* ============================================
   FAQ SECTION
   SEO-optimized accordion with Schema markup
   ============================================ */
.faq-section {
    background: #fafafa;
}

.section-header__eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: background 0.2s;
}

.faq-item__question:hover {
    background: #f8f8f8;
}

.faq-item__question[aria-expanded="true"] {
    background: var(--color-primary);
    color: white;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
    color: var(--color-gold);
}

.faq-item__icon {
    font-size: 1rem;
    color: var(--color-primary);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item__answer {
    display: none;
    padding: 1.5rem 2rem 2rem;
    background: var(--color-bg-cream);
    border-top: 3px solid var(--color-gold);
}

.faq-item__answer.active {
    display: block;
}

.faq-item__answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin: 0;
}

.faq-item__answer strong {
    color: var(--color-primary);
    font-weight: 700;
}

.faq-item__answer em {
    color: var(--color-text-dark);
    font-style: italic;
    background: rgba(201, 162, 39, 0.1);
    padding: 0.1em 0.3em;
    border-radius: 3px;
}

.faq-item__answer br {
    display: block;
    margin-bottom: 0.5rem;
    content: "";
}

/* ============================================
   TESTIMONIAL HIGHLIGHT
   Single powerful quote section
   ============================================ */
.testimonial-highlight {
    background: var(--color-bg-dark);
    padding: 4rem 0;
}

.testimonial-highlight__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-highlight__quote {
    position: relative;
}

.testimonial-highlight__icon {
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.3;
}

.testimonial-highlight__quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1rem;
    padding-left: 1rem;
}

.testimonial-highlight__quote cite {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-gold);
    font-weight: 600;
}

.testimonial-highlight__rating {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-highlight__stars {
    font-size: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.testimonial-highlight__score {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.testimonial-highlight__source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-highlight__google {
    height: 20px;
    width: auto;
}

/* Testimonial Responsive */
@media (max-width: 768px) {
    .testimonial-highlight__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonial-highlight__icon {
        position: static;
        display: block;
        margin-bottom: 1rem;
    }
    
    .testimonial-highlight__quote blockquote {
        padding-left: 0;
        font-size: 1.15rem;
    }
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-item__question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-item__answer {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    
    .faq-item__answer p {
        font-size: 1rem;
    }
}

/* ============================================
   FOOTER SITEMAP SECTION
   Comprehensive link directory
   ============================================ */
.footer-sitemap {
    background: #fafafa;
    padding: 4rem 0;
    border-top: 1px solid #eee;
}

.footer-sitemap__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 3rem;
}

.footer-sitemap__heading {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.footer-sitemap__heading--sub {
    margin-top: 2rem;
}

.footer-sitemap__subheading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-sitemap__col:first-child .footer-sitemap__subheading:first-of-type {
    margin-top: 0;
}

.footer-sitemap__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-sitemap__list li {
    margin-bottom: 0.4rem;
}

.footer-sitemap__list--spaced li {
    margin-bottom: 0.6rem;
}

.footer-sitemap__list a {
    font-size: 0.9rem;
    color: var(--color-text-body);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s;
}

.footer-sitemap__list a:hover {
    color: var(--color-primary);
    text-decoration-color: var(--color-primary);
}

/* Contact Column Styles */
.footer-sitemap__cta {
    margin-bottom: 2rem;
}

.footer-sitemap__cta-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.footer-sitemap__cta-phone {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.footer-sitemap__cta-phone:hover {
    color: var(--color-gold);
}

.footer-sitemap__office {
    margin-bottom: 1.5rem;
}

.footer-sitemap__office-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.footer-sitemap__office p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.footer-sitemap__office a {
    color: var(--color-text-body);
    transition: color 0.2s;
}

.footer-sitemap__office a:hover {
    color: var(--color-primary);
}

/* Responsive Sitemap */
@media (max-width: 1024px) {
    .footer-sitemap__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-sitemap {
        padding: 3rem 0;
    }
    
    .footer-sitemap__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-sitemap__col {
        padding-bottom: 2rem;
        border-bottom: 1px solid #eee;
    }
    
    .footer-sitemap__col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ============================================
   FOOTER MAP SECTION
   Centered over tall grayscale map
   ============================================ */
.site-footer {
    background: var(--color-black);
    color: var(--color-text-light);
    padding: 0;
}

/* Tall Map Section */
.footer-map-section {
    position: relative;
    height: 650px;
}

.footer-map {
    position: absolute;
    inset: 0;
    filter: grayscale(100%);
    opacity: 0.7;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Hide CSS Pin - Google Maps has its own */
.footer-map-pin {
    display: none;
}

/* Centered Overlay - Bold and impactful */
.footer-map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

/* Logo Box - Bold white box with border accent */
.footer-map-logo-box {
    background: white;
    padding: 1.5rem 3rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 4px solid var(--color-black);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.footer-map-logo-box::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 8px solid var(--color-black);
}

.footer-map-logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--color-black);
    text-transform: uppercase;
}

.footer-map-logo-text--accent {
    color: var(--color-primary);
    border-left: 4px solid var(--color-black);
    padding-left: 1rem;
    font-weight: 900;
}

/* Accent Line */
.footer-map-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--color-primary), var(--color-gold), var(--color-primary));
}

/* Firm Name & Address */
.footer-map-firm {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Phone Numbers - Big and Bold */
.footer-map-phones {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.footer-map-phones a {
    color: var(--color-gold);
    transition: all 0.3s;
}

.footer-map-phones a:hover {
    color: white;
    text-shadow: 0 0 20px var(--color-gold);
}

.footer-map-phones__sep {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Social Icons Row - Bigger and bolder */
.footer-map-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-map-social a {
    width: 54px;
    height: 54px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s;
}

.footer-map-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.5);
}

/* 911 Shield Badge - Prominent */
.footer-map-badge {
    margin-top: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-map-badge__icon {
    height: 80px;
    width: auto;
    display: block;
    transition: all 0.3s;
}

.footer-map-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.footer-map-badge:hover .footer-map-badge__icon {
    transform: none;
}

/* Thin Copyright Bar at Bottom */
.footer-copyright {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.footer-copyright a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright__sep {
    margin: 0 0.75rem;
    opacity: 0.5;
}

.footer-copyright__disclaimer {
    margin-top: 0.5rem;
    font-size: 0.65rem;
    text-transform: none;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

/* County listings under offices */
.footer-sitemap__counties {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-map-section {
        height: 650px;
    }
    
    .footer-map-overlay {
        padding: 1.5rem;
    }
    
    .footer-map-overlay::before {
        height: 4px;
    }
    
    .footer-map-logo-box {
        padding: 1rem 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-map-logo-text {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
    }
    
    .footer-map-phones {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-map-firm {
        font-size: 0.95rem;
        padding: 0 1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-map-social a {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .footer-map-badge {
        margin-top: 1.5rem;
        padding: 0.75rem;
    }
    
    .footer-map-badge__icon {
        height: 60px;
    }
    
    .footer-copyright {
        font-size: 0.65rem;
        padding: 1rem;
    }
    
    .footer-copyright__sep {
        display: none;
    }
    
    .footer-copyright p {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .practice-grid--3x3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .practice-grid--3x3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero--erdmann {
        min-height: 80vh;
        padding: 6rem 0 3rem;
    }

    .hero__word {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .hero__amp {
        font-size: clamp(4rem, 10vw, 7rem);
    }

    .hero__cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-card {
        min-width: 180px;
        padding: 1.25rem 1.5rem;
    }

    .hero__arrow {
        display: none;
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-form {
        max-width: 500px;
        margin: 2rem auto 0;
    }

    .hero-form-row__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-form-row__form {
        max-width: 500px;
        margin: 0 auto;
    }

    .featured-case__grid {
        grid-template-columns: 1fr;
    }

    .featured-case__content {
        margin-left: 0;
        margin-top: -2rem;
    }

    .attorneys__grid {
        grid-template-columns: 1fr;
    }

    .netflix-featured {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .header-nav__list {
        display: none;
    }

    .hero--erdmann {
        min-height: auto;
        padding: 5rem 0 2rem;
    }

    .hero__eyebrow-block {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero__eyebrow-main {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        padding: 0.5rem 1.25rem;
    }
    
    .hero__eyebrow-locations {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        text-align: center;
    }
    
    .hero__eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }

    .hero__word {
        font-size: 3rem;
    }

    .hero__amp {
        font-size: 4rem;
        margin: 0;
    }

    .hero__lead {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero__micro {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.6rem 1.5rem;
    }

    .hero__micro-sep {
        display: none;
    }

    .hero__results {
        margin-top: 2rem;
    }

    .hero__cards {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .hero-card {
        min-width: 100%;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: none;
        padding: 1rem 1.5rem;
    }

    .hero-card:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-card__amount {
        font-size: 1.5rem;
    }

    .hero-form-row__form .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-form-row__form {
        max-width: 100%;
    }

    .practice-grid,
    .practice-grid--3x3,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .attorney-card {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-primary);
    padding: 1rem;
    text-align: center;
}

.mobile-cta a {
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.stagger-in>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-in.is-visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-in.is-visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-in.is-visible>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-in.is-visible>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-in.is-visible>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-in.is-visible>*:nth-child(6) {
    transition-delay: 0.6s;
}

.stagger-in.is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   STICKY HEADER & TOP BAR (WHITE BG)
   ============================================ */

/* Wrapper */
.header-wrapper {
    position: relative;
    z-index: 1000;
}

/* Top Bar - BLACK */
.top-bar {
    background: var(--color-black);
    color: var(--color-text-light);
    padding: 0.6rem 0;
    font-size: var(--text-sm);
    position: relative;
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__left {
    display: flex;
    align-items: center;
}

.top-bar__address {
    font-family: var(--font-sans);
    opacity: 0.9;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* 24/7 Live Staff Message */
.top-bar__center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.top-bar__24-7 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 50px;
}

.top-bar__24-7 i {
    color: var(--color-gold);
    font-size: 0.95rem;
}

.top-bar__24-7-text {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar__24-7-text strong {
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.top-bar__socials a {
    color: white;
    margin-left: 1.25rem;
    font-size: 1rem;
    transition: color 0.3s;
    opacity: 0.8;
}

.top-bar__socials a:hover {
    color: var(--color-gold);
    opacity: 1;
}

/* Main Header Sticky - WHITE BACKGROUND */
.header-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
}

/* Admin Bar Fix for Sticky Wrapper */
body.admin-bar .header-wrapper {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header-wrapper {
        top: 46px;
    }
}

/* Site Header Styling - TALLER for better logo fit */
.site-header {
    background: #ffffff;
    position: relative !important;
    top: auto !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: block !important;
    z-index: 1001;
}

/* LARGER LOGO - 80px */
.header-logo img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

/* Header Inner - better alignment */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Navigation List */
.header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-nav__list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.header-nav__list > li {
    position: relative;
}

/* Nav Links - Spaced better */
.header-nav__link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-bg-navy);
    text-decoration: none;
    transition: color 0.3s, background 0.3s;
}

.header-nav__link:hover {
    color: var(--color-primary);
}

/* Dropdown indicator */
.has-dropdown > .header-nav__link::after {
    content: '▾';
    font-size: 0.65rem;
    margin-left: 0.35rem;
    opacity: 0.6;
}

/* DROPDOWN MENUS */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--color-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.dropdown-menu--wide {
    min-width: 260px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    color: var(--color-text-body);
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--color-bg-light-gray);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

/* PHONE CTA - BIG & ACTIONABLE */
.header-cta-group {
    margin-left: 1.5rem;
}

.header-phone-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-text-light);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    box-shadow: var(--shadow-red);
}

.header-phone-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 26, 26, 0.4);
}

.phone-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1rem;
}

.phone-cta__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-cta__label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.phone-cta__number {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.phone-cta__numeric {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.95;
    margin-top: 2px;
}

/* Mobile Menu Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-bg-navy);
    transition: all 0.3s;
}

/* Tablet Adjustments */
@media (max-width: 1200px) {
    .header-nav__link {
        padding: 0.75rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
    
    .phone-cta__number {
        font-size: 1rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-logo img {
        height: 50px;
    }

    .site-header {
        padding: 0.75rem 0;
    }
    
    .header-inner {
        gap: 1rem;
    }
}

/* ============================================
   SUPERPOWERED SIDEBAR
   Inspired by: Black Srebnick, Gerson, Brown LLC
   ============================================ */
.sidebar-power {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Relative for watermark positioning */
    position: relative;
    overflow: visible;
}

/* Giant 911 Watermark */
.sidebar-power__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-sans);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(139, 26, 26, 0.03);
    line-height: 0.8;
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

/* Emergency CTA Card */
.sidebar-power__emergency {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-soft) 100%);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.3);
    overflow: hidden;
}

.sidebar-power__emergency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold), var(--color-primary));
}

.sidebar-power__emergency-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-black);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(201, 162, 39, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0);
    }
}

.sidebar-power__emergency-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.sidebar-power__emergency-phone {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 0.25rem;
}

.sidebar-power__emergency-phone:hover {
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.sidebar-power__emergency-sub {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.sidebar-power__emergency-details {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-power__emergency-details span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sidebar-power__emergency-details i {
    color: var(--color-gold);
    font-size: 0.7rem;
}

/* Section Headings */
.sidebar-power__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.sidebar-power__heading-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    max-width: 40px;
}

/* Awards Stack */
.sidebar-power__awards {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.sidebar-power__awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sidebar-power__award {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sidebar-power__award:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.sidebar-power__google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.sidebar-power__google > i {
    font-size: 1.5rem;
    color: #4285F4;
}

.sidebar-power__google-info {
    display: flex;
    flex-direction: column;
}

.sidebar-power__google-stars {
    color: #FBBC05;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.sidebar-power__google-rating {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Why Attorney911 - Gerson-Style Expandable */
.sidebar-power__why {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.sidebar-power__why-list {
    display: flex;
    flex-direction: column;
}

.sidebar-power__why-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.9rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.sidebar-power__why-item:last-of-type {
    border-bottom: none;
}

.sidebar-power__why-item:hover {
    padding-left: 0.5rem;
}

.sidebar-power__why-item:hover .sidebar-power__why-title {
    color: var(--color-primary);
}

.sidebar-power__why-title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: color 0.3s;
}

.sidebar-power__why-item i {
    font-size: 0.7rem;
    color: var(--color-gold);
    transition: transform 0.3s;
}

.sidebar-power__why-item[aria-expanded="true"] i {
    transform: rotate(90deg);
}

.sidebar-power__why-content {
    display: none;
    padding: 0 0 1rem 0;
    margin-top: -0.5rem;
}

.sidebar-power__why-content.active {
    display: block;
}

.sidebar-power__why-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-body);
    margin: 0;
    padding: 0.75rem;
    background: var(--color-bg-cream);
    border-radius: 6px;
    border-left: 3px solid var(--color-gold);
}

/* Featured Result Card */
.sidebar-power__result {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    overflow: hidden;
}

.sidebar-power__result::before {
    content: '$';
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-serif);
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
}

.sidebar-power__result-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.sidebar-power__result-amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sidebar-power__result-m {
    font-size: 1.5rem;
    vertical-align: super;
    margin-left: 0.1em;
}

.sidebar-power__result-type {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.sidebar-power__result-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.sidebar-power__result-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: all 0.3s;
}

.sidebar-power__result-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.sidebar-power__result-link i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.sidebar-power__result-link:hover i {
    transform: translateX(3px);
}

/* Practice Areas Links */
.sidebar-power__links {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.sidebar-power__links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-power__links-list li {
    margin-bottom: 0.25rem;
}

.sidebar-power__links-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    color: var(--color-text-body);
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s;
}

.sidebar-power__links-list a:hover {
    background: var(--color-bg-cream);
    color: var(--color-primary);
    padding-left: 1rem;
}

.sidebar-power__links-list i {
    width: 1.25rem;
    text-align: center;
    color: var(--color-gold);
    font-size: 0.85rem;
    transition: color 0.25s;
}

.sidebar-power__links-list a:hover i {
    color: var(--color-primary);
}

/* Sidebar Responsive */
@media (max-width: 1024px) {
    .sidebar-power {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .sidebar-power__watermark {
        display: none;
    }
    
    .sidebar-power__emergency {
        grid-column: 1 / -1;
    }
    
    .sidebar-power__result {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .sidebar-power {
        grid-template-columns: 1fr;
    }
    
    .sidebar-power__awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .sidebar-power__awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar-power__emergency-phone {
        font-size: 1.5rem;
    }
}

/* ============================================
   DRAMATIC PAGE HERO
   Inspired by: Black Srebnick, Gunter, Erdmann
   ============================================ */
.page-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--color-black);
    overflow: hidden;
    padding: 120px 0 60px;
}

/* Background Media */
.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero__bg-img,
.page-hero__bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero__bg-video {
    min-width: 100%;
    min-height: 100%;
}

/* Overlay */
.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* ========== PAGE HERO CINEMATIC EFFECTS ========== */

/* Film Grain */
.page-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    animation: grain 0.5s steps(10) infinite;
}

/* Scan Lines */
.page-hero__scanlines {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.25;
}

/* Vignette */
.page-hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* Light Leak */
.page-hero__light-leak {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    background: 
        radial-gradient(
            ellipse at 5% 95%,
            rgba(139, 26, 26, 0.12) 0%,
            transparent 45%
        ),
        radial-gradient(
            ellipse at 95% 10%,
            rgba(201, 162, 39, 0.08) 0%,
            transparent 35%
        );
    animation: lightLeak 8s ease-in-out infinite alternate;
}

/* Cinematic Page Hero Variant */
.page-hero--cinematic .page-hero__bg-img,
.page-hero--cinematic .page-hero__bg-video {
    animation: slowZoom 30s ease-in-out infinite alternate;
}

/* Kinetic Typography for Page Hero */
.page-hero--cinematic .page-hero__eyebrow {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.1s forwards;
}

.page-hero--cinematic .page-hero__title {
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 1s ease-out 0.3s forwards;
}

.page-hero--cinematic .page-hero__lead {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
}

.page-hero--cinematic .page-hero__results {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.7s forwards;
}

.page-hero--cinematic .page-hero__cta-row {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.9s forwards;
}

.page-hero--cinematic .page-hero__form-wrapper {
    opacity: 0;
    transform: translateY(40px);
    animation: formReveal 1s ease-out 0.5s forwards;
}

@keyframes formReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== END PAGE HERO CINEMATIC EFFECTS ========== */

/* Giant Title Watermark */
.page-hero__watermark {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    font-family: var(--font-sans);
    font-size: clamp(15rem, 30vw, 35rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.8;
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 3;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Grid Layout */
.page-hero__grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Content Side */
.page-hero__content {
    color: white;
}

/* Eyebrow */
.page-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-hero__eyebrow-line {
    width: 50px;
    height: 3px;
    background: var(--color-gold);
}

.page-hero__eyebrow-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

/* Title - Dramatic Mixed Typography */
.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.page-hero__title-main {
    display: block;
}

.page-hero__title-accent {
    display: block;
    font-style: italic;
    color: var(--color-gold);
}

/* Erdmann-style Word & Ampersand */
.page-hero__title-word {
    display: block;
    font-size: 1em;
}

.page-hero__title-amp {
    display: block;
    font-family: var(--font-script);
    font-size: 1.5em;
    font-style: italic;
    color: var(--color-gold);
    line-height: 0.7;
    margin: 0.1em 0;
}

/* Lead Text */
.page-hero__lead {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 550px;
}

.page-hero__lead em {
    font-style: italic;
    color: white;
}

/* Result Stats Row */
.page-hero__results {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.page-hero__result {
    display: flex;
    flex-direction: column;
}

.page-hero__result-amount {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: white;
    line-height: 1;
}

.page-hero__result-plus {
    font-size: 0.6em;
    color: var(--color-gold);
    vertical-align: super;
}

.page-hero__result-star {
    font-size: 0.5em;
    color: var(--color-gold);
    margin-left: 0.1em;
}

.page-hero__result-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.page-hero__result-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* CTA Row */
.page-hero__cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.page-hero__phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem !important;
}

.page-hero__phone-btn i {
    font-size: 1.5rem;
}

.page-hero__phone-btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.page-hero__phone-btn small {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Form Wrapper */
.page-hero__form-wrapper {
    position: relative;
}

.page-hero__form-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.page-hero__form-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 1.75rem 2rem;
    text-align: center;
}

.page-hero__form-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.page-hero__form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: white;
    margin: 0 0 0.25rem;
}

.page-hero__form-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.page-hero__form {
    padding: 1.75rem 2rem;
}

.page-hero__form-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 2rem 1.5rem;
    background: var(--color-bg-cream);
    border-top: 1px solid #eee;
}

.page-hero__form-footer span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.page-hero__form-footer i {
    color: var(--color-gold);
    font-size: 0.9rem;
}

/* WPForms Styling in Page Hero */
.page-hero__form .wpforms-container,
.page-hero__form .wpforms-form-fallback {
    width: 100%;
}

.page-hero__form .wpforms-field-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-hero__form .wpforms-field {
    margin: 0 !important;
    padding: 0 !important;
}

.page-hero__form .wpforms-field-label {
    display: none !important;
}

.page-hero__form .wpforms-field input,
.page-hero__form .wpforms-field textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    font-family: var(--font-sans) !important;
    font-size: 15px !important;
    background: #f8f8f8 !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 8px !important;
    color: var(--color-text-dark) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.page-hero__form .wpforms-field input:focus,
.page-hero__form .wpforms-field textarea:focus {
    outline: none !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 4px rgba(139, 26, 26, 0.1) !important;
    background: white !important;
}

.page-hero__form .wpforms-field textarea {
    min-height: 100px !important;
    resize: vertical !important;
}

.page-hero__form .wpforms-field-name .wpforms-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.page-hero__form .wpforms-submit-container {
    margin-top: 10px !important;
}

.page-hero__form .wpforms-submit {
    width: 100% !important;
    padding: 16px 24px !important;
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    background: var(--color-gold) !important;
    color: var(--color-black) !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.page-hero__form .wpforms-submit:hover {
    background: var(--color-gold-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4) !important;
}

/* Hide Chat Id field */
.page-hero__form #wpforms-69-field_5-container {
    display: none !important;
}

/* Scroll Indicator */
.page-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.page-hero__scroll i {
    font-size: 1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Page Hero Responsive */
@media (max-width: 1200px) {
    .page-hero__grid {
        gap: 3rem;
    }
    
    .page-hero__title {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
}

@media (max-width: 1024px) {
    .page-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .page-hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .page-hero__watermark {
        display: none;
    }
    
    .page-hero__content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .page-hero__eyebrow {
        justify-content: center;
    }
    
    .page-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .page-hero__results {
        justify-content: center;
    }
    
    .page-hero__cta-row {
        justify-content: center;
    }
    
    .page-hero__form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .page-hero__scroll {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero__results {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    
    .page-hero__result-divider {
        display: none;
    }
    
    .page-hero__result-amount {
        font-size: 1.75rem;
    }
    
    .page-hero__form-header {
        padding: 1.25rem 1.5rem;
    }
    
    .page-hero__form-title {
        font-size: 1.5rem;
    }
    
    .page-hero__form {
        padding: 1.5rem;
    }
    
    .page-hero__form-footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero__phone-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SINGLE POST / ARTICLE STYLES
   Inspired by: Zimmerman Reed, KM&M
   ============================================ */

/* Article Hero */
.article-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    background: var(--color-black);
    overflow: hidden;
    padding: 120px 0 60px;
}

.article-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.article-hero__bg--default {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-black) 100%);
}

.article-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* ========== CINEMATIC EFFECTS ========== */

/* Film Grain Overlay */
.article-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    animation: grain 0.5s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-1%, 0%); }
    60% { transform: translate(1%, 0%); }
    70% { transform: translate(0%, 1%); }
    80% { transform: translate(0%, -1%); }
    90% { transform: translate(1%, 1%); }
}

/* Scan Lines */
.article-hero__scanlines {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.3;
}

/* Vignette */
.article-hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* Light Leak */
.article-hero__light-leak {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    background: 
        radial-gradient(
            ellipse at 10% 90%,
            rgba(139, 26, 26, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 90% 20%,
            rgba(201, 162, 39, 0.1) 0%,
            transparent 40%
        );
    animation: lightLeak 8s ease-in-out infinite alternate;
}

@keyframes lightLeak {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Cinematic Hero Variant - Taller */
.article-hero--cinematic {
    min-height: 55vh;
}

.article-hero--cinematic .article-hero__bg {
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* Kinetic Typography - Title Animation */
.article-hero--cinematic .article-hero__title {
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 1s ease-out 0.3s forwards;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-hero--cinematic .article-hero__meta {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.1s forwards;
}

.article-hero--cinematic .article-hero__info {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
    }
}

/* ========== END CINEMATIC EFFECTS ========== */

.article-hero__content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

/* Hero Meta */
.article-hero__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.article-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.article-hero__back:hover {
    color: var(--color-gold);
}

.article-hero__sep {
    color: rgba(255, 255, 255, 0.3);
}

.article-hero__category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    text-decoration: none;
    padding: 0.3rem 0.75rem;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 4px;
    transition: all 0.3s;
}

.article-hero__category:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Hero Title */
.article-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.25rem;
}

/* Hero Info */
.article-hero__info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.article-hero__date,
.article-hero__read {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.article-hero__date i,
.article-hero__read i {
    color: var(--color-gold);
    font-size: 0.85rem;
}

/* Article Main */
.article-main {
    padding: 4rem 0;
    background: var(--color-bg-cream);
}

.article-main__grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

/* Main Content */
.article-main__content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Author Card */
.article-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.article-author__photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
}

.article-author__info {
    display: flex;
    flex-direction: column;
}

.article-author__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.article-author__name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.article-author__title {
    font-size: 0.85rem;
    color: var(--color-gold);
}

/* Featured Image */
.article-main__featured {
    margin: 0 0 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.article-main__featured img {
    width: 100%;
    height: auto;
}

/* Article Body */
.article-main__body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-body);
}

.article-main__body h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 2.5rem 0 1rem;
}

.article-main__body h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 2rem 0 0.75rem;
}

.article-main__body p {
    margin-bottom: 1.5rem;
}

.article-main__body ul,
.article-main__body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-main__body li {
    margin-bottom: 0.5rem;
}

.article-main__body a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(139, 26, 26, 0.3);
    transition: all 0.3s;
}

.article-main__body a:hover {
    color: var(--color-gold);
    text-decoration-color: var(--color-gold);
}

.article-main__body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--color-bg-cream);
    border-left: 4px solid var(--color-gold);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-text-dark);
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.article-tags__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.article-tags__tag {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-body);
    background: var(--color-bg-light-gray);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.article-tags__tag:hover {
    background: var(--color-primary);
    color: white;
}

/* Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.article-share__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.article-share__buttons {
    display: flex;
    gap: 0.5rem;
}

.article-share__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-bg-light-gray);
    color: var(--color-text-body);
    text-decoration: none;
    transition: all 0.3s;
}

.article-share__btn:hover {
    transform: translateY(-3px);
}

.article-share__btn--facebook:hover {
    background: #1877F2;
    color: white;
}

.article-share__btn--twitter:hover {
    background: #000;
    color: white;
}

.article-share__btn--linkedin:hover {
    background: #0A66C2;
    color: white;
}

.article-share__btn--email:hover {
    background: var(--color-primary);
    color: white;
}

/* Article CTA Box */
.article-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
}

.article-cta__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-black);
}

.article-cta__content {
    flex: 1;
}

.article-cta__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.25rem;
}

.article-cta__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.article-cta__btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.9rem 1.75rem;
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.article-cta__btn:hover {
    background: white;
    transform: translateY(-2px);
}

/* Article Sidebar */
.article-sidebar {
    /* Uses sidebar-power styles from page.php */
}

.article-sidebar__sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Related Posts */
.related-posts {
    padding: 5rem 0;
    background: white;
}

.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.related-post__image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.related-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-post:hover .related-post__image img {
    transform: scale(1.05);
}

.related-post__content {
    padding: 1.5rem;
}

.related-post__date {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.related-post__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0.5rem 0 0.75rem;
}

.related-post__title a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.related-post__title a:hover {
    color: var(--color-primary);
}

.related-post__excerpt {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.related-post__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.3s;
}

.related-post__link:hover {
    gap: 0.75rem;
    color: var(--color-gold);
}

/* Article Responsive */
@media (max-width: 1024px) {
    .article-main__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .article-sidebar__sticky {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .article-sidebar__sticky > *:first-child {
        grid-column: 1 / -1;
    }
    
    .related-posts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-hero {
        min-height: 40vh;
        padding: 100px 0 40px;
    }
    
    .article-hero__title {
        font-size: 1.75rem;
    }
    
    .article-hero__info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-main__content {
        padding: 2rem 1.5rem;
    }
    
    .article-author {
        flex-direction: column;
        text-align: center;
    }
    
    .article-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .article-cta__btn {
        width: 100%;
    }
    
    .article-sidebar__sticky {
        grid-template-columns: 1fr;
    }
    
    .related-posts__grid {
        grid-template-columns: 1fr;
    }
    
    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .article-main__content {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
    
    .article-main__body {
        font-size: 1rem;
    }
}


/* =====================================================
   ARCHIVE & SEARCH TEMPLATES
   Cinematic treatment with courthouse hallway header
   ===================================================== */

/* ========== ARCHIVE HERO ========== */
.archive-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: flex-end;
    background: var(--color-black);
    overflow: hidden;
    padding: 120px 0 60px;
}

.archive-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.archive-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

/* Cinematic Effects for Archive */
.archive-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    animation: grain 0.5s steps(10) infinite;
}

.archive-hero__scanlines {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.12) 0px,
        rgba(0, 0, 0, 0.12) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.25;
}

.archive-hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 45%,
        rgba(0, 0, 0, 0.45) 100%
    );
}

.archive-hero__light-leak {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    background: 
        radial-gradient(
            ellipse at 8% 92%,
            rgba(139, 26, 26, 0.12) 0%,
            transparent 45%
        ),
        radial-gradient(
            ellipse at 92% 15%,
            rgba(201, 162, 39, 0.08) 0%,
            transparent 35%
        );
    animation: lightLeak 8s ease-in-out infinite alternate;
}

/* Cinematic Animation */
.archive-hero--cinematic .archive-hero__bg {
    animation: slowZoom 30s ease-in-out infinite alternate;
}

.archive-hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

/* Meta / Breadcrumb */
.archive-hero__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.1s forwards;
}

.archive-hero__back,
.archive-hero__crumb {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.archive-hero__back:hover {
    color: var(--color-gold);
}

.archive-hero__sep {
    color: rgba(255, 255, 255, 0.3);
}

/* Eyebrow */
.archive-hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
}

/* Title */
.archive-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 1s ease-out 0.3s forwards;
}

/* Description */
.archive-hero__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
}

/* Stats */
.archive-hero__stats {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.archive-hero__count {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.archive-hero__count strong {
    color: var(--color-gold);
    font-weight: 700;
}

.archive-hero__count--empty {
    color: rgba(255, 255, 255, 0.5);
}

/* Search Form in Hero */
.archive-hero__search {
    display: flex;
    gap: 0;
    margin-top: 1.5rem;
    max-width: 450px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.7s forwards;
}

.archive-hero__search-input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, background 0.3s;
}

.archive-hero__search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.archive-hero__search-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.15);
}

.archive-hero__search-btn {
    padding: 1rem 1.5rem;
    background: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.archive-hero__search-btn:hover {
    background: #e6c335;
}

/* ========== ARCHIVE MAIN ========== */
.archive-main {
    padding: 4rem 0;
    background: var(--color-bg);
}

.archive-main__grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

/* ========== ARCHIVE POSTS GRID ========== */
.archive-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.archive-post {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.archive-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Post Image */
.archive-post__image {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.archive-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.archive-post:hover .archive-post__image img {
    transform: scale(1.08);
}

.archive-post__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.archive-post:hover .archive-post__image-overlay {
    opacity: 1;
}

.archive-post__image--default {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-post__image-placeholder {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Post Content */
.archive-post__content {
    padding: 1.5rem 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
}

.archive-post__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.archive-post__category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.archive-post__category:hover {
    color: var(--color-gold);
}

.archive-post__type {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    background: rgba(201, 162, 39, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.archive-post__date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.archive-post__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.archive-post__title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}

.archive-post__title a:hover {
    color: var(--color-primary);
}

.archive-post__excerpt {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.archive-post__excerpt mark {
    background: rgba(201, 162, 39, 0.3);
    color: inherit;
    padding: 0.1em 0.2em;
    border-radius: 2px;
}

.archive-post__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.archive-post__read-time {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.archive-post__read-time i {
    margin-right: 0.35rem;
}

.archive-post__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.archive-post__link i {
    margin-left: 0.35rem;
    transition: transform 0.3s;
}

.archive-post__link:hover {
    color: var(--color-gold);
}

.archive-post__link:hover i {
    transform: translateX(4px);
}

/* ========== ARCHIVE SIDEBAR ========== */
.archive-sidebar__sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Categories Widget */
.sidebar-power__categories {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-power__cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-power__cat-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-power__cat-list li:last-child {
    border-bottom: none;
}

.sidebar-power__cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.sidebar-power__cat-list a:hover {
    color: var(--color-primary);
}

.sidebar-power__cat-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background: var(--color-bg);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

/* Recent Posts Widget */
.sidebar-power__recent {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-power__recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-power__recent-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-power__recent-list li:last-child {
    border-bottom: none;
}

.sidebar-power__recent-list a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: opacity 0.3s;
}

.sidebar-power__recent-list a:hover {
    opacity: 0.8;
}

.sidebar-power__recent-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

.sidebar-power__recent-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ========== PAGINATION ========== */
.archive-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.archive-pagination__list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-pagination__item a,
.archive-pagination__item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    background: white;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.archive-pagination__item a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.archive-pagination__item .current {
    background: var(--color-primary);
    color: white;
}

/* ========== EMPTY STATE ========== */
.archive-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.archive-empty i {
    font-size: 4rem;
    color: var(--color-text-muted);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.archive-empty h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.archive-empty p {
    color: var(--color-text-muted);
    max-width: 450px;
    margin: 0 auto 2rem;
}

.archive-empty__suggestions {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: 12px;
}

.archive-empty__suggestions h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.archive-empty__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.archive-empty__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.archive-empty__link i {
    font-size: 1rem;
    color: var(--color-primary);
    margin: 0;
    opacity: 1;
}

.archive-empty__link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.archive-empty__link:hover i {
    color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .archive-main__grid {
        grid-template-columns: 1fr;
    }
    
    .archive-sidebar__sticky {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .archive-sidebar__sticky > *:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .archive-hero {
        min-height: 35vh;
        padding: 100px 0 40px;
    }
    
    .archive-hero__title {
        font-size: 1.75rem;
    }
    
    .archive-post {
        grid-template-columns: 1fr;
    }
    
    .archive-post__image {
        aspect-ratio: 16/9;
    }
    
    .archive-post__content {
        padding: 1.25rem;
    }
    
    .archive-sidebar__sticky {
        grid-template-columns: 1fr;
    }
    
    .archive-hero__search {
        flex-direction: column;
    }
    
    .archive-hero__search-input {
        border-right: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px 8px 0 0;
    }
    
    .archive-hero__search-btn {
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 480px) {
    .archive-hero {
        padding: 90px 0 30px;
    }
    
    .archive-post__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .archive-empty__links {
        flex-direction: column;
    }
    
    .archive-empty__link {
        width: 100%;
        justify-content: center;
    }
}
/* ==========================================================================
   GEO-NAVIGATION MODULE - DRAMATIC EDITION
   Cinematic location explorer with premium law firm aesthetic
   ========================================================================== */

.geo-nav {
    position: relative;
    background: linear-gradient(165deg, #0d1321 0%, #1a2744 50%, #0d1321 100%);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Decorative corner accents */
.geo-nav::before,
.geo-nav::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
}

.geo-nav::before {
    top: 0;
    left: 0;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
    border-radius: 20px 0 0 0;
}

.geo-nav::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
    border-radius: 0 0 20px 0;
}

/* Header - Dramatic title treatment */
.geo-nav__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.geo-nav__header i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #f4d03f 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    animation: geo-pulse 3s ease-in-out infinite;
}

@keyframes geo-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.geo-nav__header span {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Breadcrumb - Journey trail */
.geo-nav__breadcrumb {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem 0.5rem;
    position: relative;
}

/* Vertical connecting line */
.geo-nav__breadcrumb::before {
    content: '';
    position: absolute;
    left: 2.25rem;
    top: 1.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--color-gold) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.geo-nav__ancestor {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem 0.5rem 2rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.geo-nav__ancestor::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    z-index: 1;
}

.geo-nav__ancestor:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.geo-nav__ancestor i {
    font-size: 0.65rem;
    opacity: 0.5;
}

/* Current Category - The Hero Moment */
.geo-nav__current {
    padding: 0.75rem 1.5rem;
    position: relative;
}

.geo-nav__current-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    color: var(--color-navy);
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Shine effect */
.geo-nav__current-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.geo-nav__current-link:hover::before {
    left: 100%;
}

.geo-nav__current-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.geo-nav__current-link i {
    font-size: 1.5rem;
    color: var(--color-navy);
    opacity: 0.8;
}

.geo-nav__current-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 800;
    flex-grow: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.geo-nav__current-count {
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--color-navy);
    color: var(--color-gold);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

/* Children Section - Location Grid */
.geo-nav__children {
    padding: 0.5rem 1.5rem 1.5rem;
}

.geo-nav__children-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.geo-nav__children-label::before {
    content: '›';
    font-size: 1rem;
    color: var(--color-gold);
}

.geo-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar - Gold accent */
.geo-nav__list::-webkit-scrollbar {
    width: 4px;
}

.geo-nav__list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.geo-nav__list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gold) 0%, #8b7127 100%);
    border-radius: 4px;
}

.geo-nav__item {
    margin: 0;
}

.geo-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Hover glow effect */
.geo-nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.geo-nav__link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--color-white);
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.geo-nav__link:hover::before {
    transform: scaleY(1);
}

.geo-nav__link-name {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 0.75rem;
}

.geo-nav__link-count {
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    flex-shrink: 0;
}

/* View All - Call to Action */
.geo-nav__view-all {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    background: transparent;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid var(--color-gold);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    overflow: hidden;
}

.geo-nav__view-all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.geo-nav__view-all:hover {
    color: var(--color-navy);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.geo-nav__view-all:hover::before {
    transform: translateY(0);
}

.geo-nav__view-all i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.geo-nav__view-all:hover i {
    transform: translateX(4px);
}

/* Leaf State - No children */
.geo-nav__leaf {
    padding: 1.25rem;
    margin: 0 1.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    text-align: center;
}

.geo-nav__leaf-text {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .geo-nav {
        border-radius: 16px;
    }
    
    .geo-nav::before,
    .geo-nav::after {
        width: 40px;
        height: 40px;
    }
    
    .geo-nav__header {
        padding: 1.25rem 1.25rem 1rem;
    }
    
    .geo-nav__header span {
        font-size: 0.75rem;
    }
    
    .geo-nav__breadcrumb {
        padding: 0.75rem 1.25rem 0.5rem;
    }
    
    .geo-nav__current {
        padding: 0.5rem 1.25rem;
    }
    
    .geo-nav__current-link {
        padding: 1rem 1.25rem;
    }
    
    .geo-nav__current-name {
        font-size: 1rem;
    }
    
    .geo-nav__children {
        padding: 0.5rem 1.25rem 1.25rem;
    }
    
    .geo-nav__list {
        max-height: 280px;
    }
}

@media (max-width: 480px) {
    .geo-nav::before,
    .geo-nav::after {
        display: none;
    }
    
    .geo-nav__header {
        padding: 1rem;
    }
    
    .geo-nav__breadcrumb {
        padding: 0.5rem 1rem;
    }
    
    .geo-nav__breadcrumb::before {
        left: 1.75rem;
    }
    
    .geo-nav__current {
        padding: 0.5rem 1rem;
    }
    
    .geo-nav__current-link {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }
    
    .geo-nav__current-link i {
        font-size: 1.25rem;
    }
    
    .geo-nav__current-name {
        font-size: 0.9rem;
    }
    
    .geo-nav__children {
        padding: 0.5rem 1rem 1rem;
    }
    
    .geo-nav__link {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }
}
