.menu-check { display: none !important; }

.menu-toggle {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

@media (max-width: 768px) {
    
    .menu-check:checked ~ .nav {
        display: flex !important;
    }
    
    
    

    
    .menu-toggle { font-size: 1.8rem !important; color: var(--secondary) !important; padding: 6px 10px !important; }
    .menu-toggle i { display: block; line-height: 1; }

    
    .menu-check:checked ~ .menu-toggle .fa-bars::before {
        content: '\f00d';
    }
}

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

@media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

:root {
            --primary: #331c11;
            --secondary: #fdedd6;
            --accent: #c8a97e;
            --text-dark: #2a1a0f;
            --text-light: #fdedd6;
            --white: #ffffff;
            --gray-light: #f8f4f0;
            --gray: #8a7a6d;
        }

html {
            scroll-behavior: smooth;
        }

body {
            font-family: 'Lato', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--white);
            overflow-x: hidden;
        }

h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            line-height: 1.3;
        }

.container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

.header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--primary);
            transition: box-shadow 0.3s ease;
        }

.header.scrolled {
            box-shadow: 0 4px 20px rgba(51, 28, 17, 0.3);
        }

.header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--secondary);
            flex-shrink: 0;
        }

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

.logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary);
        }

.nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }

.nav a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            padding: 8px 14px;
            border-radius: 4px;
            transition: background 0.3s ease, color 0.3s ease;
            white-space: nowrap;
        }

.nav a:hover {
            background: rgba(253, 237, 214, 0.15);
        }

.nav .btn-cta-nav {
            background: var(--accent);
            color: var(--primary);
            font-weight: 700;
            padding: 10px 22px;
            border-radius: 30px;
            transition: background 0.3s ease, transform 0.2s ease;
        }

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

.menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
        }

.menu-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

.menu-toggle.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

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

.menu-toggle.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            padding-bottom: 60px;
            background: linear-gradient(135deg, rgba(51, 28, 17, 0.92), rgba(51, 28, 17, 0.75)), url('https://webflash.pro/storage/uploads/298/hero_admin_1776252332_69df75ac15352.jpg') center/cover no-repeat;
        }

.hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

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

.hero-badge {
            display: inline-block;
            background: rgba(200, 169, 126, 0.2);
            border: 1px solid var(--accent);
            color: var(--accent);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

.hero h1 {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
            font-weight: 700;
        }

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

.hero-slogan {
            font-size: 1.2rem;
            color: rgba(253, 237, 214, 0.85);
            margin-bottom: 30px;
            font-style: italic;
        }

.hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

.btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--accent);
            color: var(--primary);
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
        }

.btn-primary:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(200, 169, 126, 0.4);
        }

.btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--secondary);
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            border: 2px solid var(--accent);
            transition: background 0.3s ease, transform 0.2s ease;
            cursor: pointer;
        }

.btn-secondary:hover {
            background: rgba(200, 169, 126, 0.15);
            transform: translateY(-2px);
        }

.devis-card {
            background: var(--white);
            border-radius: 16px;
            padding: 36px 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

.devis-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 6px;
            text-align: center;
        }

.devis-card-subtitle {
            font-size: 0.9rem;
            color: var(--gray);
            text-align: center;
            margin-bottom: 24px;
        }

.devis-card .form-group {
            margin-bottom: 16px;
        }

.devis-card label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }

.devis-card input,
        .devis-card textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e8ddd0;
            border-radius: 10px;
            font-family: 'Lato', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            transition: border-color 0.3s ease;
            background: var(--gray-light);
        }

.devis-card input:focus,
        .devis-card textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: var(--white);
        }

.devis-card textarea {
            resize: vertical;
            min-height: 80px;
        }

.devis-card .btn-submit {
            width: 100%;
            background: var(--primary);
            color: var(--secondary);
            padding: 14px;
            border: none;
            border-radius: 30px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

.devis-card .btn-submit:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
        }

.stats {
            background: var(--primary);
            padding-top: 50px;
            padding-bottom: 50px;
        }

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

.stat-item {
            color: var(--secondary);
        }

.stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 8px;
        }

.stat-label {
            font-size: 0.95rem;
            color: rgba(253, 237, 214, 0.8);
        }

.section {
            padding-top: 80px;
            padding-bottom: 80px;
        }

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

.section-label {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            padding: 5px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 14px;
        }

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

.section-header p {
            font-size: 1.05rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

.section-divider {
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin: 16px auto 0;
            border-radius: 2px;
        }

.services {
            background: var(--gray-light);
        }

.services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

.service-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(51, 28, 17, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: calc(50% - 15px);
            max-width: 500px;
        }

.service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(51, 28, 17, 0.15);
        }

.service-img {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

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

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

.service-body {
            padding: 28px 24px;
        }

.service-body h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

.service-body p {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.6;
        }

.engagements {
            background: var(--primary);
            color: var(--secondary);
        }

.engagements .section-header h2 {
            color: var(--secondary);
        }

.engagements .section-header p {
            color: rgba(253, 237, 214, 0.7);
        }

.engagements .section-label {
            background: rgba(200, 169, 126, 0.2);
            color: var(--accent);
        }

.engagements-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

.engagement-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(253, 237, 214, 0.06);
            border-radius: 16px;
            border: 1px solid rgba(200, 169, 126, 0.15);
            transition: transform 0.3s ease, background 0.3s ease;
        }

