: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-terracotta: #B89B7A;
    --color-pink: #F4D8D4;
    --color-pink-border: #ECDAD2;
    --color-olive: #7D8B6F;
    --color-olive-light: #8A9A7B;
    --color-olive-text: #5F6B52;
    --color-forest: #4A5640;
    --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: 20px;
    --radius-lg: 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 20px 60px rgba(0, 0, 0, 0.08);
    --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);
    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 {
    width: 100%;
}

.nav-link:hover {
    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);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

/* Floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-1 {
    width: 400px;
    height: 376px;
    right: 100px;
    top: 90px;
    background: radial-gradient(ellipse at center, rgba(125, 139, 111, 0.08) 0%, rgba(125, 139, 111, 0) 70%);
    animation: floatShape1 15s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-30px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-shape-2 {
    width: 250px;
    height: 235px;
    left: 100px;
    bottom: 150px;
    background: radial-gradient(ellipse at center, rgba(184, 169, 154, 0.12) 0%, rgba(184, 169, 154, 0) 70%);
    animation: floatShape2 18s ease-in-out infinite;
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -15px) scale(1.05);
    }
    66% {
        transform: translate(-10px, 10px) scale(0.95);
    }
}

.hero-shape-3 {
    width: 150px;
    height: 141px;
    right: 200px;
    bottom: 200px;
    background: var(--color-olive);
    opacity: 0.06;
    animation: floatShape3 12s ease-in-out infinite;
}

@keyframes floatShape3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(15px, -25px) scale(1.15);
    }
}

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

.hero-content {
    max-width: 600px;
    padding-bottom: 4rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-label-line {
    width: 24px;
    height: 1.5px;
    background: var(--color-olive);
}

.hero-label-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-olive);
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-olive-text);
}

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

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.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: 0.95rem;
    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-primary {
    background: var(--color-olive);
    color: var(--color-white);
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    background: var(--color-forest);
    transform: translateY(-3px);
    box-shadow: 0px 8px 25px rgba(125, 139, 111, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--color-charcoal);
    padding: 1rem 1.5rem;
}

.btn-ghost:hover {
    color: var(--color-olive);
}

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

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

/* Background organic shape - matching Figma exactly */
.hero-bg-shape {
    position: absolute;
    width: 618px;
    height: 668px;
    left: 40px;
    top: 20px;
    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;
    }
}

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

.hero-circle-1 {
    width: 120px;
    height: 120px;
    right: -30px;
    top: 40px;
    background: #8A9A7B;
    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: 80px;
    height: 80px;
    left: 0;
    bottom: 60px;
    background: #B89B7A;
    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);
    }
}

/* Photo - large, aligned to bottom */
.hero-photo {
    position: absolute;
    width: 730px;
    height: auto;
    left: 20px;
    bottom: 0;
    z-index: 2;
    object-fit: contain;
    object-position: bottom center;
}

/* Hero Badge - positioned on left side */
.hero-badge {
    position: absolute;
    left: -17px;
    bottom: 90px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.08);
    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: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 1.5;
}

.hero-badge-content {
    display: flex;
    flex-direction: column;
}

.hero-badge-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1.2;
}

.hero-badge-label {
    font-size: 0.85rem;
    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;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    font-style: italic;
    color: var(--color-olive-light);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -1rem;
}

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

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quote-author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-olive-light) 0%, var(--color-forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.quote-author-info {
    text-align: left;
}

.quote-author-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.quote-author-title {
    font-size: 0.85rem;
    color: var(--color-earth);
}

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

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 602px 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 602px;
    height: 753px;
    background: linear-gradient(139deg, #F5F0EA 0%, #E8E2D9 100%);
    border-radius: 32px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-stats {
    position: absolute;
    right: -60px;
    bottom: 65px;
    display: flex;
    gap: 1rem;
}

.about-stat {
    background: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.06);
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-olive);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.75rem;
    color: var(--color-caramel);
    margin-top: 0.25rem;
}

.about-content {
    max-width: 602px;
    padding-left: 2rem;
}

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

.section-label-dot {
    width: 8px;
    height: 8px;
    background: var(--color-olive);
    border-radius: 50%;
}

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

