/* CHIQUE V5: WARM PROFESSIONAL - Cream tones, Cormorant Garamond, warm feel */

:root {
    --col-cream: #f8f5f0;
    --col-cream-dark: #efe9e0;
    --col-brown: #3d3027;
    --col-brown-light: #5a4a3a;
    --col-orange: #d4923a;
    --col-orange-light: #e8a84c;
    --col-white: #ffffff;
    --col-text: #5a5045;
    --col-text-light: #8a8075;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Mulish', sans-serif;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--col-cream);
    color: var(--col-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--col-cream);
    border-bottom: 1px solid rgba(61, 48, 39, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--col-brown);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--col-brown);
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--col-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--col-orange); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: var(--col-white);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeIn 0.8s 0.2s var(--transition) forwards;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--col-orange);
    opacity: 0.15;
}

.hero-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    opacity: 0;
    animation: fadeIn 0.8s 0.4s var(--transition) forwards;
}

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

.hero-label {
    font-size: 0.85rem;
    color: var(--col-orange);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--col-brown);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--col-text);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--col-orange);
    color: var(--col-white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover { background: var(--col-orange-light); }

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--col-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.btn-text:hover { gap: 1rem; color: var(--col-orange); }

/* Intro Quote */
.intro {
    padding: 6rem 2rem;
    background: var(--col-cream);
}

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

.intro-quote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    font-style: italic;
    color: var(--col-brown);
    line-height: 1.5;
    border: none;
}

.intro-quote::before, .intro-quote::after { display: none; }

/* Services */
.services {
    padding: 6rem 2rem;
    background: var(--col-white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--col-brown);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--col-text-light);
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--col-cream);
    padding: 2.5rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--col-white);
    border-color: var(--col-orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(61, 48, 39, 0.1);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--col-cream-dark);
    color: var(--col-orange);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background: var(--col-orange);
    color: var(--col-white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--col-brown);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--col-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-block;
    color: var(--col-orange);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* CTA */
.cta {
    padding: 5rem 2rem;
    background: var(--col-brown);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--col-white);
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.btn-cta {
    display: inline-block;
    background: var(--col-orange);
    color: var(--col-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta:hover { background: var(--col-orange-light); }

/* Footer */
.footer {
    background: var(--col-cream);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(61, 48, 39, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-left { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-logo { height: 22px; opacity: 0.6; transition: opacity 0.3s ease; }
.footer-logo-link:hover .footer-logo { opacity: 1; }
.footer-text { color: var(--col-text-light); font-size: 0.85rem; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--col-text);
    background: var(--col-cream-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--col-orange);
    color: var(--col-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--col-cream);
        padding: 1.5rem 2rem;
        gap: 0;
        border-bottom: 1px solid rgba(61, 48, 39, 0.1);
    }

    .nav-links.active { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(61, 48, 39, 0.05); }
    .nav-links a { display: block; padding: 1rem 0; }

    .hero-content { grid-template-columns: 1fr; gap: 3rem; }
    .hero-image { max-width: 400px; margin: 0 auto; order: -1; }
    .hero-text { text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-container { flex-direction: column; text-align: center; }
    .footer-container { flex-direction: column; text-align: center; }
    .footer-left { flex-direction: column; gap: 1rem; }
}