.engagement-item:hover {
            transform: translateY(-4px);
            background: rgba(253, 237, 214, 0.1);
        }

.engagement-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(200, 169, 126, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.5rem;
            color: var(--accent);
        }

.engagement-item p:first-of-type {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--secondary);
        }

.engagement-item p:last-of-type {
            font-size: 0.9rem;
            color: rgba(253, 237, 214, 0.65);
        }

.about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

.about-img {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(51, 28, 17, 0.15);
            position: relative;
        }

.about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.about-text h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

.about-text p {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 16px;
            line-height: 1.8;
        }

.about-text .signature {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--primary);
            font-style: italic;
            margin-top: 20px;
        }

.zones {
            background: var(--gray-light);
        }

.zones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

.zone-card {
            background: var(--white);
            padding: 24px;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
            box-shadow: 0 2px 12px rgba(51, 28, 17, 0.06);
            transition: transform 0.3s ease;
        }

.zone-card:hover {
            transform: translateY(-3px);
        }

.zone-card p:first-child {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

.zone-card p:last-child {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.6;
        }

.gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

.gallery-item {
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            position: relative;
        }

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

.gallery-item:hover img {
            transform: scale(1.08);
        }

.gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(51, 28, 17, 0);
            transition: background 0.3s ease;
        }

.gallery-item:hover::after {
            background: rgba(51, 28, 17, 0.2);
        }

.lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

.lightbox.active {
            display: flex;
        }

.lightbox img {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

.lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 10000;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

.lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.25);
        }

.lightbox-prev {
            left: 20px;
        }

.lightbox-next {
            right: 20px;
        }

.testimonials {
            background: var(--secondary);
        }

.testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

.testimonial-card {
            background: var(--white);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(51, 28, 17, 0.08);
            position: relative;
        }

.testimonial-card::before {
            content: '\201C';
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: var(--accent);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }

.testimonial-stars {
            color: #f5a623;
            font-size: 1rem;
            margin-bottom: 14px;
        }

.testimonial-text {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 18px;
            font-style: italic;
            position: relative;
        }

.testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

.testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 700;
            flex-shrink: 0;
        }

.testimonial-name {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.95rem;
        }

.testimonial-badge {
            font-size: 0.8rem;
            color: var(--gray);
        }

.google-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            border: 2px solid #e8ddd0;
            padding: 12px 24px;
            border-radius: 30px;
            margin-top: 40px;
            text-decoration: none;
            color: var(--primary);
            font-weight: 700;
            font-size: 0.95rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

.google-badge:hover {
            border-color: var(--accent);
            box-shadow: 0 4px 15px rgba(200, 169, 126, 0.2);
        }

.google-rating {
            color: #f5a623;
        }

.faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

.faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 10px rgba(51, 28, 17, 0.06);
            overflow: hidden;
            border: 1px solid transparent;
            transition: border-color 0.3s ease;
        }

.faq-item.active {
            border-color: var(--accent);
        }

.faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--primary);
            gap: 16px;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }

.faq-question i {
            color: var(--accent);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

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

.faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

.faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.7;
        }

.horaires {
            background: var(--primary);
            color: var(--secondary);
        }

.horaires .section-header h2 {
            color: var(--secondary);
        }

.horaires .section-header p {
            color: rgba(253, 237, 214, 0.7);
        }

.horaires .section-label {
            background: rgba(200, 169, 126, 0.2);
            color: var(--accent);
        }

.horaires-card {
            max-width: 500px;
            margin: 0 auto;
            background: rgba(253, 237, 214, 0.06);
            border: 1px solid rgba(200, 169, 126, 0.15);
            border-radius: 16px;
            padding: 32px;
        }

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(200, 169, 126, 0.1);
        }

.horaire-row:last-child {
            border-bottom: none;
        }

.horaire-day {
            font-weight: 700;
            color: var(--secondary);
        }

.horaire-time {
            color: var(--accent);
            font-weight: 600;
        }

.horaire-closed {
            color: rgba(253, 237, 214, 0.4);
            font-style: italic;
        }

.horaire-row.closed .horaire-day {
            color: rgba(253, 237, 214, 0.4);
        }

.contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

.contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 30px;
        }

.contact-info-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--gray-light);
            padding: 18px 22px;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

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

.contact-info-icon {
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: var(--secondary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

.contact-info-text span {
            display: block;
            font-size: 0.8rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2px;
        }

.contact-info-text a,
        .contact-info-text p {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            margin: 0;
        }

.contact-info-text a:hover {
            color: var(--accent);
        }

.contact-form {
            background: var(--white);
            padding: 36px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(51, 28, 17, 0.08);
        }

.contact-form .form-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 24px;
        }

.contact-form .form-group {
            margin-bottom: 16px;
        }

.contact-form label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }

.contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e8ddd0;
            border-radius: 10px;
            font-family: 'Lato', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            transition: border-color 0.3s ease;
            background: var(--gray-light);
        }

.contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: var(--white);
        }

.contact-form textarea {
            resize: vertical;
        }

.contact-form .btn-submit {
            width: 100%;
            background: var(--primary);
            color: var(--secondary);
            padding: 14px;
            border: none;
            border-radius: 30px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

.contact-form .btn-submit:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
        }

.map-container {
            border-radius: 16px;
            overflow: hidden;
            margin-top: 40px;
            box-shadow: 0 4px 20px rgba(51, 28, 17, 0.1);
        }