.about-content h2 {
    font-size: 2.6rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-value {
    background: var(--color-white);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
}

.about-value-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.about-value-icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-olive);
    fill: none;
    stroke-width: 1.5;
}

.about-value-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.about-value-text {
    font-size: 0.85rem;
    color: var(--color-earth);
}

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

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

.services-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.05rem;
}

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

.service-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.4s var(--ease-out);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    position: relative;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-icon-shape {
    width: 100%;
    height: 100%;
    background: var(--color-pink);
    border-radius: 30% 70% 50% 50% / 50% 50% 50% 50%;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

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

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

.publications-header {
    margin-bottom: 3rem;
}

.publications-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 0.5rem;
}

.publications-header p {
    font-size: 1.05rem;
    color: var(--color-earth);
}

.publications-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.publication-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out);
}

.publication-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.publication-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-caramel);
}

.publication-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.publication-summary {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.publication-summary strong {
    font-weight: 700;
    color: var(--color-earth);
}

.publication-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.publication-tag {
    background: var(--color-bg-alt);
    color: var(--color-olive-text);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.publication-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-olive);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.publication-link:hover {
    color: var(--color-forest);
}

.publications-cta {
    margin-top: 2rem;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: 8rem 5%;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.faq-watermark {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 25rem;
    color: var(--color-olive);
    opacity: 0.03;
    pointer-events: none;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.faq-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.faq-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.faq-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-olive);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    padding-right: 1rem;
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-earth);
    padding-top: 1rem;
    border-top: 1px solid var(--color-pink-border);
}

.faq-answer strong {
    color: var(--color-charcoal);
    font-weight: 700;
}

.faq-footer {
    text-align: center;
    margin-top: 4rem;
}

.faq-footer p {
    margin-bottom: 1.25rem;
}

/* ============================================
   CORRESPONDANTS SECTION
============================================ */
.correspondants-section {
    padding: 8rem 5%;
    background: var(--color-forest);
}

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

.correspondants-content {
    color: var(--color-white);
}

.correspondants-content .section-label-dot {
    background: var(--color-olive);
}

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

.correspondants-content h2 {
    color: var(--color-white);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.correspondants-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.correspondants-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.correspondants-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
}

.correspondants-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.correspondants-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.correspondants-cta-box {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
}

.correspondants-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.correspondants-cta-box p {
    margin-bottom: 1.5rem;
}

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

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 0.75rem;
}

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

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-out);
}

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

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

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

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

.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-md);
    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: 2rem;
}

.btn-white {
    background: var(--color-white);
    color: var(--color-forest);
    width: 100%;
    justify-content: center;
}

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

.contact-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

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

