        :root {
            --color-bg: #FAF5F1;
            --color-bg-alt: #FAF8F5;
            --color-bg-warm: #FAF6F1;
            --color-cream: #F5EDE4;
            --color-cream-light: #F5F0EA;
            --color-sand: #E8DED2;
            --color-sand-dark: #E8E2D9;
            --color-caramel: #B8A99A;
            --color-caramel-light: #C9B8A8;
            --color-terracotta: #B89B7A;
            --color-pink: #F4D8D4;
            --color-pink-border: #ECDAD2;
            --color-olive: #7D8B6F;
            --color-olive-light: #8A9A7B;
            --color-olive-text: #6B7A5D;
            --color-forest: #4A5640;
            --color-forest-dark: #5C6B4E;
            --color-earth: #6B5F54;
            --color-earth-dark: #6B5B4F;
            --color-charcoal: #3A3632;
            --color-white: #FFFFFF;
            
            --font-display: 'Libre Baskerville', Georgia, serif;
            --font-body: 'DM Sans', system-ui, sans-serif;
            
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --radius-full: 100px;
            
            --shadow-sm: 0px 4px 20px rgba(0, 0, 0, 0.04);
            --shadow-md: 0px 15px 40px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0px 15px 40px rgba(58, 54, 50, 0.12);
            --shadow-card: 0px 20px 50px rgba(125, 139, 111, 0.12);
            --shadow-btn: 0px 4px 15px rgba(125, 139, 111, 0.20);
            
            --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

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

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 400;
            line-height: 1.3;
            color: var(--color-charcoal);
        }

        p {
            color: var(--color-earth);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ============================================
           NAVIGATION
        ============================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.25rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-logo-icon {
            width: 38px;
            height: 38px;
            background: var(--color-olive);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .nav-logo-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--color-pink);
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-size: 1.15rem;
            color: var(--color-charcoal);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.3rem;
            list-style: none;
        }

        .nav-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-earth);
            transition: color 0.3s var(--ease-out);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-olive);
            border-radius: 2px;
            transition: width 0.3s var(--ease-out);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--color-charcoal);
        }

        .nav-cta {
            background: var(--color-charcoal);
            color: var(--color-white);
            padding: 0.55rem 1.5rem;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s var(--ease-out);
        }

        .nav-cta:hover {
            background: var(--color-olive);
            transform: translateY(-2px);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--color-charcoal);
            border-radius: 2px;
            transition: all 0.3s var(--ease-out);
        }

        /* ============================================
           HERO SECTION
        ============================================ */
        .hero {
            min-height: 100vh;
            padding: calc(78px + 2rem) 5% 0;
            position: relative;
            overflow: hidden;
            background: var(--color-bg-warm);
        }

        .hero-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 554px 1fr;
            gap: 64px;
            align-items: center;
            min-height: calc(100vh - 78px - 2rem);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            height: 100%;
            min-height: 700px;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-bg-shape {
            position: absolute;
            width: 580px;
            height: 650px;
            left: -80px;
            bottom: 0;
            background: linear-gradient(129deg, #F5EDE4 0%, #E8DED2 100%);
            border-top-left-radius: 510px;
            border-top-right-radius: 185px;
            border-bottom-right-radius: 382px;
            border-bottom-left-radius: 313px;
            z-index: 1;
            animation: morphShape 12s ease-in-out infinite;
        }

        @keyframes morphShape {
            0%, 100% {
                border-top-left-radius: 510px;
                border-top-right-radius: 185px;
                border-bottom-right-radius: 382px;
                border-bottom-left-radius: 313px;
                transform: rotate(0deg) scale(1);
            }
            25% {
                border-top-left-radius: 450px;
                border-top-right-radius: 220px;
                border-bottom-right-radius: 350px;
                border-bottom-left-radius: 280px;
            }
            50% {
                border-top-left-radius: 480px;
                border-top-right-radius: 200px;
                border-bottom-right-radius: 400px;
                border-bottom-left-radius: 350px;
                transform: rotate(1deg) scale(1.01);
            }
            75% {
                border-top-left-radius: 530px;
                border-top-right-radius: 170px;
                border-bottom-right-radius: 360px;
                border-bottom-left-radius: 290px;
            }
        }

        .hero-circle {
            position: absolute;
            border-radius: 50%;
            z-index: 0;
        }

        .hero-circle-1 {
            width: 100px;
            height: 100px;
            right: 30px;
            top: 20px;
            background: var(--color-olive-light);
            opacity: 0.15;
            animation: floatCircle1 8s ease-in-out infinite;
        }

        @keyframes floatCircle1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-10px, 15px) scale(1.05); }
            66% { transform: translate(5px, -10px) scale(0.98); }
        }

        .hero-circle-2 {
            width: 70px;
            height: 70px;
            left: -20px;
            bottom: 120px;
            background: var(--color-terracotta);
            opacity: 0.20;
            animation: floatCircle2 10s ease-in-out infinite;
        }

        @keyframes floatCircle2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(15px, -20px) scale(1.08); }
        }

        .hero-photo {
            position: absolute;
            width: 750px;
            height: auto;
            left: -60px;
            bottom: 0;
            z-index: 2;
            object-fit: contain;
            object-position: bottom center;
        }

        .hero-badge {
            position: absolute;
            left: -32px;
            bottom: 80px;
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: var(--shadow-lg);
            z-index: 3;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .hero-badge-icon {
            width: 44px;
            height: 44px;
            background: var(--color-cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-badge-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--color-olive-text);
            fill: none;
            stroke-width: 1.25;
        }

        .hero-badge-content h4 {
            font-family: var(--font-display);
            font-size: 1.125rem;
            color: var(--color-charcoal);
            line-height: 1.7;
        }

        .hero-badge-content span {
            font-size: 0.75rem;
            color: var(--color-caramel-light);
        }

        /* Hero Content */
        .hero-content {
            max-width: 550px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.8rem;
        }

        .breadcrumb a {
            color: var(--color-olive-light);
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--color-olive);
        }

        .breadcrumb span {
            color: var(--color-caramel);
        }

        .hero-content h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .hero-subtitle {
            font-family: var(--font-display);
            font-style: italic;
            font-size: 1.15rem;
            color: var(--color-olive-text);
            margin-bottom: 1.5rem;
            line-height: 1.75;
        }

        .hero-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--color-earth-dark);
            margin-bottom: 2rem;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .hero-tag {
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 500;
        }

        .hero-tag.primary {
            background: var(--color-olive-light);
            color: var(--color-white);
        }

        .hero-tag.secondary {
            background: var(--color-cream);
            color: var(--color-earth-dark);
        }

        .hero-languages {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--color-sand);
        }

        .hero-languages-label {
            font-size: 0.8rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-caramel);
        }

        .hero-languages-list {
            display: flex;
            gap: 0.5rem;
        }

        .hero-languages-list span {
            font-size: 0.9rem;
            color: var(--color-charcoal);
        }

        /* ============================================
           QUOTE SECTION
        ============================================ */
        .quote-section {
            padding: 6rem 5%;
            background: var(--color-white);
        }

        .quote-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .quote-mark {
            font-family: var(--font-display);
            font-size: 5rem;
            font-style: italic;
            color: var(--color-olive-light);
            opacity: 0.2;
            line-height: 1;
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
        }

        .quote-text {
            font-family: var(--font-display);
            font-size: 2rem;
            font-style: italic;
            color: var(--color-charcoal);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .quote-author {
            font-size: 0.9rem;
            color: var(--color-caramel);
        }

        /* ============================================
           EXPERTISE SECTION
        ============================================ */
        .expertise-section {
            padding: 5rem 5%;
            background: var(--color-bg-warm);
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .section-label-text {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-olive-light);
        }

        .section-header h2 {
            font-size: 2.2rem;
            line-height: 1.3;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .expertise-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid var(--color-sand);
            transition: all 0.4s var(--ease-out);
            text-decoration: none;
            display: block;
            color: inherit;
            cursor: pointer;
        }

        .expertise-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-card);
        }

        a.expertise-card,
        a.expertise-card:hover,
        a.expertise-card:visited {
            text-decoration: none;
            color: inherit;
        }

        a.expertise-card h3 {
            color: var(--color-charcoal);
        }

        a.expertise-card p {
            color: var(--color-earth);
        }

        .expertise-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
        }

        .expertise-icon img {
            width: 70px;
            height: 70px;
        }

        .expertise-icon svg {
            width: 35px;
            height: 35px;
        }

        .expertise-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .expertise-card p {
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ============================================
           TIMELINE SECTION
        ============================================ */
        .timeline-section {
            padding: 5rem 5%;
            background: var(--color-cream);
        }

        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline {
            position: relative;
            padding-left: 48px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--color-sand);
        }

        .timeline-item {
            position: relative;
            padding-bottom: 3rem;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: -50px;
            top: 4px;
            width: 20px;
            height: 20px;
            background: var(--color-forest-dark);
            border-radius: 50%;
            border: 3px solid var(--color-cream);
            box-shadow: 0 0 0 4px rgba(92, 107, 78, 0.2);
        }

        .timeline-dot.small {
            width: 16px;
            height: 16px;
            left: -48px;
            background: var(--color-olive-light);
            box-shadow: none;
        }

        .timeline-date {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-olive-text);
            margin-bottom: 0.25rem;
        }

        .timeline-content {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 1.5rem;
        }

        .timeline-content h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            line-height: 1.4;
        }

        .timeline-content .location {
            font-size: 0.9rem;
            color: var(--color-caramel);
            margin-bottom: 0.25rem;
        }

        .timeline-content p {
            font-size: 0.9rem;
            line-height: 1.75;
        }

        .timeline-badge {
            display: inline-block;
            padding: 0.25rem 0.6rem;
            background: var(--color-olive-light);
            color: var(--color-white);
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: var(--radius-full);
            margin-top: 0.5rem;
        }

        /* ============================================
           FORMATION SECTION
        ============================================ */
        .formation-section {
            padding: 5rem 5%;
            background: var(--color-bg-warm);
        }

        .formation-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .formation-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
        }

        .formation-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--color-cream);
            margin-bottom: 2rem;
        }

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

        .formation-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-olive-text);
            fill: none;
            stroke-width: 1.5;
        }

        .formation-header h3 {
            font-size: 1.2rem;
        }

        .formation-list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .formation-item {
            display: flex;
            gap: 1rem;
        }

        .formation-bullet {
            width: 8px;
            height: 8px;
            background: var(--color-olive-light);
            border-radius: 50%;
            margin-top: 0.5rem;
            flex-shrink: 0;
        }

        .formation-item-content h4 {
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-charcoal);
            margin-bottom: 0.25rem;
        }

        .formation-item-content span {
            font-size: 0.85rem;
            color: var(--color-caramel);
        }

        /* ============================================
           PUBLICATIONS SECTION
        ============================================ */
        .publications-section {
            padding: 5rem 5%;
            background: var(--color-forest-dark);
        }

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

        .publications-section .section-label-text {
            color: rgba(255, 255, 255, 0.6);
        }

        .publications-section .section-header p {
            color: rgba(255, 255, 255, 0.8);
        }

        .publications-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .publication-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            transition: all 0.3s var(--ease-out);
        }

        .publication-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateX(8px);
        }

        .publication-year {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-olive-light);
            opacity: 0.8;
            min-width: 60px;
        }

        .publication-content {
            flex: 1;
        }

        .publication-content h4 {
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-white);
            margin-bottom: 0.25rem;
        }

        .publication-content span {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .publication-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .publication-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .publication-link svg {
            width: 18px;
            height: 18px;
            stroke: var(--color-white);
            fill: none;
            stroke-width: 1.5;
        }

        /* ============================================
           AWARD SECTION
        ============================================ */
        .award-section {
            padding: 5rem 5%;
            background: var(--color-bg-warm);
        }

        .award-card {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(166deg, var(--color-cream) 0%, var(--color-white) 100%);
            border-radius: var(--radius-lg);
            padding: 3rem;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .award-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--color-olive-light) 0%, var(--color-forest-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .award-icon svg {
            width: 50px;
            height: 50px;
            stroke: var(--color-white);
            fill: none;
            stroke-width: 2;
        }

        .award-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .award-content p {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .award-content .year {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-olive-text);
        }

        /* ============================================
           CONTACT SECTION
        ============================================ */
        .contact-section {
            padding: 5rem 5%;
            background: var(--color-white);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .contact-info > p {
            font-size: 1.05rem;
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--color-bg-warm);
            padding: 1rem;
            border-radius: var(--radius-md);
            transition: transform 0.3s var(--ease-out);
        }

        .contact-card:hover {
            transform: translateX(8px);
        }

        .contact-card-icon {
            width: 45px;
            height: 45px;
            background: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-card-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--color-olive-text);
            fill: none;
            stroke-width: 1.25;
        }

        .contact-card-label {
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-caramel);
            margin-bottom: 0.15rem;
        }

        .contact-card-value {
            font-size: 1rem;
            color: var(--color-charcoal);
        }

        .contact-cta-box {
            background: linear-gradient(141deg, var(--color-olive) 0%, var(--color-forest) 100%);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            color: var(--color-white);
            text-align: center;
        }

        .contact-cta-box h3 {
            color: var(--color-white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .contact-cta-box > p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1.5rem;
        }

        .contact-cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.15);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
        }

        .contact-cta-badge svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.35s var(--ease-out);
            border: none;
        }

        .btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
        }

        .btn-white {
            background: var(--color-white);
            color: var(--color-forest-dark);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .contact-hours {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 1.5rem;
        }

        .contact-hours-label {
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
        }

        .contact-hours-value {
            font-size: 0.95rem;
        }

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            background: var(--color-charcoal);
            color: var(--color-caramel);
            padding: 6rem 5% 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            margin-top: 1rem;
            max-width: 280px;
            line-height: 1.7;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.2rem;
            color: var(--color-white);
        }

        .footer-column h4 {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-white);
            margin-bottom: 1.25rem;
        }

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

        .footer-links li {
            margin-bottom: 0.6rem;
        }

        .footer-links a {
            font-size: 0.9rem;
            transition: color 0.3s var(--ease-out);
        }

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

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

        .footer-copyright {
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .footer-docto {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .footer-docto-icon {
            width: 18px;
            height: 18px;
            background: #F1FCAC;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-docto-icon span {
            font-size: 10px;
            font-weight: 700;
            color: #000;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            font-size: 0.85rem;
            transition: color 0.3s var(--ease-out);
        }

        .footer-legal a:hover {
            color: var(--color-white);
        }

        /* ============================================
           ANIMATIONS
        ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s var(--ease-out);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 480px 1fr;
                gap: 40px;
            }

            .hero-bg-shape {
                width: 550px;
                height: 600px;
                left: -40px;
                bottom: 0;
            }

            .hero-photo {
                width: 620px;
                left: -40px;
                bottom: 0;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                min-height: auto;
            }

            .hero-visual {
                order: 1;
                min-height: 480px;
                justify-content: center;
                width: 100%;
                max-width: 550px;
                margin: 0 auto;
            }

            .hero-bg-shape {
                width: 450px;
                height: 500px;
                left: 50%;
                transform: translateX(-50%);
                bottom: 0;
            }

            .hero-photo {
                width: 520px;
                left: 50%;
                transform: translateX(-50%);
                bottom: 0;
            }

            .hero-badge {
                left: 50%;
                transform: translateX(-50%);
                bottom: 40px;
            }

            @keyframes float {
                0%, 100% { transform: translateX(-50%) translateY(0); }
                50% { transform: translateX(-50%) translateY(-10px); }
            }

            @keyframes morphShape {
                0%, 100% {
                    border-top-left-radius: 510px;
                    border-top-right-radius: 185px;
                    border-bottom-right-radius: 382px;
                    border-bottom-left-radius: 313px;
                    transform: translateX(-50%) rotate(0deg) scale(1);
                }
                50% {
                    border-top-left-radius: 480px;
                    border-top-right-radius: 200px;
                    border-bottom-right-radius: 400px;
                    border-bottom-left-radius: 350px;
                    transform: translateX(-50%) rotate(1deg) scale(1.01);
                }
            }

            .hero-content {
                order: 2;
                max-width: 100%;
                padding-bottom: 3rem;
            }

            .breadcrumb {
                justify-content: center;
            }

            .hero-tags {
                justify-content: center;
            }

            .hero-languages {
                justify-content: center;
            }

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

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

            .contact-container {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 350px;
                height: 100vh;
                background: var(--color-bg);
                flex-direction: column;
                justify-content: center;
                gap: 2rem;
                transition: right 0.4s var(--ease-out);
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-toggle {
                display: flex;
            }

            .hero-visual {
                min-height: 450px;
                max-width: 400px;
            }

            .hero-bg-shape {
                width: 360px;
                height: 420px;
            }

            .hero-photo {
                width: 440px;
                bottom: 0;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .quote-text {
                font-size: 1.5rem;
            }

            .expertise-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }

            .award-card {
                flex-direction: column;
                text-align: center;
            }

            .footer-top {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p {
                max-width: 100%;
            }

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

        @media (max-width: 480px) {
            .hero-visual {
                min-height: 380px;
                max-width: 320px;
            }

            .hero-bg-shape {
                width: 290px;
                height: 340px;
            }

            .hero-photo {
                width: 360px;
                bottom: 0;
            }

            .hero-badge {
                padding: 0.75rem 1rem;
                gap: 0.5rem;
            }

            .hero-badge-icon {
                width: 38px;
                height: 38px;
            }

            .hero-badge-content h4 {
                font-size: 0.95rem;
            }

            .hero-content h1 {
                font-size: 1.75rem;
            }

            .hero-tags {
                flex-direction: column;
                align-items: center;
            }

            .hero-languages {
                flex-direction: column;
                gap: 0.5rem;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }
        }