.map-container iframe {
            display: block;
        }

.footer {
            background: var(--primary);
            color: var(--secondary);
            padding-top: 50px;
            padding-bottom: 0;
        }

.footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(200, 169, 126, 0.15);
        }

.footer-brand .logo {
            margin-bottom: 16px;
        }

.footer-brand p {
            font-size: 0.9rem;
            color: rgba(253, 237, 214, 0.7);
            line-height: 1.7;
        }

.footer-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 18px;
        }

.footer-links {
            list-style: none;
        }

.footer-links li {
            margin-bottom: 10px;
        }

.footer-links a {
            color: rgba(253, 237, 214, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

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

.footer-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: rgba(253, 237, 214, 0.7);
            font-size: 0.9rem;
        }

.footer-contact-item i {
            color: var(--accent);
            width: 18px;
            text-align: center;
        }

.footer-contact-item a {
            color: rgba(253, 237, 214, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

.footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            padding-bottom: 24px;
            font-size: 0.85rem;
            color: rgba(253, 237, 214, 0.5);
            flex-wrap: wrap;
            gap: 10px;
        }

.footer-bottom a {
            color: rgba(253, 237, 214, 0.5);
            text-decoration: none;
            transition: color 0.3s ease;
        }

.footer-bottom a:hover {
            color: var(--accent);
        }

.modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

.modal-overlay.active {
            display: flex;
        }

.modal-content {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

.modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.modal-content .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

.modal-content p {
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

.modal-content strong {
            color: var(--primary);
        }

.back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: var(--secondary);
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(51, 28, 17, 0.3);
            transition: background 0.3s ease, transform 0.2s ease;
        }

.back-to-top.visible {
            display: flex;
        }

.back-to-top:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

.fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

.fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

@media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

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

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

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

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

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

@media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary);
                flex-direction: column;
                padding: 20px;
                gap: 4px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }

            .nav.active {
                display: flex;
            }

            .nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }

            .nav .btn-cta-nav {
                margin-top: 8px;
            }

            .menu-toggle {
                display: flex;
            }

            .hero {
                padding-top: 110px;
                padding-bottom: 40px;
            }

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

            .section {
                padding-top: 60px;
                padding-bottom: 60px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .service-card {
                width: 100%;
            }

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

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

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

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

            .devis-card {
                padding: 28px 20px;
            }
        }

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

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-number {
                font-size: 2.2rem;
            }

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

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

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

            .contact-form {
                padding: 24px 20px;
            }
        }

html, body { overflow-x: hidden; max-width: 100%; }

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

.sct-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

@media (max-width: 640px) { .sct-container { padding: 0 18px; } }

.sct-tpl-service-city { color: #2a1a0f; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(51,28,17,0.92), rgba(51,28,17,0.78)), url('/images/service_1_1776252843_69df77abc7bee.webp') center/cover no-repeat;
    color: #fdedd6;
}

.sct-tpl-service-city .sct-hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.sct-tpl-service-city .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-service-city .sct-hero-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-hero-text, .sct-tpl-service-city .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-service-city .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    margin-bottom: 22px;
    color: rgba(253,237,214,0.75);
}

.sct-tpl-service-city .sct-breadcrumb a {
    color: rgba(253,237,214,0.85);
    text-decoration: none;
    transition: color .3s ease;
}

.sct-tpl-service-city .sct-breadcrumb a:hover { color: #c8a97e; }

.sct-tpl-service-city .sct-bc-sep { color: rgba(253,237,214,0.4); }

.sct-tpl-service-city .sct-bc-current { color: #c8a97e; font-weight: 700; }

.sct-tpl-service-city .sct-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,169,126,0.18);
    border: 1px solid rgba(200,169,126,0.5);
    color: #c8a97e;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fdedd6;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-hero-text h1 strong,
.sct-tpl-service-city .sct-hero-text h1 span { color: #c8a97e; }

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(253,237,214,0.88);
    margin-bottom: 28px;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.sct-tpl-service-city .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c8a97e;
    color: #331c11;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background .3s ease, transform .2s ease, box-shadow .3s ease;
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #fdedd6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,169,126,0.4);
}

.sct-tpl-service-city .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fdedd6;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid #c8a97e;
    transition: background .3s ease, transform .2s ease;
}

.sct-tpl-service-city .sct-btn-secondary:hover {
    background: rgba(200,169,126,0.15);
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.85rem;
    color: rgba(253,237,214,0.8);
}

.sct-tpl-service-city .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sct-tpl-service-city .sct-hero-trust i { color: #c8a97e; }

.sct-tpl-service-city .sct-hero-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: #2a1a0f;
}

.sct-tpl-service-city .sct-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #331c11;
    margin-bottom: 6px;
    text-align: center;
}

.sct-tpl-service-city .sct-hero-card-sub {
    font-size: 0.88rem;
    color: #8a7a6d;
    text-align: center;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
}

.sct-tpl-service-city .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0e6da;
    font-size: 0.92rem;
}

.sct-tpl-service-city .sct-hero-card-list li:last-child { border-bottom: none; }