/* ============================================
   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-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.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 {
        gap: 4rem;
    }

    .about-container,
    .correspondants-container,
    .contact-container {
        gap: 4rem;
    }
}

@media (max-width: 1400px) {
    .hero-container {
        grid-template-columns: minmax(400px, 550px) 1fr;
        gap: 40px;
    }

    .hero-bg-shape {
        width: 520px;
        height: 580px;
        left: 10px;
        top: 40px;
    }

    .hero-photo {
        width: 620px;
        left: -20px;
    }

    .hero-circle-1 {
        width: 100px;
        height: 100px;
        right: 0;
        top: 60px;
    }

    .about-container {
        grid-template-columns: 500px 1fr;
        gap: 4rem;
    }

    .about-image-main {
        width: 500px;
        height: 625px;
    }

    .about-stats {
        right: -40px;
        bottom: 50px;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: minmax(350px, 480px) 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-bg-shape {
        width: 450px;
        height: 520px;
        left: 0;
        top: 50px;
    }

    .hero-photo {
        width: 540px;
        left: -30px;
    }

    .hero-badge {
        left: -10px;
        bottom: 70px;
        padding: 1.25rem 1.5rem;
    }

    .hero-circle-1 {
        width: 80px;
        height: 80px;
        top: 80px;
    }

    .hero-circle-2 {
        width: 60px;
        height: 60px;
    }

    .about-container,
    .correspondants-container,
    .contact-container {
        gap: 4rem;
    }

    .about-container {
        grid-template-columns: 420px 1fr;
    }

    .about-image-main {
        width: 420px;
        height: 525px;
    }

    .about-stats {
        right: -20px;
        bottom: 40px;
    }

    .about-stat {
        padding: 1rem 1.25rem;
    }

    .about-stat-number {
        font-size: 1.75rem;
    }

    .about-content {
        padding-left: 1rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: calc(78px + 1rem);
        padding-bottom: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        gap: 2rem;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
        order: 2;
        padding-bottom: 3rem;
    }

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

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

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

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

    .hero-image-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-bg-shape {
        width: 420px;
        height: 480px;
        left: 50%;
        transform: translateX(-50%);
        top: 30px;
    }

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

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

    .hero-circle-1 {
        right: 5%;
        top: 50px;
        width: 70px;
        height: 70px;
    }

    .hero-circle-2 {
        left: 5%;
        bottom: 80px;
        width: 50px;
        height: 50px;
    }

    @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);
        }
        25% {
            border-top-left-radius: 450px;
            border-top-right-radius: 220px;
            border-bottom-right-radius: 350px;
            border-bottom-left-radius: 280px;
            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);
        }
        75% {
            border-top-left-radius: 530px;
            border-top-right-radius: 170px;
            border-bottom-right-radius: 360px;
            border-bottom-left-radius: 290px;
            transform: translateX(-50%) rotate(0deg) scale(1);
        }
    }

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

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-main {
        width: 100%;
        height: auto;
        aspect-ratio: 0.8/1;
    }

    .about-stats {
        right: 50%;
        transform: translateX(50%);
        bottom: -30px;
    }

    .about-content {
        max-width: 100%;
        padding-left: 0;
        padding-top: 3rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content h2 br {
        display: none;
    }

    .section-label {
        justify-content: center;
    }

    .about-values {
        max-width: 570px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .correspondants-cta-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .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 h1 {
        font-size: 2rem;
    }

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

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

    .hero-bg-shape {
        width: 340px;
        height: 400px;
        top: 20px;
    }

    .hero-photo {
        width: 400px;
    }

    .hero-badge {
        padding: 1rem 1.25rem;
        bottom: 30px;
        gap: 0.75rem;
    }

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

    .hero-badge-number {
        font-size: 1.25rem;
    }

    .hero-badge-label {
        font-size: 0.8rem;
    }

    .hero-shape {
        display: none;
    }

    .hero-circle-1 {
        width: 60px;
        height: 60px;
        right: 0;
        top: 30px;
    }

    .hero-circle-2 {
        display: none;
    }

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

    .about-image {
        max-width: 400px;
    }

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

    .about-stats {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .about-content {
        padding-top: 1.5rem;
    }

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

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

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

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

    .footer-copyright {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .hero-visual {
        min-height: 350px;
        max-width: 360px;
    }

    .hero-bg-shape {
        width: 290px;
        height: 350px;
        top: 15px;
    }

    .hero-photo {
        width: 340px;
    }

    .hero-badge {
        padding: 0.85rem 1.1rem;
        bottom: 25px;
    }

    .hero-circle-1 {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-left: 4%;
        padding-right: 4%;
    }

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

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        min-height: 300px;
        max-width: 320px;
    }

    .hero-bg-shape {
        width: 250px;
        height: 300px;
        top: 10px;
    }

    .hero-photo {
        width: 290px;
    }

    .hero-badge {
        padding: 0.75rem 1rem;
        gap: 0.6rem;
        bottom: 20px;
    }

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

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

    .hero-badge-number {
        font-size: 1.1rem;
    }

    .hero-badge-label {
        font-size: 0.7rem;
    }

    .hero-circle-1 {
        width: 40px;
        height: 40px;
        top: 20px;
    }

    .about-image {
        max-width: 100%;
    }

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

    .about-stat {
        padding: 0.85rem 1rem;
    }

    .about-stat-number {
        font-size: 1.5rem;
    }

    .about-stat-label {
        font-size: 0.7rem;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }
}

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

    .hero-bg-shape {
        width: 220px;
        height: 260px;
    }

    .hero-photo {
        width: 255px;
    }

    .hero-badge {
        padding: 0.6rem 0.85rem;
        bottom: 15px;
    }

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

    .hero-badge-number {
        font-size: 1rem;
    }

    .hero-badge-label {
        font-size: 0.65rem;
    }
}
