 @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');
        
        :root {
            --navy: #0a1e42;
            --navy-light: #1a3a6b;
            --gold: #c9a55a;
            --gold-dark: #a0864a;
            --white: #ffffff;
            --cream: #faf8f5;
            --gray: #6b7280;
            --gray-light: #e5e7eb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--navy);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 30, 66, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: padding 0.3s ease;
        }
        
        nav.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--gold);
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }
        
        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(201, 165, 90, 0.1) 0%, transparent 70%);
            animation: pulse 15s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1) translate(-50%, -50%); opacity: 0.5; }
            50% { transform: scale(1.2) translate(-50%, -50%); opacity: 0.8; }
        }
        
        .hero-content {
            text-align: center;
            color: var(--white);
            max-width: 900px;
            padding: 2rem;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: 2px;
        }
        
        .hero h1 strong {
            font-weight: 600;
            color: var(--gold);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            letter-spacing: 0.5px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2.5rem;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background: var(--gold);
            color: var(--navy);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold-dark);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .btn-primary:hover::before {
            left: 0;
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--gold);
        }
        
        .btn-secondary:hover {
            background: var(--gold);
            color: var(--navy);
        }
        
        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeIn 0.8s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .section-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--navy);
        }
        
        .section-header .accent-line {
            width: 80px;
            height: 3px;
            background: var(--gold);
            margin: 0 auto 1.5rem;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Section */
        #about {
            background: var(--cream);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-text h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--navy);
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--gray);
            line-height: 1.8;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 5px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: var(--gray);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Attorneys Section */
        .attorneys-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        
        .attorney-card {
            background: var(--white);
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 3px solid var(--gold);
        }
        
        .attorney-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .attorney-image {
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            color: var(--gold);
            font-weight: 600;
        }
        
        .attorney-info {
            padding: 2rem;
        }
        
        .attorney-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--navy);
        }
        
        .attorney-info .title {
            color: var(--gold);
            font-size: 0.95rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .attorney-info p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        
        /* Practice Areas */
        #practice-areas {
            background: var(--navy);
            color: var(--white);
        }
        
        #practice-areas .section-header h2,
        #practice-areas .section-header p {
            color: var(--white);
        }
        
        .practice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .practice-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 5px;
            border: 1px solid rgba(201, 165, 90, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .practice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            transition: height 0.3s ease;
            z-index: -1;
        }
        
        .practice-card:hover::before {
            height: 100%;
        }
        
        .practice-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }
        
        .practice-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }
        
        .practice-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .practice-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .practice-card ul {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .practice-card li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .practice-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
        }
        
        .learn-more {
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }
        
        .learn-more:hover {
            color: var(--white);
        }
        
        /* Testimonials */
        #testimonials {
            background: var(--cream);
        }
        
        .testimonials-slider {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 5px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            text-align: center;
            position: relative;
        }
        
        .quote-icon {
            font-size: 4rem;
            color: var(--gold);
            opacity: 0.3;
            margin-bottom: 1rem;
            font-family: 'Cormorant Garamond', serif;
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.3rem;
        }
        
        .testimonial-position {
            color: var(--gold);
            font-size: 0.9rem;
        }
        
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--gray-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }
        
        /* Blog Section */
        #blog {
            background: var(--white);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }
        
        .blog-card {
            background: var(--cream);
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .blog-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 4rem;
        }
        
        .blog-content {
            padding: 2rem;
        }
        
        .blog-date {
            color: var(--gold);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .blog-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--navy);
        }
        
        .blog-content p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .read-more {
            color: var(--navy);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--gold);
        }
        
        /* Contact Section */
        #contact {
            background: var(--cream);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }
        
        .contact-icon {
            font-size: 2rem;
            color: var(--gold);
            min-width: 40px;
        }
        
        .contact-details h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--navy);
        }
        
        .contact-details p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        .map-container {
            background: var(--white);
            border-radius: 5px;
            overflow: hidden;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
        }
        
        .map-placeholder {
            text-align: center;
            color: var(--gray);
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 0.5rem;
            color: var(--navy);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid var(--gray-light);
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        /* Footer */
        footer {
            background: var(--navy);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--gold);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--navy);
                flex-direction: column;
                padding: 3rem 2rem;
                transition: left 0.3s ease;
                align-items: flex-start;
                gap: 2rem;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .btn {
                width: 100%;
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
            
            .practice-grid,
            .blog-grid,
            .attorneys-grid {
                grid-template-columns: 1fr;
            }
            
            section {
                padding: 4rem 1.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }