:root {
            --primary: #1a365d;
            --primary-dark: #0f1f3a;
            --primary-light: #2c5282;
            --accent: #c5a47e;
            --accent-dark: #a0805a;
            --text: #2d3748;
            --text-light: #718096;
            --bg: #ffffff;
            --bg-light: #f7fafc;
            --border: #e2e8f0;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: var(--bg);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            color: var(--primary);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 0 5%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 42px; height: 42px;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s;
        }

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

        .nav-links a:hover { color: var(--primary); }
        .nav-links a:hover::after { width: 100%; }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .hero-content { position: relative; z-index: 1; max-width: 900px; }

        .hero-badge {
            display: inline-block;
            padding: 8px 24px;
            border: 1px solid rgba(255,255,255,0.3);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 30px;
            color: var(--accent);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: white;
            margin-bottom: 20px;
            line-height: 1.1;
            font-weight: 700;
        }

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

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.85;
            max-width: 600px;
            margin: 0 auto 40px;
            font-weight: 300;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .stat-item h3 {
            font-size: 3rem;
            color: var(--accent);
            font-weight: 700;
        }

        .stat-item p {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
        }

        .btn {
            display: inline-block;
            padding: 14px 40px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--primary-dark);
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
            margin-left: 15px;
        }

        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Section Styles */
        section { padding: 100px 5%; }

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

        .section-label {
            display: inline-block;
            color: var(--accent-dark);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

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

        /* About Section */
        .about-section { background: var(--bg-light); }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            min-height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image-inner {
            width: 85%; height: 85%;
            border: 3px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            text-align: center;
            padding: 40px;
        }

        .about-image-inner .year {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
        }

        .about-image-inner .year-label {
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .values-list {
            list-style: none;
            margin-top: 30px;
        }

        .values-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .values-list li::before {
            content: '✓';
            width: 28px; height: 28px;
            background: var(--accent);
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        /* Practice Areas */
        .practice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .practice-card {
            background: var(--bg);
            border: 1px solid var(--border);
            padding: 50px 40px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

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

        .practice-card:hover {
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

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

        .practice-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--accent-dark);
        }

        .practice-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

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

        .practice-list {
            list-style: none;
            margin-top: 20px;
        }

        .practice-list li {
            padding: 8px 0;
            font-size: 0.9rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .practice-list li::before {
            content: '›';
            color: var(--accent);
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* Team Section */
        .team-section { background: var(--bg-light); }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-card {
            background: var(--bg);
            text-align: center;
            padding: 50px 30px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .team-card:hover {
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

        .team-avatar {
            width: 100px; height: 100px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .team-card h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .team-role {
            color: var(--accent-dark);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .team-divider {
            width: 40px; height: 2px;
            background: var(--accent);
            margin: 20px auto;
        }

        .team-card p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border);
        }

        .contact-item:last-child { border-bottom: none; }

        .contact-icon {
            width: 50px; height: 50px;
            background: var(--bg-light);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--accent-dark);
            flex-shrink: 0;
        }

        .contact-item h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .contact-item p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .contact-form {
            background: var(--bg-light);
            padding: 50px;
            border: 1px solid var(--border);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--border);
            background: var(--bg);
            font-family: 'Open Sans', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }

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

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

        /* Footer */
        .footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.7);
            padding: 60px 5% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.8;
            max-width: 300px;
        }

        .footer h4 {
            color: white;
            font-size: 1rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Open Sans', sans-serif;
            font-weight: 600;
        }

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

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

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

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 0.85rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Mobile Responsive */
        @media (max-width: 900px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .about-grid,
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .hero-stats { gap: 30px; }
            .btn-outline { margin-left: 0; margin-top: 15px; }
        }

        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .practice-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.2rem; }
            .section-header h2 { font-size: 2rem; }
            .contact-form { padding: 30px 20px; }
        }

        /* Smooth scroll offset for fixed nav */
        section[id] { scroll-margin-top: 80px; }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 80px; left: 0; right: 0;
            background: white;
            border-bottom: 1px solid var(--border);
            padding: 30px;
            display: none;
            z-index: 999;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .mobile-menu.active { display: block; }

        .mobile-menu a {
            display: block;
            padding: 15px 0;
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            border-bottom: 1px solid var(--border);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .mobile-menu a:last-child { border-bottom: none; }