.sct-tpl-service-city .sct-hero-card-list i {
    color: #c8a97e;
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.sct-tpl-service-city .sct-hero-card-list strong {
    display: block;
    color: #331c11;
    font-weight: 700;
    margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hero-card-list span { color: #8a7a6d; }

.sct-tpl-service-city .sct-hero-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #331c11;
    color: #fdedd6;
    padding: 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background .3s ease, color .3s ease, transform .2s ease;
}

.sct-tpl-service-city .sct-hero-card-cta:hover {
    background: #c8a97e;
    color: #331c11;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-stats-band {
    background: #331c11;
    padding: 50px 0;
    color: #fdedd6;
}

.sct-tpl-service-city .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.sct-tpl-service-city .sct-stats-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #c8a97e;
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-stat-lbl {
    font-size: 0.92rem;
    color: rgba(253,237,214,0.78);
}

.sct-tpl-service-city .sct-section { padding: 80px 0; }

.sct-tpl-service-city .sct-section-header { text-align: center; margin-bottom: 50px; }

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    background: #fdedd6;
    color: #331c11;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: #331c11;
    margin-bottom: 14px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-section-sub {
    font-size: 1rem;
    color: #8a7a6d;
    max-width: 700px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-section-divider {
    width: 60px;
    height: 3px;
    background: #c8a97e;
    margin: 14px auto 0;
    border-radius: 2px;
}

.sct-tpl-service-city .sct-intro-section { background: #ffffff; }

.sct-tpl-service-city .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #4a3a2f;
}

.sct-tpl-service-city .sct-intro-content p { margin-bottom: 18px; }

.sct-tpl-service-city .sct-intro-content strong { color: #331c11; }

.sct-tpl-service-city .sct-services { background: #f8f4f0; }

.sct-tpl-service-city .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-city .sct-services-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(51,28,17,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(51,28,17,0.15);
}

.sct-tpl-service-city .sct-service-img {
    height: 200px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.sct-tpl-service-city .sct-service-card:hover .sct-service-img img { transform: scale(1.05); }

.sct-tpl-service-city .sct-service-body { padding: 26px 24px; }

.sct-tpl-service-city .sct-service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #331c11;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-service-body p {
    font-size: 0.94rem;
    color: #8a7a6d;
    line-height: 1.65;
}

.sct-tpl-service-city .sct-processus { background: #ffffff; }

.sct-tpl-service-city .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.sct-tpl-service-city .sct-processus-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-step {
    text-align: center;
    padding: 26px 18px;
    background: #f8f4f0;
    border-radius: 14px;
    border: 1px solid #f0e6da;
    transition: transform .3s ease, border-color .3s ease;
    position: relative;
}

.sct-tpl-service-city .sct-step:hover {
    transform: translateY(-4px);
    border-color: #c8a97e;
}

.sct-tpl-service-city .sct-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #331c11;
    color: #c8a97e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
}

.sct-tpl-service-city .sct-step-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(200,169,126,0.5);
}

.sct-tpl-service-city .sct-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #331c11;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-step p {
    font-size: 0.86rem;
    color: #8a7a6d;
    line-height: 1.55;
}

.sct-tpl-service-city .sct-why-section { background: #f8f4f0; }

.sct-tpl-service-city .sct-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sct-tpl-service-city .sct-why-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-why-card {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 14px;
    text-align: center;
    border-top: 4px solid #c8a97e;
    box-shadow: 0 4px 18px rgba(51,28,17,0.06);
    transition: transform .3s ease;
}

.sct-tpl-service-city .sct-why-card:hover { transform: translateY(-5px); }

.sct-tpl-service-city .sct-why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(200,169,126,0.18);
    color: #c8a97e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #331c11;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.9rem;
    color: #8a7a6d;
    line-height: 1.6;
}

.sct-tpl-service-city .sct-zones-section { background: #ffffff; }

.sct-tpl-service-city .sct-zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-zones-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-zone-item {
    background: #f8f4f0;
    padding: 14px 18px;
    border-radius: 10px;
    border-left: 4px solid #c8a97e;
    font-size: 0.92rem;
    color: #4a3a2f;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background .3s ease, transform .3s ease;
}

.sct-tpl-service-city .sct-zone-item:hover {
    background: #fdedd6;
    transform: translateX(3px);
}

.sct-tpl-service-city .sct-zone-item i { color: #c8a97e; flex-shrink: 0; }

.sct-tpl-service-city .sct-usecase-section { background: #f8f4f0; }

.sct-tpl-service-city .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-service-city .sct-usecase-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-usecase-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(51,28,17,0.18);
}

.sct-tpl-service-city .sct-usecase-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sct-tpl-service-city .sct-usecase-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #331c11;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-usecase-text p {
    font-size: 1rem;
    color: #4a3a2f;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-usecase-text strong { color: #331c11; }

.sct-tpl-service-city .sct-engagements-section {
    background: #331c11;
    color: #fdedd6;
}

.sct-tpl-service-city .sct-engagements-section .sct-section-tag {
    background: rgba(200,169,126,0.2);
    color: #c8a97e;
}

.sct-tpl-service-city .sct-engagements-section .sct-section-title { color: #fdedd6; }

.sct-tpl-service-city .sct-engagements-section .sct-section-sub { color: rgba(253,237,214,0.7); }

.sct-tpl-service-city .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sct-tpl-service-city .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-service-city .sct-engagement-card {
    text-align: center;
    padding: 32px 22px;
    background: rgba(253,237,214,0.06);
    border-radius: 16px;
    border: 1px solid rgba(200,169,126,0.18);
    transition: transform .3s ease, background .3s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-4px);
    background: rgba(253,237,214,0.1);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200,169,126,0.18);
    color: #c8a97e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fdedd6;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.92rem;
    color: rgba(253,237,214,0.7);
    line-height: 1.65;
}

.sct-tpl-service-city .sct-local-spec { background: #fdedd6; }

.sct-tpl-service-city .sct-local-spec-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: #4a3a2f;
}

.sct-tpl-service-city .sct-local-spec-content strong { color: #331c11; }

.sct-tpl-service-city .sct-faq-section { background: #ffffff; }

.sct-tpl-service-city .sct-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-faq-item {
    background: #f8f4f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color .3s ease;
}

.sct-tpl-service-city .sct-faq-item[open] { border-color: #c8a97e; }

.sct-tpl-service-city .sct-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    font-weight: 600;
    color: #331c11;
    list-style: none;
    gap: 16px;
}

.sct-tpl-service-city .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-service-city .sct-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #c8a97e;
    transition: transform .3s ease;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-faq-item[open] summary::after { transform: rotate(180deg); }

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 24px 22px;
    font-size: 0.95rem;
    color: #4a3a2f;
    line-height: 1.75;
}

.sct-tpl-service-city .sct-maillage-section { background: #f8f4f0; padding: 60px 0; }

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section { background: #ffffff; }

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #331c11;
    text-align: center;
    margin-bottom: 26px;
}

.sct-tpl-service-city .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #331c11;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid #e8ddd0;
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .2s ease;
}

.sct-tpl-service-city .sct-maillage-list a:hover {
    background: #c8a97e;
    color: #331c11;
    border-color: #c8a97e;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-maillage-list a i { color: #c8a97e; transition: color .3s ease; }

.sct-tpl-service-city .sct-maillage-list a:hover i { color: #331c11; }

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, rgba(51,28,17,0.94), rgba(51,28,17,0.85)), url('/images/service_1_1776252843_69df77abc7bee.webp') center/cover no-repeat;
    color: #fdedd6;
    padding: 70px 0;
    text-align: center;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fdedd6;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.05rem;
    color: rgba(253,237,214,0.85);
    margin-bottom: 28px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-service-city .sct-cta-final-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sct-tpl-service-city .sct-hero-card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 2.3rem; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.8rem; }
    .sct-tpl-service-city .sct-section { padding: 60px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .sct-tpl-service-city .sct-stat-num { font-size: 2rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.55rem; }
    .sct-tpl-service-city .sct-section { padding: 50px 0; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.78rem; }
}

.sct-tpl-service-hub main { display: block; }

.sct-tpl-service-hub .sct-breadcrumb-wrap {
    background: var(--gray-light);
    padding: 100px 0 18px;
    border-bottom: 1px solid #ece4d9;
}

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.9rem;
    color: var(--gray);
}

.sct-tpl-service-hub .sct-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: var(--accent); }

.sct-tpl-service-hub .sct-breadcrumb i { font-size: 0.7rem; color: var(--gray); }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, rgba(51, 28, 17, 0.92), rgba(51, 28, 17, 0.78)), url('/images/service_1_1776252843_69df77abc7bee.webp') center/cover no-repeat;
    color: var(--secondary);
}

.sct-tpl-service-hub .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.sct-tpl-service-hub .sct-hero-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-hero-text, .sct-tpl-service-hub .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-block;
    background: rgba(200, 169, 126, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-hero-text h1 span { color: var(--accent); }

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(253, 237, 214, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.sct-tpl-service-hub .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 126, 0.4);
}

.sct-tpl-service-hub .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--secondary);
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--accent);
    transition: background 0.3s ease, transform 0.2s ease;
}

