
        :root {
            --color-ivory: #FFFEF9;
            --color-cream: #F7F4EF;
            --color-champagne: #F5E6D3;
            --color-gold: #C9A962;
            --color-gold-dark: #A88B4A;
            --color-sage: #8FA67A;
            --color-sage-light: #B8CDA8;
            --color-eucalyptus: #6B8E7B;
            --color-rose: #D4A5A5;
            --color-rose-dark: #C08B8B;
            --color-charcoal: #2A2A2A;
            --color-warm-gray: #5C564F;
            --color-light-gray: #9A948C;
            --font-display: 'Playfair Display', serif;
            --font-body: 'DM Sans', sans-serif;
            --shadow-soft: 0 4px 20px rgba(42, 42, 42, 0.08);
            --shadow-medium: 0 8px 40px rgba(42, 42, 42, 0.12);
            --shadow-glow: 0 0 60px rgba(201, 169, 98, 0.15);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-ivory);
            color: var(--color-charcoal);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Noise Texture Overlay */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.02;
            pointer-events: none;
            z-index: 1000;
        }

        /* Animated Gradient Background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(143, 166, 122, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(212, 165, 165, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
            animation: gradientShift 15s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Floating Elements */
        .floating-elements {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: floatAround 25s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            width: 400px;
            height: 400px;
            background: var(--color-sage-light);
            opacity: 0.3;
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            width: 300px;
            height: 300px;
            background: var(--color-rose);
            opacity: 0.25;
            top: 60%;
            right: -5%;
            animation-delay: -8s;
        }

        .floating-shape:nth-child(3) {
            width: 250px;
            height: 250px;
            background: var(--color-gold);
            opacity: 0.2;
            bottom: 10%;
            left: 30%;
            animation-delay: -16s;
        }

        @keyframes floatAround {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(50px, -30px) rotate(5deg); }
            50% { transform: translate(-30px, 50px) rotate(-5deg); }
            75% { transform: translate(30px, 30px) rotate(3deg); }
        }

        /* Container */
        .container {
            max-width: 520px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 16px 24px;
            transition: all 0.4s ease;
        }

        .nav.scrolled {
            background: rgba(255, 254, 249, 0.9);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-soft);
        }

        .nav-content {
            max-width: 520px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--color-charcoal);
            text-decoration: none;
            letter-spacing: 0.02em;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--color-charcoal);
            color: var(--color-ivory);
            border-radius: 100px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
        }

        .nav-cta i {
            width: 16px;
            height: 16px;
        }

        .nav-cta:hover {
            background: var(--color-gold-dark);
            transform: scale(1.05);
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 60px;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(201, 169, 98, 0.15);
            border: 1px solid rgba(201, 169, 98, 0.3);
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-gold-dark);
            margin-bottom: 32px;
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-badge i {
            width: 14px;
            height: 14px;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .profile-container {
            position: relative;
            width: 200px;
            height: 200px;
            margin: 0 auto 36px;
            animation: fadeInScale 1s ease-out 0.2s backwards;
        }

        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        .profile-glow {
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }

        .profile-ring-outer {
            position: absolute;
            inset: -12px;
            border-radius: 50%;
            border: 1px solid rgba(201, 169, 98, 0.3);
            animation: rotate 30s linear infinite;
        }

        .profile-ring-outer::before,
        .profile-ring-outer::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--color-gold);
            border-radius: 50%;
        }

        .profile-ring-outer::before {
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
        }

        .profile-ring-outer::after {
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
        }

        .profile-ring-inner {
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid var(--color-gold);
            animation: rotate 20s linear infinite reverse;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--color-ivory);
            box-shadow: var(--shadow-medium);
            position: relative;
            z-index: 1;
        }

        .hero-name {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 400;
            color: var(--color-charcoal);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .hero-title {
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--color-light-gray);
            margin-bottom: 28px;
            animation: fadeInUp 0.8s ease-out 0.5s backwards;
        }

        .hero-bio {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-style: italic;
            font-weight: 400;
            color: var(--color-warm-gray);
            max-width: 380px;
            margin: 0 auto 36px;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            animation: fadeInUp 0.8s ease-out 0.7s backwards;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 500;
            color: var(--color-gold-dark);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-light-gray);
            margin-top: 4px;
        }

        /* Section Divider */
        .divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 48px 0;
        }

        .divider-line {
            width: 80px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-champagne), transparent);
        }

        .divider-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-cream);
            border: 1px solid var(--color-champagne);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .divider-icon i {
            width: 18px;
            height: 18px;
            color: var(--color-gold);
        }

        /* Section Title */
        .section-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .section-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--color-gold-dark);
            margin-bottom: 8px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--color-charcoal);
        }

        /* Services Grid */
        .services-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 28px;
            text-decoration: none;
            color: inherit;
            border: 1px solid rgba(201, 169, 98, 0.15);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-sage) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-glow);
            border-color: var(--color-gold);
        }

        .service-card:hover::before {
            opacity: 0.05;
        }

        .service-content {
            position: relative;
            z-index: 1;
        }

        .service-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .service-icon-wrapper {
            position: relative;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .service-icon.gold {
            background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
            box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
        }

        .service-icon.sage {
            background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-eucalyptus) 100%);
            box-shadow: 0 8px 24px rgba(143, 166, 122, 0.3);
        }

        .service-icon.rose {
            background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
            box-shadow: 0 8px 24px rgba(212, 165, 165, 0.3);
        }

        .service-icon i {
            width: 28px;
            height: 28px;
            color: white;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .service-badge {
            padding: 6px 12px;
            background: var(--color-cream);
            border-radius: 100px;
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-gold-dark);
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--color-charcoal);
            margin-bottom: 8px;
        }

        .service-description {
            font-size: 0.9rem;
            font-weight: 300;
            color: var(--color-warm-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .service-features {
            display: flex;
            gap: 16px;
        }

        .service-feature {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            color: var(--color-light-gray);
        }

        .service-feature i {
            width: 14px;
            height: 14px;
            color: var(--color-sage);
        }

        .service-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-cream);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .service-arrow i {
            width: 18px;
            height: 18px;
            color: var(--color-charcoal);
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-arrow {
            background: var(--color-gold);
        }

        .service-card:hover .service-arrow i {
            color: white;
            transform: translateX(3px);
        }

        /* Featured Service */
        .service-featured {
            background: linear-gradient(135deg, var(--color-charcoal) 0%, #3D3D3D 100%);
            border: none;
        }

        .service-featured .service-title,
        .service-featured .service-description,
        .service-featured .service-feature {
            color: rgba(255, 255, 255, 0.9);
        }

        .service-featured .service-badge {
            background: rgba(201, 169, 98, 0.2);
            color: var(--color-gold);
        }

        .service-featured .service-feature i {
            color: var(--color-gold);
        }

        .service-featured .service-arrow {
            background: rgba(255, 255, 255, 0.1);
        }

        .service-featured .service-arrow i {
            color: white;
        }

        .service-featured:hover .service-arrow {
            background: var(--color-gold);
        }

        /* Treatments Section */
        .treatments {
            padding: 20px 0;
        }

        .treatment-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 10px 0 20px;
            margin: 0 -24px;
            padding-left: 24px;
            padding-right: 24px;
            scrollbar-width: none;
        }

        .treatment-scroll::-webkit-scrollbar {
            display: none;
        }

        .treatment-card {
            flex-shrink: 0;
            width: 160px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 24px 20px;
            text-align: center;
            border: 1px solid rgba(201, 169, 98, 0.1);
            transition: all 0.4s ease;
        }

        .treatment-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-soft);
            border-color: var(--color-gold);
        }

        .treatment-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 16px;
            border-radius: 16px;
            background: var(--color-cream);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .treatment-icon i {
            width: 24px;
            height: 24px;
            color: var(--color-gold-dark);
        }

        .treatment-name {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-charcoal);
            margin-bottom: 4px;
        }

        .treatment-time {
            font-size: 0.7rem;
            color: var(--color-light-gray);
        }

        /* Testimonials */
        .testimonials {
            padding: 20px 0 40px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 32px;
            margin-bottom: 16px;
            border: 1px solid rgba(201, 169, 98, 0.1);
            position: relative;
        }

        .testimonial-quote {
            position: absolute;
            top: 24px;
            right: 28px;
            width: 32px;
            height: 32px;
            color: var(--color-champagne);
        }

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

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

        .testimonial-text {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-style: italic;
            font-weight: 400;
            color: var(--color-charcoal);
            line-height: 1.7;
            margin-bottom: 20px;
        }

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

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-rose) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            color: white;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--color-charcoal);
        }

        .testimonial-date {
            font-size: 0.75rem;
            color: var(--color-light-gray);
        }

        /* Gallery */
        .gallery {
            padding: 20px 0 40px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .gallery-item {
            aspect-ratio: 1;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(42, 42, 42, 0.4) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .gallery-item.large {
            grid-column: span 2;
            grid-row: span 2;
            border-radius: 24px;
        }

        /* FAQ Section */
        .faq {
            padding: 20px 0 40px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 16px;
            margin-bottom: 12px;
            border: 1px solid rgba(201, 169, 98, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(201, 169, 98, 0.3);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-body);
        }

        .faq-question span {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--color-charcoal);
        }

        .faq-question i {
            width: 20px;
            height: 20px;
            color: var(--color-gold);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer p {
            padding: 0 24px 20px;
            font-size: 0.9rem;
            color: var(--color-warm-gray);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        /* Location */
        .location {
            padding: 20px 0 40px;
        }

        .location-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 28px;
            border: 1px solid rgba(201, 169, 98, 0.1);
        }

        .location-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .location-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-icon i {
            width: 24px;
            height: 24px;
            color: white;
        }

        .location-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--color-charcoal);
        }

        .location-subtitle {
            font-size: 0.85rem;
            color: var(--color-light-gray);
        }

        .location-details {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .location-detail {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: var(--color-warm-gray);
        }

        .location-detail i {
            width: 18px;
            height: 18px;
            color: var(--color-sage);
        }

        /* CTA Section */
        .cta-section {
            padding: 40px 0;
        }

        .cta-card {
            background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
            border-radius: 32px;
            padding: 48px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            inset: 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.05'%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");
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-icon i {
            width: 32px;
            height: 32px;
            color: white;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 500;
            color: white;
            margin-bottom: 12px;
        }

        .cta-text {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 28px;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: white;
            color: var(--color-gold-dark);
            border-radius: 100px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .cta-button i {
            width: 20px;
            height: 20px;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        }

        /* Social Links */
        .social-section {
            padding: 20px 0 40px;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .social-link {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(201, 169, 98, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.4s ease;
        }

        .social-link i {
            width: 24px;
            height: 24px;
            color: var(--color-warm-gray);
            transition: color 0.3s ease;
        }

        .social-link:hover {
            background: var(--color-charcoal);
            border-color: var(--color-charcoal);
            transform: translateY(-4px);
        }

        .social-link:hover i {
            color: white;
        }

        /* Footer */
        .footer {
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(201, 169, 98, 0.15);
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--color-charcoal);
            margin-bottom: 8px;
        }

        .footer-tagline {
            font-size: 0.8rem;
            color: var(--color-light-gray);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .footer-legal {
            font-size: 0.75rem;
            color: var(--color-light-gray);
        }

        .footer-legal a {
            color: var(--color-gold-dark);
            text-decoration: none;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 480px) {
            .hero-name {
                font-size: 2.4rem;
            }

            .hero-stats {
                gap: 24px;
            }

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

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

            .gallery-item.large {
                grid-column: span 2;
                grid-row: span 1;
            }

            .cta-card {
                padding: 36px 24px;
            }

            .cta-title {
                font-size: 1.5rem;
            }
        }
    