@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --bg-color: #ffffff;
    --section-bg: #f9f9f9;
    --text-primary: #2c2c2c;
    --text-secondary: #555555;
    --accent-gold: #bfa05f;
    --accent-dark: #1a1a1a;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s ease;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.8;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 4rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    max-width: 1400px;
    padding: 0 40px;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--text-secondary);
}

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

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('bg_boutique.png') no-repeat center center/cover;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.hero h1 span {
    font-style: italic;
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
}

.btn-luxury {
    display: inline-block;
    padding: 18px 40px;
    background: var(--text-primary);
    color: white;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--text-primary);
    transition: var(--transition);
}

.btn-luxury:hover {
    background: transparent;
    color: var(--text-primary);
}

/* Quote Section */
.quote-section {
    padding: 120px 0;
    text-align: center;
    background: white;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.quote-highlight {
    color: var(--accent-gold);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--section-bg);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* What We Are */
.identity-list {
    list-style: none;
    margin-top: 30px;
}

.identity-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-secondary);
}

.identity-list li strong {
    color: var(--text-primary);
}

/* Problems IA */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.problem-card {
    padding: 40px;
    background: white;
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.num-accent {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.3;
    display: block;
    margin-bottom: 10px;
}

/* Inspiration Numbers */
.stats-section {
    background: var(--text-primary);
    color: white;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item h3 {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 0px;
}

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

/* Methodology */
.vectors-container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vector-item {
    background: var(--section-bg);
    padding: 40px;
    border-left: 3px solid var(--accent-gold);
}

.vector-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

/* Process Timeline */
.timeline {
    position: relative;
    margin-top: 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    background: #ddd;
    transform: translateX(-50%);
}

.timeline-step {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    width: 45%;
    background: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.step-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    z-index: 2;
}

/* Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
    text-align: center;
}

.pillar-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.pillar-item:hover .pillar-circle {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: white;
}

.pillar-item span {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Footer */
footer {
    background: #111;
    color: rgba(255, 255, 255, 0.4);
    padding: 80px 0;
    font-size: 0.85rem;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

@media(max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

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

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

    .timeline::before {
        left: 0;
    }

    .timeline-step {
        flex-direction: column;
        padding-left: 30px;
    }

    .timeline-step:nth-child(even) {
        flex-direction: column;
    }

    .step-content {
        width: 100%;
    }

    .step-marker {
        left: 0;
    }

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