.sct-tpl-service-hub .sct-btn-secondary:hover {
    background: rgba(200, 169, 126, 0.15);
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(253, 237, 214, 0.08);
    border: 1px solid rgba(200, 169, 126, 0.3);
    border-radius: 16px;
    padding: 32px 28px;
    backdrop-filter: blur(10px);
}

.sct-tpl-service-hub .sct-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 18px;
    text-align: center;
}

.sct-tpl-service-hub .sct-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sct-tpl-service-hub .sct-hero-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: rgba(253, 237, 214, 0.92);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(200, 169, 126, 0.15);
}

.sct-tpl-service-hub .sct-hero-card li:last-child { border-bottom: none; }

.sct-tpl-service-hub .sct-hero-card li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-stats-band {
    background: var(--primary);
    padding: 50px 0;
    border-top: 3px solid var(--accent);
}

.sct-tpl-service-hub .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.sct-tpl-service-hub .sct-stats-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-stat-item { color: var(--secondary); }

.sct-tpl-service-hub .sct-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.9rem;
    color: rgba(253, 237, 214, 0.8);
}

.sct-tpl-service-hub .sct-section { padding: 80px 0; }

.sct-tpl-service-hub .sct-section-header { text-align: center; margin-bottom: 50px; }

.sct-tpl-service-hub .sct-section-label {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.sct-tpl-service-hub .sct-intro-section { background: var(--white); }

.sct-tpl-service-hub .sct-intro-content {
    max-width: 860px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-intro-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-intro-content p:last-child { margin-bottom: 0; }

.sct-tpl-service-hub .sct-services-section { background: var(--gray-light); }

.sct-tpl-service-hub .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sct-tpl-service-hub .sct-services-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(51, 28, 17, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(51, 28, 17, 0.15);
}

.sct-tpl-service-hub .sct-service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sct-tpl-service-hub .sct-service-card:hover .sct-service-img img { transform: scale(1.05); }

.sct-tpl-service-hub .sct-service-body { padding: 28px 24px; }

.sct-tpl-service-hub .sct-service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-service-body p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-processus-section { background: var(--white); }

.sct-tpl-service-hub .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

.sct-tpl-service-hub .sct-processus-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-step-item {
    text-align: center;
    padding: 28px 18px;
    background: var(--gray-light);
    border-radius: 14px;
    border-top: 3px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sct-tpl-service-hub .sct-step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(51, 28, 17, 0.1);
}

.sct-tpl-service-hub .sct-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.sct-tpl-service-hub .sct-step-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-step-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.sct-tpl-service-hub .sct-why-section { background: var(--gray-light); }

.sct-tpl-service-hub .sct-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.sct-tpl-service-hub .sct-why-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-why-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(51, 28, 17, 0.06);
    transition: transform 0.3s ease;
}

.sct-tpl-service-hub .sct-why-card:hover { transform: translateY(-4px); }

.sct-tpl-service-hub .sct-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-usecase-section { background: var(--white); }

.sct-tpl-service-hub .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sct-tpl-service-hub .sct-usecase-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-usecase-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(51, 28, 17, 0.15);
}

