/* =============================================
   Artisan-Core CSS
   Premium aesthetic for craftsmen websites
   ============================================= */

/* CSS Variables (overridden by template) */
:root {
    --primary: #2c1e14;
    --secondary: #8b6914;
    --accent: #d4a853;
    --bg-light: #f8f5f0;
    --bg-dark: #1a1410;
    --text-light: #f8f5f0;
    --text-dark: #2c1e14;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================
   Wood Texture Background (CSS Placeholder)
   Replace with real WebP for production
   ============================================= */
.texture-bg {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;

    /* Wood grain simulation with CSS gradients */
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(44, 30, 20, 0.1) 2px,
            rgba(44, 30, 20, 0.1) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(139, 105, 20, 0.05) 50px,
            rgba(139, 105, 20, 0.05) 52px
        ),
        linear-gradient(
            180deg,
            #d4a853 0%,
            #8b6914 30%,
            #5c4510 60%,
            #2c1e14 100%
        );
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(
        180deg,
        rgba(26, 20, 16, 0.85) 0%,
        rgba(44, 30, 20, 0.9) 100%
    );
    color: var(--text-light);
    position: relative;
}

.hero-content {
    max-width: 800px;
}

/* Hero Logo */
.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .hero-logo {
        width: 90px;
        height: 90px;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 2rem;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-location svg {
    color: var(--accent);
}

/* Google Reviews Badge */
.google-reviews,
.google-reviews:link,
.google-reviews:visited,
.google-reviews:active {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--text-light) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.google-reviews:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.google-reviews-stars {
    display: flex;
    gap: 3px;
}

.google-reviews-stars .star {
    color: rgba(255, 255, 255, 0.25);
}

.google-reviews-stars .star.filled {
    color: #FBBC05;
}

.google-reviews-info {
    font-size: 0.85rem;
    color: var(--text-light);
}

.google-reviews-info strong {
    color: var(--accent);
    font-weight: 600;
}

.google-logo {
    opacity: 0.7;
    margin-left: 0.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* =============================================
   Sections
   ============================================= */
.section {
    padding: 6rem 2rem;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(44, 30, 20, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(44, 30, 20, 0.12);
}

.service-icon {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(
        180deg,
        var(--bg-light) 0%,
        #ebe5dc 100%
    );
    text-align: center;
}

.cta .section-text {
    margin-left: auto;
    margin-right: auto;
}

/* Button */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* =============================================
   Artisan Section
   ============================================= */
.artisan-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 5rem 2rem;
}

.artisan-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.artisan-photo {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
    box-shadow:
        0 0 0 8px rgba(212, 168, 83, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.artisan-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.artisan-photo:hover img {
    filter: grayscale(0%);
}

.artisan-info {
    flex: 1;
}

.artisan-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.artisan-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.artisan-signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--accent);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .artisan-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .artisan-photo {
        width: 150px;
        height: 150px;
    }
}

/* =============================================
   President Section (Associations)
   ============================================= */
.president-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 5rem 2rem;
}

.president-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.president-photo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
    box-shadow:
        0 0 0 8px rgba(230, 126, 34, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.president-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.president-info {
    flex: 1;
}

.president-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.president-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.president-message {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.president-signature {
    font-size: 0.95rem;
    color: var(--accent);
}

@media (max-width: 768px) {
    .president-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .president-photo {
        width: 140px;
        height: 140px;
    }
}

/* =============================================
   Instagram Section
   ============================================= */
.instagram-section {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.instagram-section .section-title {
    color: white;
    margin-bottom: 2rem;
}

.instagram-link {
    text-decoration: none;
    display: block;
    max-width: 500px;
    margin: 0 auto;
}

.instagram-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.instagram-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.instagram-card svg:first-child {
    color: #E1306C;
    flex-shrink: 0;
}

.instagram-info {
    flex: 1;
    text-align: left;
}

.instagram-handle {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.instagram-cta {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.instagram-arrow {
    color: #999;
    transition: transform 0.3s ease;
}

.instagram-card:hover .instagram-arrow {
    transform: translateX(5px);
    color: #E1306C;
}

@media (max-width: 768px) {
    .instagram-card {
        padding: 1.25rem 1.5rem;
    }
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Address / Google Maps Link */
.footer-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-address:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-address svg {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-address span {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Phone Link */
.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-phone:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-phone svg {
    color: var(--accent);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.footer-phone:hover svg {
    color: var(--primary);
}

/* Social Links */
.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
}

.social-link svg {
    opacity: 0.9;
}

.social-link:hover svg {
    opacity: 1;
}

/* Footer Copyright */
.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-email:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-email svg {
    color: var(--accent);
}

/* =============================================
   Events Section
   ============================================= */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    min-width: 70px;
}

.event-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-info {
    flex: 1;
}

.event-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.event-desc {
    font-size: 0.95rem;
    color: #666;
}

/* =============================================
   Results Section
   ============================================= */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.result-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.result-icon {
    font-size: 2rem;
}

.result-info {
    flex: 1;
}

.result-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.result-winner {
    font-weight: 600;
    color: var(--accent);
}

.result-date {
    font-size: 0.85rem;
    color: #999;
}

/* =============================================
   Bureau Section
   ============================================= */
.bureau-section {
    background: var(--bg-light);
}

.bureau-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.bureau-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.bureau-card:hover {
    transform: translateY(-5px);
}

.bureau-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid var(--accent);
}

.bureau-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bureau-photo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.bureau-role {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.bureau-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary);
}

/* =============================================
   Membership Section
   ============================================= */
.membership-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ebe5dc 100%);
    text-align: center;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.membership-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.membership-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.membership-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.membership-cta {
    margin-top: 2.5rem;
}

/* =============================================
   Documents Section
   ============================================= */
.documents-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.document-card:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.document-card svg {
    color: var(--accent);
    transition: color 0.3s ease;
}

.document-card:hover svg {
    color: white;
}

/* =============================================
   Reviews Section (standalone)
   ============================================= */
.reviews-section {
    background: var(--bg-light);
    text-align: center;
}

.reviews-badge {
    display: inline-block;
    margin-top: 2rem;
}

.reviews-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.reviews-link:hover {
    transform: translateY(-5px);
}

.reviews-score {
    display: flex;
    align-items: baseline;
}

.reviews-rating {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.reviews-max {
    font-size: 1.5rem;
    color: #999;
}

.reviews-stars {
    display: flex;
    gap: 4px;
}

.reviews-stars .star.filled {
    color: #FBBC05;
}

.reviews-count {
    font-size: 0.9rem;
    color: #666;
}

/* =============================================
   Portfolio Section
   ============================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.portfolio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* =============================================
   Gallery Section
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-card {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* =============================================
   Modal
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 16, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--primary);
    padding: 3rem;
    border-radius: 16px;
    max-width: 340px;
    width: 100%;
    position: relative;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
}

.modal-label {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.modal-artisan {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.75rem;
}

.modal-whatsapp,
.modal-whatsapp:link,
.modal-whatsapp:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: #25D366;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-whatsapp:hover {
    transform: translateY(-2px);
    background: #20bd5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.modal-whatsapp svg {
    flex-shrink: 0;
}

/* =============================================
   Floating Elements (Scroll Animations)
   ============================================= */
.floating-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

/* Wave Container */
.wave-container {
    z-index: 99;
}

.wave-container svg {
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
}

/* =============================================
   Premium Furniture Elements
   ============================================= */

/* Base furniture style */
.furniture-piece {
    position: absolute;
    opacity: 0;
    will-change: transform, opacity;
    filter: drop-shadow(0 20px 40px rgba(44, 30, 20, 0.4));
}

/* === CHAISE DESIGN === */
.furniture-chair {
    width: 60px;
    height: 80px;
}

.furniture-chair .chair-back {
    position: absolute;
    top: 0;
    left: 10px;
    width: 40px;
    height: 45px;
    background: linear-gradient(135deg, #8b6914 0%, #d4a853 50%, #8b6914 100%);
    border-radius: 8px 8px 0 0;
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.2);
}

.furniture-chair .chair-back::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    right: 6px;
    bottom: 8px;
    background: linear-gradient(180deg, transparent 0%, rgba(61,40,23,0.3) 100%);
    border-radius: 4px;
}

.furniture-chair .chair-seat {
    position: absolute;
    top: 40px;
    left: 5px;
    width: 50px;
    height: 12px;
    background: linear-gradient(180deg, #c9a227 0%, #8b6914 100%);
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.furniture-chair .chair-leg {
    position: absolute;
    top: 50px;
    width: 6px;
    height: 30px;
    background: linear-gradient(90deg, #5c4033, #8b6914, #5c4033);
    border-radius: 0 0 2px 2px;
}

.furniture-chair .chair-leg:nth-child(3) { left: 8px; }
.furniture-chair .chair-leg:nth-child(4) { right: 8px; }

/* === TABLE BASSE === */
.furniture-table {
    width: 100px;
    height: 50px;
}

.furniture-table .table-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 10px;
    background: linear-gradient(90deg, #5c4033 0%, #8b6914 20%, #d4a853 50%, #8b6914 80%, #5c4033 100%);
    border-radius: 4px;
    box-shadow:
        inset 0 2px 5px rgba(255,255,255,0.2),
        0 5px 15px rgba(0,0,0,0.3);
}

.furniture-table .table-top::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 15px,
        rgba(61,40,23,0.15) 15px,
        rgba(61,40,23,0.15) 16px
    );
    border-radius: 2px;
}

.furniture-table .table-leg {
    position: absolute;
    top: 8px;
    width: 8px;
    height: 42px;
    background: linear-gradient(90deg, #3d2817, #5c4033, #3d2817);
    border-radius: 2px;
}

.furniture-table .table-leg:nth-child(2) { left: 10px; }
.furniture-table .table-leg:nth-child(3) { right: 10px; }

/* === CADRE PHOTO === */
.furniture-frame {
    width: 70px;
    height: 90px;
    background: linear-gradient(135deg, #8b6914 0%, #d4a853 30%, #c9a227 50%, #d4a853 70%, #8b6914 100%);
    border-radius: 4px;
    padding: 8px;
    box-shadow:
        inset 0 2px 8px rgba(255,255,255,0.3),
        inset 0 -2px 8px rgba(0,0,0,0.2),
        0 10px 30px rgba(0,0,0,0.3);
}

.furniture-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: linear-gradient(180deg, #f8f5f0 0%, #e8e0d5 100%);
    border-radius: 2px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.furniture-frame::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background:
        linear-gradient(45deg, rgba(139,105,20,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(139,105,20,0.1) 25%, transparent 25%);
    background-size: 8px 8px;
}

/* === ÉTAGÈRE === */
.furniture-shelf {
    width: 120px;
    height: 60px;
}

.furniture-shelf .shelf-board {
    position: absolute;
    left: 0;
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, #5c4033 0%, #8b6914 30%, #d4a853 50%, #8b6914 70%, #5c4033 100%);
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.furniture-shelf .shelf-board:nth-child(1) { top: 0; }
.furniture-shelf .shelf-board:nth-child(2) { top: 25px; }
.furniture-shelf .shelf-board:nth-child(3) { top: 50px; }

.furniture-shelf .shelf-side {
    position: absolute;
    top: 0;
    width: 6px;
    height: 58px;
    background: linear-gradient(90deg, #3d2817, #5c4033, #3d2817);
}

.furniture-shelf .shelf-side:nth-child(4) { left: 5px; }
.furniture-shelf .shelf-side:nth-child(5) { right: 5px; }

/* === TIROIR === */
.furniture-drawer {
    width: 80px;
    height: 45px;
    background: linear-gradient(180deg, #8b6914 0%, #5c4033 100%);
    border-radius: 4px;
    box-shadow:
        inset 0 2px 8px rgba(255,255,255,0.15),
        0 8px 25px rgba(0,0,0,0.35);
}

.furniture-drawer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 8px;
    background: linear-gradient(180deg, #c9a227 0%, #8b6914 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.furniture-drawer::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(212,168,83,0.3);
    border-radius: 2px;
}

/* === PLANCHE DÉCOUPÉE === */
.furniture-plank {
    width: 140px;
    height: 25px;
    background: linear-gradient(
        90deg,
        #3d2817 0%,
        #5c4033 5%,
        #8b6914 15%,
        #d4a853 30%,
        #c9a227 50%,
        #d4a853 70%,
        #8b6914 85%,
        #5c4033 95%,
        #3d2817 100%
    );
    border-radius: 3px;
    box-shadow:
        inset 0 3px 8px rgba(255,255,255,0.2),
        inset 0 -3px 8px rgba(0,0,0,0.2),
        0 8px 20px rgba(0,0,0,0.3);
}

.furniture-plank::before {
    content: '';
    position: absolute;
    inset: 3px 10px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 20px,
        rgba(61,40,23,0.2) 20px,
        rgba(61,40,23,0.2) 21px
    );
}

.furniture-plank.small {
    width: 90px;
    height: 18px;
}

.furniture-plank.large {
    width: 180px;
    height: 30px;
}


/* Water Droplet Styles */
.water-drop {
    position: absolute;
    width: 24px;
    height: 34px;
    background:
        radial-gradient(ellipse at 25% 25%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
        radial-gradient(
            ellipse at 50% 50%,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(56, 173, 169, 0.6) 30%,
            rgba(30, 96, 145, 0.5) 60%,
            rgba(10, 61, 98, 0.4) 100%
        );
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    box-shadow:
        inset -3px -3px 12px rgba(255,255,255,0.6),
        inset 2px 2px 8px rgba(10, 61, 98, 0.3),
        0 8px 20px rgba(10, 61, 98, 0.4),
        0 2px 5px rgba(10, 61, 98, 0.2);
    will-change: transform, opacity;
}

.water-drop.large {
    width: 40px;
    height: 56px;
}

.water-drop.small {
    width: 14px;
    height: 20px;
}

/* Water Bubble */
.water-bubble {
    position: absolute;
    width: 45px;
    height: 45px;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.95) 0%, transparent 35%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.3) 0%, transparent 30%),
        radial-gradient(
            circle,
            rgba(56, 173, 169, 0.15) 0%,
            rgba(30, 96, 145, 0.1) 50%,
            rgba(10, 61, 98, 0.05) 100%
        );
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0;
    box-shadow:
        inset -8px -8px 20px rgba(255,255,255,0.5),
        inset 4px 4px 10px rgba(10, 61, 98, 0.1),
        0 5px 20px rgba(10, 61, 98, 0.15);
    will-change: transform, opacity;
}

.water-bubble.small {
    width: 22px;
    height: 22px;
    border-width: 1px;
}

.water-bubble.large {
    width: 70px;
    height: 70px;
    border-width: 3px;
}

/* Wave element */
.water-wave {
    position: absolute;
    width: 200px;
    height: 60px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(56, 173, 169, 0.3) 50%,
        rgba(30, 96, 145, 0.2) 100%
    );
    border-radius: 50%;
    opacity: 0;
}

/* =============================================
   Pétanque Balls
   ============================================= */
.petanque-ball {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity;
}

.petanque-ball.silver {
    background: radial-gradient(circle at 30% 30%,
        #fff 0%,
        #e0e0e0 20%,
        #a0a0a0 50%,
        #707070 80%,
        #505050 100%
    );
    box-shadow:
        inset -8px -8px 20px rgba(0,0,0,0.4),
        inset 5px 5px 15px rgba(255,255,255,0.6),
        0 10px 30px rgba(0,0,0,0.3);
}

.petanque-ball.gold {
    background: radial-gradient(circle at 30% 30%,
        #fff 0%,
        #f4d03f 20%,
        #c9a227 50%,
        #8b6914 80%,
        #5c4033 100%
    );
    box-shadow:
        inset -8px -8px 20px rgba(0,0,0,0.3),
        inset 5px 5px 15px rgba(255,255,255,0.5),
        0 10px 30px rgba(0,0,0,0.3);
}

.petanque-ball.bronze {
    background: radial-gradient(circle at 30% 30%,
        #fff 0%,
        #cd7f32 20%,
        #a0522d 50%,
        #8b4513 80%,
        #5c3317 100%
    );
    box-shadow:
        inset -8px -8px 20px rgba(0,0,0,0.4),
        inset 5px 5px 15px rgba(255,255,255,0.4),
        0 10px 30px rgba(0,0,0,0.3);
}

.petanque-ball.small {
    width: 35px;
    height: 35px;
}

.petanque-ball.large {
    width: 65px;
    height: 65px;
}

/* Rayures sur les boules */
.petanque-ball::before {
    content: '';
    position: absolute;
    inset: 15%;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
}

.petanque-ball::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 25%;
    height: 15%;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    filter: blur(2px);
}

/* Leaf (Fresh green style) */
.floating-leaf {
    position: absolute;
    width: 32px;
    height: 42px;
    opacity: 0;
    filter: drop-shadow(0 5px 12px rgba(34,139,34,0.35));
}

.floating-leaf::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        150deg,
        #90EE90 0%,
        #32cd32 30%,
        #228b22 60%,
        #1a6b1a 100%
    );
    border-radius: 50% 0 50% 50%;
    transform: rotate(-30deg);
}

.floating-leaf::after {
    content: '';
    position: absolute;
    left: 45%;
    top: 20%;
    width: 2px;
    height: 55%;
    background: linear-gradient(180deg, #228b22 0%, #0d3d0d 100%);
    transform: rotate(-30deg);
    border-radius: 1px;
    box-shadow:
        -5px 2px 0 0 rgba(34,139,34,0.25),
        5px 2px 0 0 rgba(34,139,34,0.25),
        -9px 6px 0 0 rgba(34,139,34,0.15),
        9px 6px 0 0 rgba(34,139,34,0.15);
}

/* =============================================
   Reveal Animation Classes
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

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

/* =============================================
   Carousel Section
   ============================================= */
.carousel-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(26, 20, 16, 0.9) 0%, rgba(44, 30, 20, 0.95) 100%);
    color: var(--text-light);
}

.carousel-section .section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    color: var(--accent);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: block;
}

.carousel-btn {
    background: var(--accent);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Instagram CTA */
.carousel-instagram-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto 2.5rem;
    padding: 1rem 2rem;
    max-width: 500px;
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.15) 0%, rgba(253, 29, 29, 0.15) 50%, rgba(252, 176, 69, 0.15) 100%);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.carousel-instagram-cta:hover {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.25) 0%, rgba(253, 29, 29, 0.25) 50%, rgba(252, 176, 69, 0.25) 100%);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.carousel-instagram-cta svg:first-child {
    flex-shrink: 0;
    color: var(--accent);
}

.carousel-instagram-cta svg:last-child {
    flex-shrink: 0;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.carousel-instagram-cta:hover svg:last-child {
    transform: translate(3px, -3px);
    opacity: 1;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }

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

    .modal {
        padding: 2rem 1.5rem;
    }

    .carousel-section {
        padding: 4rem 1rem;
    }

    .carousel-slide img {
        aspect-ratio: 16 / 9;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-instagram-cta {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
}
