:root {
            --cream: #faf8f5;
            --charcoal: #2a2a2a;
            --earth: #8b7355;
            --soft-gray: #666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            background: var(--cream);
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 3rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        /* Subtle background texture */
        .container::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0,0,0,0.01) 2px,
                    rgba(0,0,0,0.01) 4px
                );
            pointer-events: none;
            z-index: 0;
        }

        .content {
            position: relative;
            z-index: 1;
            text-align: center;
            animation: fadeIn 1.2s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .photo-container {
            width: 140px;
            height: 140px;
            margin: 0 auto 2.5rem;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--earth);
            opacity: 0;
            animation: fadeIn 1s ease-out 0.3s forwards;
        }

        .photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%);
        }

        h1 {
            font-family: 'Crimson Pro', serif;
            font-size: clamp(2rem, 5vw, 2.8rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: var(--charcoal);
            opacity: 0;
            animation: fadeIn 1s ease-out 0.5s forwards;
        }

        .credentials {
            font-size: 0.9rem;
            color: var(--soft-gray);
            margin-bottom: 3rem;
            letter-spacing: 0.05em;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.7s forwards;
        }

        .tagline {
            font-family: 'Crimson Pro', serif;
            font-size: clamp(1.1rem, 3vw, 1.35rem);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto 4rem;
            color: var(--charcoal);
            font-weight: 300;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.9s forwards;
        }

        .testimonial {
            max-width: 550px;
            margin: 0 auto 4rem;
            padding: 2rem;
            background: rgba(139, 115, 85, 0.04);
            border-left: 2px solid var(--earth);
            font-style: italic;
            color: var(--soft-gray);
            font-size: 0.95rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.1s forwards;
        }

        .testimonial-author {
            margin-top: 1rem;
            font-style: normal;
            font-size: 0.85rem;
            color: var(--earth);
            letter-spacing: 0.05em;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--charcoal);
            color: var(--cream);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 0.05em;
            font-size: 0.95rem;
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.3s forwards;
        }

        .cta-button:hover {
            background: var(--earth);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.5s forwards;
        }

        .contact-info a {
            color: var(--soft-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            letter-spacing: 0.02em;
        }

        .contact-info a:hover {
            color: var(--earth);
        }

        .divider {
            width: 60px;
            height: 1px;
            background: var(--earth);
            margin: 3rem auto;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.7s forwards;
        }

        @media (max-width: 640px) {
            .container {
                padding: 2rem 1.5rem;
            }

            .photo-container {
                width: 120px;
                height: 120px;
            }

            .tagline {
                margin-bottom: 3rem;
            }

            .testimonial {
                padding: 1.5rem;
                margin-bottom: 3rem;
            }

            .contact-info {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
        }