.sct-tpl-service-hub .sct-usecase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 22px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-usecase-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-usecase-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.sct-tpl-service-hub .sct-usecase-text li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.98rem;
    line-height: 1.6;
}

.sct-tpl-service-hub .sct-usecase-text li i {
    color: var(--accent);
    margin-top: 5px;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-engagements-section {
    background: var(--primary);
    color: var(--secondary);
}

.sct-tpl-service-hub .sct-engagements-section .sct-section-header h2 { color: var(--secondary); }

.sct-tpl-service-hub .sct-engagements-section .sct-section-header p { color: rgba(253, 237, 214, 0.7); }

.sct-tpl-service-hub .sct-engagements-section .sct-section-label {
    background: rgba(200, 169, 126, 0.2);
    color: var(--accent);
}

.sct-tpl-service-hub .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sct-tpl-service-hub .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-engagement-item {
    text-align: center;
    padding: 36px 24px;
    background: rgba(253, 237, 214, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(200, 169, 126, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.sct-tpl-service-hub .sct-engagement-item:hover {
    transform: translateY(-4px);
    background: rgba(253, 237, 214, 0.1);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(200, 169, 126, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--accent);
}

.sct-tpl-service-hub .sct-engagement-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-engagement-item p {
    font-size: 0.95rem;
    color: rgba(253, 237, 214, 0.75);
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-faq-section { background: var(--gray-light); }

.sct-tpl-service-hub .sct-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(51, 28, 17, 0.06);
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.sct-tpl-service-hub .sct-faq-item[open] { border-color: var(--accent); }

.sct-tpl-service-hub .sct-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    gap: 16px;
    list-style: none;
}

.sct-tpl-service-hub .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-faq-item[open] summary::after { transform: rotate(180deg); }

.sct-tpl-service-hub .sct-faq-answer {
    padding: 0 24px 22px;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-maillage-section { background: var(--white); }

.sct-tpl-service-hub .sct-maillage-section.sct-alt { background: var(--gray-light); }

.sct-tpl-service-hub .sct-maillage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.sct-tpl-service-hub .sct-maillage-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-maillage-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid #ece4d9;
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
    transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-maillage-section.sct-alt .sct-maillage-grid a { background: var(--white); }

.sct-tpl-service-hub .sct-maillage-grid a:hover {
    background: var(--secondary);
    border-color: var(--primary);
    transform: translateX(3px);
    color: var(--primary);
}

.sct-tpl-service-hub .sct-maillage-grid a i {
    color: var(--accent);
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-maillage-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sct-tpl-service-hub .sct-maillage-services-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-maillage-services-grid a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid #ece4d9;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-maillage-services-grid a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(51, 28, 17, 0.1);
    border-color: var(--accent);
}

.sct-tpl-service-hub .sct-maillage-services-grid a i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, var(--primary), #4a2818);
    padding: 80px 0;
    text-align: center;
    color: var(--secondary);
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 18px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.1rem;
    color: rgba(253, 237, 214, 0.85);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-cta-final-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.3rem; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-maillage-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-section-header h2 { font-size: 1.8rem; }
    .sct-tpl-service-hub .sct-usecase-text h2 { font-size: 1.7rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.8rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 60px 0 70px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-tpl-service-hub .sct-stat-number { font-size: 2rem; }
    .sct-tpl-service-hub .sct-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-service-hub .sct-section-header h2 { font-size: 1.55rem; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; gap: 16px; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; gap: 18px; }
    .sct-tpl-service-hub .sct-maillage-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-usecase-text h2 { font-size: 1.5rem; }
    .sct-tpl-service-hub .sct-cta-final { padding: 60px 0; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.55rem; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-faq-item summary { font-size: 0.98rem; padding: 18px 20px; }
    .sct-tpl-service-hub .sct-intro-content p { font-size: 1rem; }
}

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    padding: 100px 0 0;
    font-size: 0.9rem;
    color: rgba(253, 237, 214, 0.75);
}

.sct-tpl-zone .sct-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.sct-tpl-zone .sct-breadcrumb a:hover { text-decoration: underline; }

.sct-tpl-zone .sct-breadcrumb i { font-size: 0.7rem; opacity: 0.6; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 40px 0 90px;
    background: linear-gradient(135deg, rgba(51, 28, 17, 0.92), rgba(51, 28, 17, 0.78)), url('/images/service_1_1776252843_69df77abc7bee.webp') center/cover no-repeat;
    color: var(--text-light);
}

.sct-tpl-zone .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.sct-tpl-zone .sct-hero-grid > * { min-width: 0; }

.sct-tpl-zone .sct-hero-text, .sct-tpl-zone .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-tpl-zone .sct-hero-badge {
    display: inline-block;
    background: rgba(200, 169, 126, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-hero-text h1 span { color: var(--accent); }

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(253, 237, 214, 0.85);
    margin-bottom: 28px;
    font-style: italic;
}

.sct-tpl-zone .sct-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sct-tpl-zone .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 126, 0.4);
}

.sct-tpl-zone .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--secondary);
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    border: 2px solid var(--accent);
    transition: background 0.3s ease, transform 0.2s ease;
}

.sct-tpl-zone .sct-btn-secondary:hover {
    background: rgba(200, 169, 126, 0.15);
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-hero-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sct-tpl-zone .sct-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}

.sct-tpl-zone .sct-hero-card-sub {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.sct-tpl-zone .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.sct-tpl-zone .sct-hero-card-list li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: var(--primary);
    color: var(--secondary);
    padding: 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease;
}

.sct-tpl-zone .sct-hero-card-cta:hover {
    background: var(--accent);
    color: var(--primary);
}

.sct-tpl-zone .sct-stats-band {
    background: var(--primary);
    padding: 50px 0;
}

.sct-tpl-zone .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.sct-tpl-zone .sct-stats-grid > * { min-width: 0; }

.sct-tpl-zone .sct-stat-item { color: var(--secondary); }

.sct-tpl-zone .sct-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.92rem;
    color: rgba(253, 237, 214, 0.8);
}

.sct-tpl-zone .sct-section { padding: 80px 0; }

.sct-tpl-zone .sct-section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-zone .sct-section-label {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-section-header p {
    font-size: 1.02rem;
    color: var(--gray);
}

.sct-tpl-zone .sct-section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 14px auto 0;
    border-radius: 2px;
}

.sct-tpl-zone .sct-intro-section {
    background: var(--white);
    padding: 80px 0;
}

.sct-tpl-zone .sct-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sct-tpl-zone .sct-intro-grid > * { min-width: 0; }

.sct-tpl-zone .sct-intro-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(51, 28, 17, 0.15);
}

