        :root {
            /* Color Palette - Warm, sophisticated neutrals with teal accent */
            --color-bg: #FDFBF7;
            --color-bg-alt: #F5F2EC;
            --color-text: #1A1A1A;
            --color-text-muted: #6B6B6B;
            --color-text-light: #9A9A9A;
            --color-accent: #1D5C5C;
            --color-accent-hover: #174848;
            --color-accent-light: #E8F0F0;
            --color-border: #E5E2DC;
            --color-white: #FFFFFF;
            
            /* Typography */
            --font-display: 'Syne', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            
            /* Spacing */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 6rem;
            --space-3xl: 8rem;
            
            /* Container */
            --container-max: 1200px;
            --container-narrow: 800px;
        }
        
        /* Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-text);
            background-color: var(--color-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
        h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
        h4 { font-size: 1.125rem; }
        
        p {
            color: var(--color-text-muted);
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        /* Utility Classes */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--space-md);
        }
        
        .container--narrow {
            max-width: var(--container-narrow);
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            padding: 0.875rem 1.75rem;
            font-family: var(--font-body);
            font-size: 0.9375rem;
            font-weight: 500;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        
        .btn--primary {
            background-color: var(--color-accent);
            color: var(--color-white);
        }
        
        .btn--primary:hover {
            background-color: var(--color-accent-hover);
            transform: translateY(-2px);
        }
        
        .btn--secondary {
            background-color: transparent;
            color: var(--color-text);
            border: 1px solid var(--color-border);
        }
        
        .btn--secondary:hover {
            border-color: var(--color-text);
            background-color: var(--color-text);
            color: var(--color-white);
        }
        
        .btn--ghost {
            background: transparent;
            color: var(--color-accent);
            padding: 0;
        }
        
        .btn--ghost:hover {
            opacity: 0.7;
        }
        
        .btn--ghost svg {
            transition: transform 0.2s ease;
        }
        
        .btn--ghost:hover svg {
            transform: translateX(4px);
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(253, 251, 247, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--color-border);
            transition: all 0.3s ease;
        }
        
        .header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--space-sm) var(--space-md);
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--color-text);
        }
        
        .logo .logo-i {
            color: #C41E3A;
        }
        
        .logo .logo-am {
            color: var(--color-accent);
        }
        
        .nav {
            display: flex;
            align-items: center;
            gap: var(--space-lg);
        }
        
        .nav__item {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--color-text-muted);
            transition: color 0.2s ease;
            position: relative;
        }
        
        .nav__item:hover {
            color: var(--color-text);
        }
        
        .nav__dropdown {
            position: relative;
        }
        
        .nav__dropdown > a {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .nav__dropdown > a::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 4px solid currentColor;
            margin-left: 2px;
        }
        
        .nav__dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-sm);
            min-width: 220px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(10px);
            transition: all 0.2s ease;
            z-index: 1000;
            margin-top: 8px;
        }
        
        .nav__dropdown:hover .nav__dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }
        
        .nav__dropdown-menu a {
            display: block;
            padding: 0.625rem 0.875rem;
            font-size: 0.875rem;
            color: var(--color-text-muted);
            border-radius: 4px;
            transition: all 0.15s ease;
            white-space: nowrap;
        }
        
        .nav__dropdown-menu a:hover {
            background: var(--color-bg-alt);
            color: var(--color-text);
        }
        
        .nav__link {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--color-text-muted);
            transition: color 0.2s ease;
            position: relative;
        }
        
        .nav__link:hover,
        .nav__link--active {
            color: var(--color-text);
        }
        
        .nav__link--dropdown {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .nav__actions {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }
        
        .lang-toggle {
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--color-text-muted);
            padding: 0.375rem 0.75rem;
            border: 1px solid var(--color-border);
            border-radius: 4px;
            background: transparent;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .lang-toggle:hover {
            border-color: var(--color-text);
        }
        
        .lang-toggle span {
            color: var(--color-text-light);
        }
        
        .lang-toggle strong {
            color: var(--color-text);
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        
        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--color-text);
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: var(--space-3xl) 0 var(--space-2xl);
            position: relative;
            overflow: hidden;
            background: var(--color-text);
        }
        
        .hero__video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%; /* Taller for parallax movement */
            object-fit: cover;
            z-index: 0;
            opacity: 0.6;
            will-change: transform;
            transition: transform 0.1s linear;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(29, 92, 92, 0.7) 100%);
            z-index: 1;
        }
        
        .hero .container {
            position: relative;
            z-index: 2;
        }
        
        .hero__content {
            max-width: 720px;
        }
        
        .hero__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 0.8125rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.8);
            margin-bottom: var(--space-md);
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .hero__eyebrow::before {
            content: '';
            width: 24px;
            height: 1px;
            background: rgba(255,255,255,0.5);
        }
        
        .hero__title {
            margin-bottom: var(--space-md);
            animation: fadeInUp 0.6s ease 0.1s forwards;
            opacity: 0;
            color: var(--color-white);
        }
        
        .hero__subtitle {
            font-size: 1.125rem;
            line-height: 1.7;
            margin-bottom: var(--space-lg);
            animation: fadeInUp 0.6s ease 0.2s forwards;
            opacity: 0;
            color: rgba(255,255,255,0.85);
        }
        
        .hero__actions {
            display: flex;
            gap: var(--space-sm);
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease 0.3s forwards;
            opacity: 0;
        }
        
        .hero__actions .btn--primary {
            background-color: var(--color-white);
            color: var(--color-text);
        }
        
        .hero__actions .btn--primary:hover {
            background-color: var(--color-accent-light);
            transform: translateY(-2px);
        }
        
        .hero__actions .btn--secondary {
            background-color: transparent;
            color: var(--color-white);
            border: 1px solid rgba(255,255,255,0.4);
        }
        
        .hero__actions .btn--secondary:hover {
            border-color: var(--color-white);
            background-color: rgba(255,255,255,0.1);
        }
        
        .hero__actions .btn--ghost {
            background-color: transparent;
            color: var(--color-white);
            border: 1px solid rgba(255,255,255,0.6);
            padding: 0.875rem 1.75rem;
        }
        
        .hero__actions .btn--ghost:hover {
            border-color: var(--color-white);
            background-color: rgba(255,255,255,0.15);
            opacity: 1;
        }
        
        .hero__scroll {
            position: absolute;
            bottom: var(--space-lg);
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-xs);
            color: rgba(255,255,255,0.6);
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            animation: fadeInUp 0.6s ease 0.5s forwards;
            opacity: 0;
        }
        
        .hero__scroll-icon {
            width: 24px;
            height: 38px;
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 12px;
            position: relative;
        }
        
        .hero__scroll-icon::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: rgba(255,255,255,0.6);
            border-radius: 2px;
            animation: scrollBounce 1.5s ease-in-out infinite;
        }
        
        @keyframes scrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
            50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
        }
        
        /* Trust Strip */
        .trust-strip {
            padding: var(--space-lg) 0;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            background: var(--color-bg);
        }
        
        .trust-strip__items {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            gap: var(--space-lg);
            flex-wrap: nowrap;
        }
        
        .trust-strip__item {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            white-space: nowrap;
            flex: 1;
            justify-content: center;
        }
        
        .trust-strip__item svg {
            color: var(--color-accent);
            flex-shrink: 0;
        }
        
        /* Section Styles */
        .section {
            padding: var(--space-3xl) 0;
        }
        
        .section--alt {
            background: var(--color-bg-alt);
        }
        
        .section__header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto var(--space-xl);
        }
        
        .section__eyebrow {
            font-size: 0.8125rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-accent);
            margin-bottom: var(--space-sm);
        }
        
        .section__title {
            margin-bottom: var(--space-sm);
        }
        
        .section__subtitle {
            font-size: 1.0625rem;
        }
        
        /* Practice Areas Grid */
        .practice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-md);
        }
        
        .practice-card {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-lg);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .practice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--color-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .practice-card:hover {
            border-color: var(--color-accent);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }
        
        .practice-card:hover::before {
            transform: scaleX(1);
        }
        
        .practice-card__icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-accent-light);
            border-radius: 8px;
            margin-bottom: var(--space-md);
            color: var(--color-accent);
        }
        
        .practice-card__title {
            margin-bottom: var(--space-xs);
        }
        
        .practice-card__desc {
            font-size: 0.9375rem;
            margin-bottom: var(--space-md);
        }
        
        .practice-card__link {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .practice-card__link svg {
            transition: transform 0.2s ease;
        }
        
        .practice-card:hover .practice-card__link svg {
            transform: translateX(4px);
        }
        
        /* How We Work */
        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
            counter-reset: step;
        }
        
        .step {
            text-align: center;
            position: relative;
        }
        
        .step::before {
            counter-increment: step;
            content: counter(step, decimal-leading-zero);
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 700;
            color: var(--color-accent);
            opacity: 0.4;
            line-height: 1;
            margin-bottom: var(--space-sm);
            display: block;
        }
        
        .step__title {
            margin-bottom: var(--space-xs);
        }
        
        .step__desc {
            font-size: 0.9375rem;
        }
        
        /* Insights Grid */
        .insights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-md);
        }
        
        .insight-card {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .insight-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }
        
        .insight-card__image {
            height: 180px;
            background: var(--color-bg-alt);
            position: relative;
            overflow: hidden;
        }
        
        .insight-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .insight-card__tag {
            position: absolute;
            top: var(--space-sm);
            left: var(--space-sm);
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.25rem 0.75rem;
            background: var(--color-white);
            border-radius: 100px;
            color: var(--color-accent);
        }
        
        .insight-card__content {
            padding: var(--space-md);
        }
        
        .insight-card__title {
            font-size: 1.0625rem;
            margin-bottom: var(--space-xs);
        }
        
        .insight-card__excerpt {
            font-size: 0.875rem;
            margin-bottom: var(--space-sm);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .insight-card__date {
            font-size: 0.8125rem;
            color: var(--color-text-light);
        }
        
        /* CTA Band */
        .cta-band {
            background: var(--color-text);
            padding: var(--space-2xl) 0;
            text-align: center;
        }
        
        /* Attorney Section */
        .attorney-section {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: var(--space-xl);
            align-items: center;
        }
        
        .attorney-section__image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .attorney-section__image::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: 10px;
            bottom: 10px;
            border: 2px solid var(--color-accent);
            border-radius: 8px;
            z-index: -1;
        }
        
        .attorney-section__image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        
        .attorney-section__content {
            padding: var(--space-md) 0;
        }
        
        .attorney-section__content .section__eyebrow {
            text-align: left;
        }
        
        .attorney-section__content .section__title {
            text-align: left;
            margin-bottom: var(--space-xs);
        }
        
        .attorney-section__role {
            font-size: 1.125rem;
            color: var(--color-accent);
            font-weight: 500;
            margin-bottom: var(--space-md);
        }
        
        .attorney-section__bio {
            font-size: 1.0625rem;
            line-height: 1.8;
            margin-bottom: var(--space-lg);
        }
        
        @media (max-width: 900px) {
            .attorney-section {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .attorney-section__image {
                max-width: 350px;
                margin: 0 auto;
            }
            
            .attorney-section__content .section__eyebrow,
            .attorney-section__content .section__title {
                text-align: center;
            }
        }
        
        /* Contact Page Styles */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: var(--space-xl);
            align-items: start;
        }
        
        .contact-form-wrapper {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-xl);
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-md);
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .form-group label {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--color-text);
        }
        
        .form-group .required {
            color: #C41E3A;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.875rem 1rem;
            border: 1px solid var(--color-border);
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 0.9375rem;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            background: var(--color-bg);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 0 3px var(--color-accent-light);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }
        
        .form-checkbox {
            flex-direction: row;
            align-items: flex-start;
            gap: var(--space-sm);
        }
        
        .form-checkbox input {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .form-checkbox label {
            font-size: 0.8125rem;
            font-weight: 400;
            color: var(--color-text-muted);
            line-height: 1.5;
        }
        
        .btn--full {
            width: 100%;
            justify-content: center;
        }
        
        .form-disclaimer {
            font-size: 0.8125rem;
            color: var(--color-text-light);
            text-align: center;
            margin-top: var(--space-xs);
        }
        
        .form-disclaimer a {
            color: var(--color-accent);
        }
        
        .contact-sidebar {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }
        
        .contact-card {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-lg);
        }
        
        .contact-card h3 {
            font-size: 1.125rem;
            margin-bottom: var(--space-md);
        }
        
        .contact-card__item {
            display: flex;
            align-items: flex-start;
            gap: var(--space-sm);
            padding: var(--space-sm) 0;
            border-bottom: 1px solid var(--color-border);
        }
        
        .contact-card__item:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .contact-card__item:first-of-type {
            padding-top: 0;
        }
        
        .contact-card__item svg {
            color: var(--color-accent);
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .contact-card__item strong {
            display: block;
            font-size: 0.875rem;
            margin-bottom: 2px;
        }
        
        .contact-card__item a,
        .contact-card__item span {
            font-size: 0.9375rem;
            color: var(--color-text-muted);
        }
        
        .contact-card__item a:hover {
            color: var(--color-accent);
        }
        
        .contact-card--accent {
            background: var(--color-accent-light);
            border-color: transparent;
        }
        
        .disclaimer-box {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-lg);
        }
        
        .disclaimer-box h3 {
            font-size: 1rem;
            margin-bottom: var(--space-md);
        }
        
        .disclaimer-box p {
            font-size: 0.875rem;
            margin-bottom: var(--space-sm);
            line-height: 1.6;
        }
        
        .disclaimer-box p:last-child {
            margin-bottom: 0;
        }
        
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        /* About Page Styles */
        .about-intro {
            max-width: 800px;
        }
        
        .about-intro .section__eyebrow {
            text-align: left;
        }
        
        .about-intro__content p {
            font-size: 1.0625rem;
            line-height: 1.8;
            margin-bottom: var(--space-md);
        }
        
        .about-intro__content p:last-child {
            margin-bottom: 0;
        }
        
        .attorney-profile {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: var(--space-xl);
            align-items: start;
        }
        
        .attorney-profile__image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .attorney-profile__image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        
        .attorney-profile__content .section__eyebrow {
            text-align: left;
        }
        
        .attorney-profile__name {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            margin-bottom: var(--space-xs);
        }
        
        .attorney-profile__title {
            font-size: 1.125rem;
            color: var(--color-accent);
            font-weight: 500;
            margin-bottom: var(--space-lg);
        }
        
        .attorney-profile__bio p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: var(--space-md);
            color: var(--color-text-muted);
        }
        
        .attorney-profile__bio p:last-child {
            margin-bottom: var(--space-lg);
        }
        
        .attorney-profile__bio a {
            color: var(--color-accent);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        
        .attorney-profile__bio a:hover {
            color: var(--color-accent-hover);
        }
        
        .attorney-profile__disclaimer {
            font-size: 0.8125rem;
            color: var(--color-text-light);
            font-style: italic;
            padding-top: var(--space-md);
            border-top: 1px solid var(--color-border);
        }
        
        .credentials-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-md);
        }
        
        .credential-card {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-lg);
            text-align: center;
        }
        
        .credential-card__icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-accent-light);
            border-radius: 50%;
            margin: 0 auto var(--space-md);
            color: var(--color-accent);
        }
        
        .credential-card__title {
            font-size: 1rem;
            margin-bottom: var(--space-sm);
        }
        
        .credential-card__list {
            list-style: none;
            font-size: 0.9375rem;
            color: var(--color-text-muted);
        }
        
        .credential-card__list li {
            margin-bottom: var(--space-xs);
        }
        
        .credential-card__list li:last-child {
            margin-bottom: 0;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-md);
        }
        
        .value-card {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-lg);
            text-align: center;
        }
        
        .value-card__icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-accent-light);
            border-radius: 50%;
            margin: 0 auto var(--space-md);
            color: var(--color-accent);
        }
        
        .value-card__title {
            font-size: 1.0625rem;
            margin-bottom: var(--space-xs);
        }
        
        .value-card__desc {
            font-size: 0.9375rem;
        }
        
        @media (max-width: 1024px) {
            .credentials-grid,
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 900px) {
            .attorney-profile {
                grid-template-columns: 1fr;
            }
            
            .attorney-profile__image {
                max-width: 350px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 600px) {
            .credentials-grid,
            .values-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Insights Page Styles */
        .insights-filters {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }
        
        .insights-search {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            max-width: 400px;
        }
        
        .insights-search svg {
            color: var(--color-text-light);
            flex-shrink: 0;
        }
        
        .insights-search__input {
            border: none;
            outline: none;
            font-family: var(--font-body);
            font-size: 0.9375rem;
            width: 100%;
            background: transparent;
        }
        
        .insights-tags {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-xs);
        }
        
        .insights-tag {
            padding: 0.5rem 1rem;
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 500;
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .insights-tag:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
        }
        
        .insights-tag.active {
            background: var(--color-accent);
            border-color: var(--color-accent);
            color: var(--color-white);
        }
        
        .featured-post {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            overflow: hidden;
        }
        
        .featured-post__image {
            min-height: 350px;
            background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-bg-alt) 100%);
            position: relative;
        }
        
        .featured-post__image .insight-card__tag {
            position: absolute;
            top: var(--space-md);
            left: var(--space-md);
        }
        
        .featured-post__content {
            padding: var(--space-xl);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .featured-post__date {
            font-size: 0.875rem;
            color: var(--color-text-light);
            margin-bottom: var(--space-sm);
        }
        
        .featured-post__title {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            margin-bottom: var(--space-md);
            line-height: 1.3;
        }
        
        .featured-post__excerpt {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: var(--space-lg);
        }
        
        .insights-grid-full {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-md);
        }
        
        .insight-card__link {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-accent);
        }
        
        .insight-card__link:hover {
            text-decoration: underline;
        }
        
        .insights-pagination {
            display: flex;
            justify-content: center;
            gap: var(--space-xs);
            margin-top: var(--space-xl);
        }
        
        .pagination-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 0.9375rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .pagination-btn:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
        }
        
        .pagination-btn.active {
            background: var(--color-accent);
            border-color: var(--color-accent);
            color: var(--color-white);
        }
        
        .newsletter-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-xl);
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: var(--space-xl);
        }
        
        .newsletter-cta__content {
            max-width: 500px;
        }
        
        .newsletter-cta__title {
            font-size: 1.5rem;
            margin-bottom: var(--space-xs);
        }
        
        .newsletter-cta__desc {
            font-size: 0.9375rem;
        }
        
        .newsletter-cta__form {
            display: flex;
            gap: var(--space-sm);
        }
        
        .newsletter-cta__input {
            padding: 0.875rem 1rem;
            border: 1px solid var(--color-border);
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 0.9375rem;
            min-width: 280px;
        }
        
        .newsletter-cta__input:focus {
            outline: none;
            border-color: var(--color-accent);
        }
        
        @media (max-width: 1024px) {
            .insights-grid-full {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .featured-post {
                grid-template-columns: 1fr;
            }
            
            .featured-post__image {
                min-height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .insights-grid-full {
                grid-template-columns: 1fr;
            }
            
            .newsletter-cta {
                flex-direction: column;
                text-align: center;
            }
            
            .newsletter-cta__form {
                flex-direction: column;
                width: 100%;
            }
            
            .newsletter-cta__input {
                min-width: auto;
                width: 100%;
            }
        }
        
        .cta-band__title {
            color: var(--color-white);
            margin-bottom: var(--space-xs);
        }
        
        .cta-band__subtitle {
            color: rgba(255,255,255,0.7);
            margin-bottom: var(--space-lg);
        }
        
        .cta-band__actions {
            display: flex;
            gap: var(--space-sm);
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-band .btn--primary {
            background: var(--color-white);
            color: var(--color-text);
        }
        
        .cta-band .btn--primary:hover {
            background: var(--color-accent-light);
        }
        
        .cta-band .btn--secondary {
            border-color: rgba(255,255,255,0.3);
            color: var(--color-white);
        }
        
        .cta-band .btn--secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--color-white);
        }
        
        /* Footer */
        .footer {
            background: var(--color-bg-alt);
            padding: var(--space-lg) 0 var(--space-sm);
            border-top: 1px solid var(--color-border);
        }
        
        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: var(--space-md);
            margin-bottom: var(--space-md);
        }
        
        .footer__brand .logo {
            margin-bottom: var(--space-xs);
        }
        
        .footer__brand p {
            font-size: 0.8125rem;
            margin-bottom: var(--space-xs);
            line-height: 1.5;
        }
        
        .footer__contact-item {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 0.875rem;
            color: var(--color-text-muted);
            margin-bottom: 4px;
        }
        
        .footer__contact-item svg {
            color: var(--color-accent);
            flex-shrink: 0;
        }
        
        .footer__column h4 {
            font-size: 0.8125rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-sm);
            color: var(--color-text);
        }
        
        .footer__links {
            list-style: none;
        }
        
        .footer__links li {
            margin-bottom: 4px;
        }
        
        .footer__links a {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            transition: color 0.2s ease;
        }
        
        .footer__links a:hover {
            color: var(--color-accent);
        }
        
        .footer__bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-md);
            border-top: 1px solid var(--color-border);
            flex-wrap: wrap;
            gap: var(--space-xs);
        }
        
        .footer__legal {
            font-size: 0.75rem;
            color: var(--color-text-light);
        }
        
        .footer__legal a {
            color: var(--color-text-muted);
        }
        
        .footer__legal a:hover {
            color: var(--color-accent);
        }
        
        .footer__disclaimer {
            font-size: 0.75rem;
            color: var(--color-text-light);
            max-width: 600px;
            text-align: right;
        }
        
        /* Page Header (for inner pages) */
        .page-header {
            padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
            background: var(--color-bg-alt);
            border-bottom: 1px solid var(--color-border);
        }
        
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 0.875rem;
            margin-bottom: var(--space-sm);
        }
        
        .breadcrumb a {
            color: var(--color-text-muted);
        }
        
        .breadcrumb a:hover {
            color: var(--color-accent);
        }
        
        .breadcrumb span {
            color: var(--color-text-light);
        }
        
        .page-header__content {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: var(--space-lg);
            flex-wrap: wrap;
        }
        
        .page-header__text {
            max-width: 600px;
        }
        
        .page-header__title {
            margin-bottom: var(--space-xs);
            font-size: clamp(2rem, 4vw, 2.75rem);
        }
        
        .page-header__subtitle {
            font-size: 1.0625rem;
        }
        
        .page-header__actions {
            display: flex;
            gap: var(--space-sm);
        }
        
        /* Case Status Widget */
        .status-widget {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-lg);
            max-width: 500px;
        }
        
        .status-widget__title {
            margin-bottom: var(--space-xs);
        }
        
        .status-widget__desc {
            font-size: 0.9375rem;
            margin-bottom: var(--space-md);
        }
        
        .status-widget__form {
            display: flex;
            gap: var(--space-xs);
            margin-bottom: var(--space-sm);
        }
        
        .status-widget__input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid var(--color-border);
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 0.9375rem;
            transition: border-color 0.2s ease;
        }
        
        .status-widget__input:focus {
            outline: none;
            border-color: var(--color-accent);
        }
        
        .status-widget__input::placeholder {
            color: var(--color-text-light);
        }
        
        .status-widget__result {
            background: var(--color-accent-light);
            border-radius: 4px;
            padding: var(--space-md);
            margin-top: var(--space-md);
            display: none;
        }
        
        .status-widget__result.active {
            display: block;
        }
        
        .status-widget__status {
            font-weight: 600;
            color: var(--color-accent);
            margin-bottom: var(--space-xs);
        }
        
        .status-widget__updated {
            font-size: 0.8125rem;
            color: var(--color-text-muted);
        }
        
        .status-widget__privacy {
            font-size: 0.75rem;
            color: var(--color-text-light);
            margin-top: var(--space-sm);
        }
        
        /* Intake Funnel */
        .intake-funnel {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-lg);
        }
        
        .intake-funnel__title {
            margin-bottom: var(--space-xs);
        }
        
        .intake-funnel__desc {
            font-size: 0.9375rem;
            margin-bottom: var(--space-md);
        }
        
        .intake-funnel__options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: var(--space-sm);
        }
        
        .intake-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: var(--space-md);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .intake-option:hover {
            border-color: var(--color-accent);
            background: var(--color-accent-light);
        }
        
        .intake-option__icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-bg-alt);
            border-radius: 50%;
            margin-bottom: var(--space-xs);
            color: var(--color-accent);
        }
        
        .intake-option__label {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--color-text);
        }
        
        /* Content Sections */
        .content-section {
            padding: var(--space-2xl) 0;
        }
        
        .content-section + .content-section {
            border-top: 1px solid var(--color-border);
        }
        
        .content-section__header {
            margin-bottom: var(--space-lg);
        }
        
        .content-section__title {
            margin-bottom: var(--space-xs);
        }
        
        /* Matters List */
        .matters-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-sm) var(--space-xl);
            list-style: none;
        }
        
        .matters-list li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-sm);
            font-size: 0.9375rem;
            color: var(--color-text-muted);
        }
        
        .matters-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--color-accent);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.5em;
        }
        
        /* FAQ Accordion */
        .faq-list {
            max-width: 800px;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--color-border);
        }
        
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-md) 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text);
            transition: color 0.2s ease;
        }
        
        .faq-question:hover {
            color: var(--color-accent);
        }
        
        .faq-question svg {
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question svg {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer__inner {
            padding-bottom: var(--space-md);
            font-size: 0.9375rem;
            color: var(--color-text-muted);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        /* Updates Feed */
        .updates-feed {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }
        
        .update-item {
            display: flex;
            gap: var(--space-md);
            padding: var(--space-md);
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .update-item:hover {
            border-color: var(--color-accent);
        }
        
        .update-item__date {
            flex-shrink: 0;
            width: 60px;
            text-align: center;
        }
        
        .update-item__day {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-accent);
            line-height: 1;
        }
        
        .update-item__month {
            font-size: 0.75rem;
            color: var(--color-text-light);
            text-transform: uppercase;
        }
        
        .update-item__content {
            flex: 1;
        }
        
        .update-item__title {
            font-size: 1rem;
            margin-bottom: 4px;
        }
        
        .update-item__excerpt {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* Two Column Layout */
        .two-col {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: var(--space-xl);
            align-items: start;
        }
        
        .sidebar {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }
        
        /* Checklist */
        .checklist {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-lg);
        }
        
        .checklist__title {
            margin-bottom: var(--space-md);
        }
        
        .checklist__list {
            list-style: none;
            margin-bottom: var(--space-md);
        }
        
        .checklist__list li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-sm);
            font-size: 0.9375rem;
            color: var(--color-text-muted);
            padding: var(--space-xs) 0;
        }
        
        .checklist__list li svg {
            flex-shrink: 0;
            color: var(--color-accent);
            margin-top: 2px;
        }
        
        /* Page Navigation */
        .page-nav {
            display: none;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .two-col {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .hero {
                min-height: auto;
                padding: calc(var(--space-3xl) + 40px) 0 var(--space-xl);
            }
            
            .trust-strip__items {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .trust-strip__item {
                flex: none;
            }
            
            .steps {
                grid-template-columns: 1fr;
            }
            
            .insights-grid {
                grid-template-columns: 1fr;
            }
            
            .footer__grid {
                grid-template-columns: 1fr;
                gap: var(--space-md);
            }
            
            .footer__bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer__disclaimer {
                text-align: center;
            }
            
            .matters-list {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                grid-template-columns: 1fr;
            }
            
            .page-header__content {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .intake-funnel__options {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .intake-funnel__options {
                grid-template-columns: 1fr;
            }
        }
        
        /* Page Toggle for Preview */
        .page-toggle {
            position: fixed;
            bottom: var(--space-lg);
            left: 50%;
            transform: translateX(-50%);
            z-index: 1001;
            display: flex;
            background: var(--color-text);
            border-radius: 100px;
            padding: 4px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }
        
        .page-toggle__btn {
            padding: 0.75rem 1.5rem;
            border: none;
            background: transparent;
            color: rgba(255,255,255,0.6);
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .page-toggle__btn.active {
            background: var(--color-white);
            color: var(--color-text);
        }
        
        .page-toggle__btn:hover:not(.active) {
            color: var(--color-white);
        }
        
        /* Page Visibility */
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
