:root {
            --navy: #1a2744;
            --navy-light: #2a3a5c;
            --gold: #c9a962;
            --gold-light: #d4b978;
            --cream: #f8f6f3;
            --white: #ffffff;
            --gray-100: #f7f7f7;
            --gray-200: #e5e5e5;
            --gray-600: #6b7280;
            --gray-800: #374151;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--gray-800);
            line-height: 1.7;
            background: var(--white);
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(26, 39, 68, 0.98);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
        }

        .logo-text {
            color: var(--white);
        }

        .logo-text h1 {
            font-size: 1.5rem;
            letter-spacing: 1px;
            margin-bottom: 2px;
        }

        .logo-text span {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 12px 28px;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .nav-cta:hover {
            background: var(--gold);
            color: var(--navy);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&q=80') center/cover;
            opacity: 0.15;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 120px 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 169, 98, 0.15);
            border: 1px solid rgba(201, 169, 98, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            color: var(--gold);
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
        }

        .hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            color: var(--white);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero h1 span {
            color: var(--gold);
        }

        .hero p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--navy);
            padding: 16px 36px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 16px 36px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-secondary:hover {
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-stats {
            display: flex;
            gap: 60px;
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 8px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* About Section */
        .about {
            padding: 140px 0;
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
        }

        .about-image-overlay {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--gold);
            padding: 40px;
            max-width: 280px;
        }

        .about-image-overlay p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--navy);
            font-style: italic;
            line-height: 1.4;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--gold);
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .section-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .about-content h2 {
            font-size: 3rem;
            color: var(--navy);
            margin-bottom: 30px;
        }

        .about-content p {
            color: var(--gray-600);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: var(--cream);
            transition: all 0.3s ease;
        }

        .about-feature:hover {
            background: var(--navy);
            color: var(--white);
        }

        .about-feature svg {
            width: 20px;
            height: 20px;
            color: var(--gold);
        }

        /* Practice Areas */
        .practice {
            padding: 140px 0;
            background: var(--cream);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--navy);
            margin-bottom: 20px;
        }

        .section-header p {
            color: var(--gray-600);
            font-size: 1.1rem;
        }

        .practice-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .practice-card {
            background: var(--white);
            padding: 50px 35px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .practice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .practice-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(26, 39, 68, 0.1);
        }

        .practice-card:hover::before {
            transform: scaleX(1);
        }

        .practice-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .practice-card:hover .practice-icon {
            background: var(--gold);
        }

        .practice-icon svg {
            width: 28px;
            height: 28px;
            color: var(--gold);
            transition: color 0.4s ease;
        }

        .practice-card:hover .practice-icon svg {
            color: var(--navy);
        }

        .practice-card h3 {
            font-size: 1.4rem;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .practice-card p {
            color: var(--gray-600);
            font-size: 0.95rem;
        }

        /* Team Section */
        .team {
            padding: 140px 0;
            background: var(--white);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .team-card {
            text-align: center;
        }

        .team-image {
            position: relative;
            overflow: hidden;
            margin-bottom: 25px;
        }

        .team-image img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.05);
        }

        .team-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(26, 39, 68, 0.9));
            padding: 30px 20px 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-card:hover .team-overlay {
            opacity: 1;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .team-social a {
            width: 36px;
            height: 36px;
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.85rem;
        }

        .team-social a:hover {
            background: var(--gold);
            color: var(--navy);
        }

        .team-card h3 {
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .team-position {
            color: var(--gold);
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .team-bio {
            color: var(--gray-600);
            font-size: 0.9rem;
            margin-top: 15px;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials {
            padding: 140px 0;
            background: var(--navy);
            position: relative;
        }

        .testimonials::before {
            content: '"';
            position: absolute;
            top: 80px;
            left: 10%;
            font-family: 'Cormorant Garamond', serif;
            font-size: 400px;
            color: rgba(201, 169, 98, 0.08);
            line-height: 1;
        }

        .testimonials .section-header h2 {
            color: var(--white);
        }

        .testimonials .section-header p {
            color: rgba(255, 255, 255, 0.6);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 50px 40px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--gold);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 25px;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            color: var(--gold);
            fill: var(--gold);
        }

        .testimonial-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.05rem;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-author img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold);
        }

        .testimonial-author h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 3px;
        }

        .testimonial-author span {
            color: var(--gold);
            font-size: 0.85rem;
        }

        /* Contact Section */
        .contact {
            padding: 140px 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .contact-info h2 {
            font-size: 3rem;
            color: var(--navy);
            margin-bottom: 20px;
        }

        .contact-info > p {
            color: var(--gray-600);
            margin-bottom: 40px;
            font-size: 1.05rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: var(--gold);
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            color: var(--gold);
            transition: color 0.3s ease;
        }

        .contact-item:hover .contact-icon svg {
            color: var(--navy);
        }

        .contact-item h4 {
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .contact-item p {
            color: var(--gray-600);
            line-height: 1.6;
        }

        .contact-form {
            background: var(--cream);
            padding: 50px;
        }

        .contact-form h3 {
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: var(--navy);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid var(--gray-200);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }

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

        .form-group textarea {
            height: 150px;
            resize: none;
        }

        .form-submit {
            width: 100%;
            background: var(--navy);
            color: var(--white);
            padding: 18px;
            border: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .form-submit:hover {
            background: var(--gold);
            color: var(--navy);
        }

        /* Footer */
        .footer {
            background: var(--navy);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-about .logo {
            margin-bottom: 25px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .footer-title {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--navy);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links, .nav-cta {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-image-overlay {
                right: 20px;
                bottom: -20px;
            }

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

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                gap: 30px;
                flex-wrap: wrap;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .section-header h2,
            .about-content h2,
            .contact-info h2 {
                font-size: 2.2rem;
            }

            .practice-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .contact-form {
                padding: 30px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

       ..spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top: 2px solid #000;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.7s linear infinite;
    margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.success { color: green; }
.error { color: red; }