.sct-tpl-zone .sct-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

.sct-tpl-zone .sct-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-intro-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.sct-tpl-zone .sct-services-section {
    background: var(--gray-light);
}

.sct-tpl-zone .sct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sct-tpl-zone .sct-services-grid > * { min-width: 0; }

.sct-tpl-zone .sct-service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(51, 28, 17, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(51, 28, 17, 0.15);
}

.sct-tpl-zone .sct-service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sct-tpl-zone .sct-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sct-tpl-zone .sct-service-card:hover .sct-service-img img {
    transform: scale(1.05);
}

.sct-tpl-zone .sct-service-body {
    padding: 26px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-service-body p {
    font-size: 0.94rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.sct-tpl-zone .sct-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    margin-top: auto;
}

.sct-tpl-zone .sct-service-link:hover { color: var(--primary); }

.sct-tpl-zone .sct-zones-section {
    background: var(--white);
}

.sct-tpl-zone .sct-zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sct-tpl-zone .sct-zones-grid > * { min-width: 0; }

.sct-tpl-zone .sct-zone-card {
    background: var(--gray-light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sct-tpl-zone .sct-zone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(51, 28, 17, 0.08);
}

.sct-tpl-zone .sct-zone-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-zone-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.sct-tpl-zone .sct-usecase-section {
    background: var(--gray-light);
}

.sct-tpl-zone .sct-usecase-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(51, 28, 17, 0.08);
    border-top: 4px solid var(--accent);
}

.sct-tpl-zone .sct-usecase-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-usecase-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-usecase-card p:last-child { margin-bottom: 0; }

.sct-tpl-zone .sct-engagements-section {
    background: var(--primary);
    color: var(--secondary);
}

.sct-tpl-zone .sct-engagements-section .sct-section-header h2 { color: var(--secondary); }

.sct-tpl-zone .sct-engagements-section .sct-section-header p { color: rgba(253, 237, 214, 0.7); }

.sct-tpl-zone .sct-engagements-section .sct-section-label {
    background: rgba(200, 169, 126, 0.2);
    color: var(--accent);
}

.sct-tpl-zone .sct-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sct-tpl-zone .sct-engagements-grid > * { min-width: 0; }

.sct-tpl-zone .sct-engagement-item {
    text-align: center;
    padding: 32px 22px;
    background: rgba(253, 237, 214, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(200, 169, 126, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.sct-tpl-zone .sct-engagement-item:hover {
    transform: translateY(-4px);
    background: rgba(253, 237, 214, 0.1);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200, 169, 126, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--accent);
}

.sct-tpl-zone .sct-engagement-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary);
}

.sct-tpl-zone .sct-engagement-item p {
    font-size: 0.92rem;
    color: rgba(253, 237, 214, 0.7);
    line-height: 1.6;
}

.sct-tpl-zone .sct-local-spec {
    background: var(--white);
}

.sct-tpl-zone .sct-local-spec-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 900px;
    margin: 0 auto;
    border-left: 4px solid var(--accent);
}

