/* L'Atelier Clim - Styles CSS */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600&display=swap');

/* Variables */
:root {
    --primary-yellow: #F5C518;
    --primary-yellow-hover: #E5B508;
    --dark: #1A1A1A;
    --dark-grey: #2D2D2D;
    --light-grey: #F4F4F5;
    --text-primary: #1A1A1A;
    --text-secondary: #52525B;
    --text-muted: #A1A1AA;
    --border-color: #E4E4E7;
    --white: #FFFFFF;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

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

::selection {
    background-color: var(--primary-yellow);
    color: var(--text-primary);
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 96px;
    }
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar a:hover {
    color: var(--primary-yellow);
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-right {
    color: rgba(255,255,255,0.7);
}

.top-bar-right strong {
    color: var(--primary-yellow);
}

/* Header */
header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 115px;
    width: auto;
}

nav {
    display: none;
    gap: 32px;
}

@media (min-width: 1024px) {
    nav {
        display: flex;
    }
}

nav a {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    transition: color 0.2s;
}

nav a:hover,
nav a.active {
    color: var(--primary-yellow);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.nav-dropdown-content a:last-child {
    border-bottom: none;
}

.nav-dropdown-content a:hover {
    background: var(--light-grey);
}

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-yellow);
    border: none;
    cursor: pointer;
    font-size: 24px;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.mobile-menu a:hover {
    color: var(--primary-yellow);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--dark);
    box-shadow: 4px 4px 0px 0px rgba(0,0,0,1);
}

.btn-primary:hover {
    background: var(--primary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

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

.btn-white {
    background: var(--white);
    color: var(--dark);
    border: none;
    box-shadow: 4px 4px 0px 0px rgba(255,255,255,0.3);
}

.btn-white:hover {
    background: var(--light-grey);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 400px;
        align-items: center;
    }
}

.hero-content {
    animation: fadeInUp 0.6s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-stars {
    display: flex;
    gap: 2px;
}

.hero-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-yellow);
    color: var(--primary-yellow);
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary-yellow);
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

.hero-text {
    color: #D1D5DB;
    font-size: 1.125rem;
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-text strong {
    color: var(--white);
}

.hero-quote {
    background: var(--dark-grey);
    padding: 16px;
    border-left: 4px solid var(--primary-yellow);
    margin-bottom: 32px;
}

.hero-quote p {
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-quote svg {
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .hero-features {
        grid-template-columns: repeat(4, auto);
    }
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D1D5DB;
    font-size: 14px;
}

.hero-features svg {
    color: var(--primary-yellow);
    flex-shrink: 0;
}

/* Contact Card */
.contact-card {
    background: var(--white);
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    display: none;
}

@media (min-width: 1024px) {
    .contact-card {
        display: block;
    }
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-card-header img {
    height: 50px;
    width: auto;
}

.contact-card-header h3 {
    font-size: 1.25rem;
    color: var(--dark);
}

.contact-card-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-grey);
    margin-bottom: 12px;
}

.contact-card-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-yellow);
}

.contact-card-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
}

.contact-card-item strong {
    display: block;
    color: var(--dark);
}

.contact-card-item span {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-card .btn-primary {
    width: 100%;
    margin-top: 8px;
}

/* Stats Section */
.stats {
    background: var(--primary-yellow);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

/* Section Styles */
section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    section {
        padding: 128px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 1.875rem;
    color: var(--dark);
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.text-yellow {
    color: var(--primary-yellow);
}

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

.bg-dark {
    background: var(--dark);
}

.bg-dark-grey {
    background: var(--dark-grey);
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
}

.service-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.2s;
}

.service-card:hover .service-card-icon {
    background: var(--dark);
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
    transition: color 0.2s;
}

.service-card:hover .service-card-icon svg {
    color: var(--primary-yellow);
}

.service-card h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    flex-grow: 1;
    margin-bottom: 16px;
}

.service-card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 14px;
    transition: gap 0.2s;
}

.service-card:hover .service-card-link {
    gap: 16px;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-yellow);
    color: var(--primary-yellow);
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
}

.testimonial-location {
    color: var(--text-muted);
    font-size: 14px;
}

/* Zones */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .zones-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .zones-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .zones-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.zone-link {
    background: var(--dark);
    padding: 16px;
    text-align: center;
    color: var(--white);
    font-weight: 500;
    transition: all 0.2s;
}

.zone-link:hover {
    background: var(--primary-yellow);
    color: var(--dark);
}

.zone-link span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.zone-link:hover span {
    color: rgba(0,0,0,0.5);
}

/* Why Section */
.why-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    padding: 24px;
    background: var(--dark-grey);
    border-left: 4px solid var(--primary-yellow);
}

.why-card svg {
    width: 32px;
    height: 32px;
    color: var(--primary-yellow);
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 8px;
}

.why-card p {
    color: #9CA3AF;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: var(--primary-yellow);
    padding: 80px 0;
}

.cta h2 {
    font-size: 2rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .cta h2 {
        font-size: 2.5rem;
    }
}

.cta > .container > p {
    color: rgba(0,0,0,0.7);
    text-align: center;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta .btn-primary {
    background: var(--dark);
    color: var(--white);
    box-shadow: 4px 4px 0px 0px rgba(255,255,255,0.3);
}

.cta .btn-primary:hover {
    background: var(--dark-grey);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-desc {
    color: #9CA3AF;
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact-item a {
    color: var(--white);
}

.footer-contact-item a:hover {
    color: var(--primary-yellow);
}

footer h4 {
    font-size: 1rem;
    margin-bottom: 24px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul a {
    color: #9CA3AF;
    transition: color 0.2s;
}

footer ul a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

/* Mobile CTA Bar */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-yellow);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

.mobile-cta p {
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.mobile-cta span {
    font-size: 12px;
    color: rgba(0,0,0,0.6);
}

.mobile-cta a {
    background: var(--dark);
    color: var(--white);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    transition: transform 0.2s;
}

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

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Page Header */
.page-header {
    background: var(--dark);
    padding: 80px 0;
    text-align: center;
}

.page-header .breadcrumb {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 16px;
}

.page-header .breadcrumb a {
    color: #9CA3AF;
}

.page-header .breadcrumb a:hover {
    color: var(--primary-yellow);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .page-header h1 {
        font-size: 3rem;
    }
}

.page-header p {
    color: #D1D5DB;
    max-width: 640px;
    margin: 0 auto;
}

/* Artisan Section */
.artisan-grid {
    display: grid;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .artisan-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.artisan-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .artisan-content h2 {
        font-size: 2.5rem;
    }
}

.artisan-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.artisan-text p {
    margin-bottom: 16px;
}

.artisan-text strong {
    color: var(--dark);
}

.artisan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.artisan-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--light-grey);
}

.artisan-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.artisan-feature strong {
    display: block;
    color: var(--dark);
}

.artisan-feature span {
    font-size: 14px;
    color: var(--text-secondary);
}

.artisan-image {
    position: relative;
}

.artisan-image img {
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.artisan-image-caption {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--dark);
    color: var(--white);
    padding: 24px;
    max-width: 280px;
}

.artisan-image-caption p:first-child {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 8px;
}

.artisan-image-caption p:last-child {
    font-size: 14px;
    line-height: 1.6;
}

/* Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Lucide Icons inline SVG */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}