.sct-tpl-zone .sct-local-spec-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-local-spec-card p {
    font-size: 0.98rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-local-spec-card p:last-child { margin-bottom: 0; }

.sct-tpl-zone .sct-faq-section {
    background: var(--secondary);
}

.sct-tpl-zone .sct-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(51, 28, 17, 0.06);
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.sct-tpl-zone .sct-faq-item.active { border-color: var(--accent); }

.sct-tpl-zone .sct-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    gap: 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.sct-tpl-zone .sct-faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-faq-item.active .sct-faq-question i { transform: rotate(180deg); }

.sct-tpl-zone .sct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sct-tpl-zone .sct-faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.sct-tpl-zone .sct-maillage-section {
    background: var(--gray-light);
}

.sct-tpl-zone .sct-maillage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-maillage-grid > * { min-width: 0; }

.sct-tpl-zone .sct-maillage-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 8px rgba(51, 28, 17, 0.05);
}

.sct-tpl-zone .sct-maillage-link:hover {
    transform: translateY(-3px);
    background: var(--primary);
    color: var(--secondary);
}

.sct-tpl-zone .sct-maillage-link i {
    color: var(--accent);
    font-size: 1rem;
}

.sct-tpl-zone .sct-maillage-link:hover i { color: var(--secondary); }

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, rgba(51, 28, 17, 0.92), rgba(51, 28, 17, 0.85)), url('/images/service_2_1776252867_69df77c3331d8.webp') center/cover no-repeat;
    color: var(--secondary);
    text-align: center;
    padding: 90px 0;
}

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-cta-final p {
    font-size: 1.05rem;
    color: rgba(253, 237, 214, 0.85);
    margin-bottom: 28px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-zone .sct-cta-final-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sct-tpl-zone .sct-hero-card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 2.3rem; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-zone .sct-section { padding: 60px 0; }
    .sct-tpl-zone .sct-intro-section { padding: 60px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 30px 0 70px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-tpl-zone .sct-stat-num { font-size: 2.1rem; }
    .sct-tpl-zone .sct-section-header h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-intro-text h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-usecase-card,
    .sct-tpl-zone .sct-local-spec-card { padding: 30px 24px; }
    .sct-tpl-zone .sct-cta-final { padding: 70px 0; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.7rem; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-section { padding: 50px 0; }
    .sct-tpl-zone .sct-intro-section { padding: 50px 0; }
}

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, rgba(51, 28, 17, 0.92), rgba(51, 28, 17, 0.85)), url('/images/service_3_1776252887_69df77d7da9d5.webp') center/cover no-repeat;
    color: var(--secondary);
    text-align: center;
    padding: 90px 0;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 40px 0 90px;
    background: linear-gradient(135deg, rgba(51, 28, 17, 0.92), rgba(51, 28, 17, 0.78)), url('/images/service_3_1776252887_69df77d7da9d5.webp') center/cover no-repeat;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 4px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
    .nav a {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(253, 237, 214, 0.1);
    }
    .menu-toggle {
        display: flex;
    }
}

.page-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(51, 28, 17, 0.94), rgba(51, 28, 17, 0.82)), url('https://webflash.pro/storage/uploads/298/hero_admin_1776252332_69df75ac15352.jpg') center/cover no-repeat;
    text-align: center;
    color: var(--secondary);
}

.page-hero-badge {
    display: inline-block;
    background: rgba(200, 169, 126, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero h1 span {
    color: var(--accent);
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(253, 237, 214, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.page-hero-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 24px auto 0;
    border-radius: 2px;
}

.sitemap {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--white);
}

.sitemap-block {
    margin-bottom: 70px;
}

.sitemap-block:last-child {
    margin-bottom: 0;
}

.sitemap-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-light);
}

.sitemap-block-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sitemap-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.sitemap-block-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 2px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-light);
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.chip i {
    font-size: 0.75rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

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

.chip:hover i {
    color: var(--accent);
    transform: translateX(3px);
}

.chip-primary {
    background: var(--primary);
    color: var(--secondary);
}

.chip-primary i {
    color: var(--accent);
}

.chip-primary:hover {
    background: var(--accent);
    color: var(--primary);
}

.chip-primary:hover i {
    color: var(--primary);
}

.subblock {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
}

.subblock:last-child {
    margin-bottom: 0;
}

.subblock-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subblock-title i {
    color: var(--accent);
    font-size: 1rem;
}

.subblock .chip {
    background: var(--white);
}

.sitemap-cta {
    background: var(--secondary);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
}

.sitemap-cta h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.sitemap-cta p {
    color: var(--gray);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.sitemap-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--secondary);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.sitemap-cta .btn-primary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 126, 0.4);
}

.footer {
    background: var(--primary);
    color: var(--secondary);
    padding-top: 60px;
    padding-bottom: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(253, 237, 214, 0.8);
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(253, 237, 214, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 237, 214, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(253, 237, 214, 0.6);
}

.footer-bottom a {
    color: rgba(253, 237, 214, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .page-hero p {
        font-size: 1rem;
    }
    .sitemap {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .sitemap-block {
        margin-bottom: 50px;
    }
    .sitemap-block-title {
        font-size: 1.4rem;
    }
    .sitemap-block-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .subblock {
        padding: 20px;
    }
    .chip {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .sitemap-cta {
        padding: 40px 20px;
    }
    .sitemap-cta h3 {
        font-size: 1.3rem;
    }
}