:root {
            --primary: #b76523;
            --primary-dark: #8f4d18;
            --secondary: #d0a975;
            --secondary-light: #e6c79a;
            --cream: #faf6f0;
            --cream-dark: #f1e9da;
            --dark: #3d2817;
            --text: #4a3a2a;
            --text-light: #7a6a5a;
            --olive: #7a8b5c;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(61,40,23,0.08);
            --shadow-md: 0 6px 24px rgba(61,40,23,0.12);
            --shadow-lg: 0 16px 48px rgba(61,40,23,0.18);
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --radius: 6px;
            --radius-lg: 16px;
        }

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

html { scroll-behavior: smooth; }

body {
            font-family: 'Inter', -apple-system, sans-serif;
            color: var(--text);
            background: var(--cream);
            line-height: 1.7;
            overflow-x: hidden;
            font-size: 16px;
        }

h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--dark);
            line-height: 1.2;
            font-weight: 700;
        }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }

h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }

h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 12px; }

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

a:hover { color: var(--primary-dark); }

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

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

section {
            padding: 90px 0;
            position: relative;
        }

.section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 64px;
        }

.section-eyebrow {
            display: inline-block;
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
            position: relative;
            padding: 0 32px;
        }

.section-eyebrow::before, .section-eyebrow::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 22px;
            height: 1px;
            background: var(--secondary);
        }

.section-eyebrow::before { left: 0; }

.section-eyebrow::after { right: 0; }

.section-subtitle {
            color: var(--text-light);
            font-size: 1.05rem;
            margin-top: 14px;
        }

.header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(250, 246, 240, 0.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            border-bottom: 1px solid rgba(208, 169, 117, 0.2);
        }

.header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 24px;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--dark);
        }

.logo img {
            height: 46px;
            width: auto;
            border-radius: 50%;
        }

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

.menu-toggle { display: none; cursor: pointer; }

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

.nav a {
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 6px 0;
        }

.nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

.nav a:hover::after { width: 100%; }

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

.btn-cta-nav {
            background: var(--primary);
            color: var(--white) !important;
            padding: 11px 22px !important;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(183, 101, 35, 0.3);
        }

.btn-cta-nav::after { display: none; }

.btn-cta-nav:hover {
            background: var(--primary-dark);
            color: var(--white) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(183, 101, 35, 0.4);
        }

@media (max-width: 768px) {
            .menu-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 1.6rem;
                padding: 8px 12px;
                color: var(--primary);
                background: transparent;
                border: none;
            }
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 4px;
                background: var(--cream);
                padding: 20px;
                box-shadow: var(--shadow-md);
                border-top: 1px solid var(--secondary-light);
            }
            .nav a {
                padding: 12px 16px;
                width: 100%;
                border-bottom: 1px solid rgba(208, 169, 117, 0.2);
            }
            .nav a:last-child { border-bottom: none; }
            .menu-check:checked ~ .nav { display: flex; }
            .menu-check:checked ~ .menu-toggle .fa-bars::before { content: "\f00d"; }
            .btn-cta-nav {
                text-align: center;
                margin-top: 8px;
            }
        }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 140px 24px 80px;
            overflow: hidden;
        }

.hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('https://webflash.pro/images/hero_admin_1781003697_6a27f5b19037c.jpg');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

.hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(61,40,23,0.85) 0%, rgba(183,101,35,0.65) 100%);
        }

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

.hero-eyebrow {
            display: inline-block;
            background: rgba(208, 169, 117, 0.2);
            border: 1px solid var(--secondary);
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
            color: var(--secondary-light);
        }

.hero h1 {
            color: var(--white);
            margin-bottom: 24px;
            text-shadow: 0 2px 24px rgba(0,0,0,0.4);
        }

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

.hero-subtitle {
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            margin-bottom: 36px;
            line-height: 1.6;
            opacity: 0.95;
        }

.hero-cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
            text-decoration: none;
        }

.btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 8px 24px rgba(183, 101, 35, 0.4);
        }

.btn-primary:hover {
            background: var(--primary-dark);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(183, 101, 35, 0.5);
        }

.btn-outline {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
        }

.btn-outline:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

.hero-scroll {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-size: 1.6rem;
            animation: bounce 2.2s infinite;
            z-index: 2;
            opacity: 0.7;
        }

@keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

.devis-section {
            background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
            padding: 80px 0;
        }

.devis-wrap {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 56px;
            align-items: center;
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 56px;
            box-shadow: var(--shadow-lg);
            border-top: 4px solid var(--primary);
        }

.devis-info h2 { color: var(--dark); margin-bottom: 18px; }

.devis-info p { color: var(--text-light); margin-bottom: 24px; }

.devis-info ul { list-style: none; }

.devis-info ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 14px;
            color: var(--text);
            font-weight: 500;
        }

.devis-info ul li i { color: var(--primary); font-size: 1.1rem; }

.form-card { width: 100%; }

.form-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

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

.form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: var(--dark);
            font-size: 0.92rem;
        }

.form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 13px 16px;
            border: 1.5px solid var(--cream-dark);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 0.97rem;
            background: var(--cream);
            color: var(--dark);
            transition: var(--transition);
        }

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(183, 101, 35, 0.1);
        }

.form-card button[type="submit"] {
            width: 100%;
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
        }

.form-card button[type="submit"]:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(183, 101, 35, 0.35);
        }

.form-status { margin-top: 16px; text-align: center; }

@media (max-width: 900px) {
            .devis-wrap {
                grid-template-columns: 1fr;
                padding: 36px 24px;
                gap: 32px;
            }
        }

.stats {
            background: var(--dark);
            padding: 70px 0;
            color: var(--white);
        }

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

.stat-item {
            padding: 20px;
            position: relative;
        }

.stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 20%;
            right: 0;
            width: 1px;
            height: 60%;
            background: rgba(208, 169, 117, 0.3);
        }

.stat-item i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 14px;
        }

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

.stat-label {
            font-size: 0.95rem;
            opacity: 0.85;
            letter-spacing: 0.5px;
        }

@media (max-width: 768px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .stat-item:not(:last-child)::after { display: none; }
        }

.services { background: var(--cream); }

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

.service-card {
            flex: 1 1 320px;
            max-width: 360px;
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(208, 169, 117, 0.2);
            display: flex;
            flex-direction: column;
        }

.service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

.service-icon-wrap {
            width: 72px;
            height: 72px;
            margin: 28px auto 16px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8rem;
            box-shadow: 0 6px 18px rgba(183, 101, 35, 0.25);
        }

.service-content {
            padding: 0 28px 32px;
            text-align: center;
            flex-grow: 1;
        }

.service-content h3 {
            color: var(--dark);
            margin-bottom: 12px;
        }

.service-content p {
            color: var(--text-light);
            font-size: 0.96rem;
            line-height: 1.65;
        }

.service-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            color: var(--secondary);
            font-size: 0.9rem;
        }

.service-decoration::before, .service-decoration::after {
            content: '';
            width: 20px;
            height: 1px;
            background: var(--secondary);
        }

.specialites {
            background: var(--dark);
            color: var(--cream);
            position: relative;
            overflow: hidden;
        }

.specialites::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 30%, rgba(208,169,117,0.08) 0%, transparent 50%),
                              radial-gradient(circle at 80% 70%, rgba(183,101,35,0.08) 0%, transparent 50%);
            pointer-events: none;
        }

.specialites .container { position: relative; z-index: 1; }

.specialites h2 { color: var(--white); }

.specialites .section-eyebrow { color: var(--secondary-light); }

.specialites .section-eyebrow::before, .specialites .section-eyebrow::after { background: var(--secondary); }

.specialites .section-subtitle { color: rgba(250,246,240,0.75); }

.ardoise {
            max-width: 760px;
            margin: 0 auto;
            background: linear-gradient(145deg, #2a1c10 0%, #3d2817 100%);
            border: 2px solid var(--secondary);
            border-radius: var(--radius-lg);
            padding: 48px 56px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 0 60px rgba(0,0,0,0.3);
        }

.ardoise-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            color: var(--secondary-light);
            font-size: 1.6rem;
            font-style: italic;
            margin-bottom: 8px;
        }

.ardoise-sub {
            text-align: center;
            color: rgba(208,169,117,0.7);
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 32px;
        }

.ardoise-list { list-style: none; }

.ardoise-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px dashed rgba(208,169,117,0.3);
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--cream);
        }

.ardoise-list li:last-child { border-bottom: none; }

.ardoise-list li i { color: var(--secondary); font-size: 0.9rem; }

.ardoise-cta {
            text-align: center;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(208,169,117,0.2);
        }

.ardoise-cta p {
            color: rgba(250,246,240,0.85);
            margin-bottom: 16px;
            font-style: italic;
        }

.ardoise-cta .btn { background: var(--secondary); color: var(--dark); }

.ardoise-cta .btn:hover { background: var(--secondary-light); transform: translateY(-3px); }

@media (max-width: 600px) {
            .ardoise { padding: 32px 24px; }
            .ardoise-list li { font-size: 1rem; flex-direction: column; align-items: flex-start; gap: 4px; }
        }

.nouveaute {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
        }

.nouveaute h2 { color: var(--white); }

.nouveaute .section-eyebrow { color: var(--secondary-light); }

.nouveaute .section-eyebrow::before, .nouveaute .section-eyebrow::after { background: var(--secondary-light); }

.nouveaute .section-subtitle { color: rgba(255,255,255,0.9); }

.badge-nouveau {
            display: inline-block;
            background: var(--secondary);
            color: var(--dark);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

.flyers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            max-width: 900px;
            margin: 48px auto 0;
        }

.flyer-item {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(0,0,0,0.25);
            transition: var(--transition);
        }

.flyer-item:hover { transform: translateY(-6px) scale(1.02); }

.flyer-item img {
            width: 100%;
            height: auto;
            display: block;
        }

.nouveaute-call {
            margin-top: 40px;
            font-size: 1.15rem;
            font-weight: 500;
        }

.nouveaute-call a {
            color: var(--white);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

@media (max-width: 700px) {
            .flyers-grid { grid-template-columns: 1fr; max-width: 420px; }
        }

.why-us { background: var(--cream-dark); }

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

.why-card {
            background: var(--white);
            padding: 36px 24px;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }

.why-card:hover {
            border-color: var(--secondary);
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

.why-card .icon-circle {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: var(--cream);
            border: 2px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            transition: var(--transition);
        }

.why-card:hover .icon-circle {
            background: var(--primary);
            color: var(--white);
            transform: rotate(360deg);
        }

.why-card h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

.why-card p {
            color: var(--text-light);
            font-size: 0.92rem;
        }

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

@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

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

.about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

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

.about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid var(--secondary);
            border-radius: var(--radius-lg);
            pointer-events: none;
            opacity: 0.5;
        }

.about-content h2 { margin-bottom: 24px; }

.about-content p {
            color: var(--text);
            margin-bottom: 18px;
            line-height: 1.8;
        }

.about-quote {
            background: var(--cream-dark);
            border-left: 4px solid var(--primary);
            padding: 24px 28px;
            margin: 28px 0;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: var(--dark);
            font-size: 1.1rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            position: relative;
        }

.about-quote i {
            color: var(--secondary);
            font-size: 1.2rem;
            margin-right: 8px;
        }

@media (max-width: 900px) {
            .about-wrap { grid-template-columns: 1fr; gap: 40px; }
            .about-image img { height: 380px; }
        }

.events {
            background: var(--cream);
        }

.events-wrap {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 56px;
            align-items: center;
        }

.events-content h2 { margin-bottom: 20px; }

.events-content p { color: var(--text); margin-bottom: 18px; }

.events-list {
            list-style: none;
            margin-top: 24px;
        }

.events-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 12px 0;
            color: var(--text);
        }

.events-list li i {
            color: var(--primary);
            margin-top: 4px;
            background: var(--cream-dark);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

.events-img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

.events-img img {
            width: 100%;
            height: 480px;
            object-fit: cover;
        }

@media (max-width: 900px) {
            .events-wrap { grid-template-columns: 1fr; }
            .events-img img { height: 360px; }
        }

.zones { background: var(--cream-dark); }

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

.zone-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 36px;
        }

.zone-pill {
            background: var(--white);
            padding: 12px 22px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--dark);
            font-weight: 500;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--secondary-light);
            transition: var(--transition);
        }

.zone-pill:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

.zone-pill i { color: var(--primary); }

.zone-pill:hover i { color: var(--white); }

.galerie { background: var(--cream); }

.galerie-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 220px;
            gap: 16px;
        }

.galerie-item {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }

.galerie-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

.galerie-item::after {
            content: '\f00e';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(61,40,23,0.7) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            opacity: 0;
            transition: var(--transition);
        }

.galerie-item:hover::after { opacity: 1; }

.galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.galerie-item:nth-child(6) { grid-column: span 2; }

@media (max-width: 900px) {
            .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
            .galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
            .galerie-item:nth-child(6) { grid-column: span 2; }
        }

.faq { background: var(--cream-dark); }

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

.faq-item {
            background: var(--white);
            border-radius: var(--radius-lg);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--secondary);
            transition: var(--transition);
        }

.faq-item[open] {
            border-left-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

.faq-item summary {
            padding: 22px 28px;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark);
            font-size: 1.05rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
            font-family: 'Playfair Display', serif;
        }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
            content: '+';
            color: var(--primary);
            font-size: 1.6rem;
            font-weight: 300;
            transition: transform 0.3s;
        }

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
            padding: 0 28px 24px;
            color: var(--text-light);
            line-height: 1.7;
        }

.horaires { background: var(--cream); }

.horaires-card {
            max-width: 540px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-md);
            border-top: 4px solid var(--primary);
        }

.horaires-card h3 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

.horaires-list { list-style: none; }

.horaires-list li {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid var(--cream-dark);
            font-size: 1rem;
        }

.horaires-list li:last-child { border-bottom: none; }

.horaires-list li .day { font-weight: 600; color: var(--dark); }

.horaires-list li .hours { color: var(--primary); font-weight: 500; }

.contact { background: var(--dark); color: var(--cream); }

.contact h2 { color: var(--white); }

.contact .section-eyebrow { color: var(--secondary-light); }

.contact .section-eyebrow::before, .contact .section-eyebrow::after { background: var(--secondary); }

.contact .section-subtitle { color: rgba(250,246,240,0.75); }

.contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
        }

.contact-info-list { list-style: none; margin-bottom: 32px; }

.contact-info-list li {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(208,169,117,0.2);
        }

.contact-info-list li:last-child { border-bottom: none; }

.contact-info-list i {
            width: 44px;
            height: 44px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            flex-shrink: 0;
            font-size: 1rem;
        }

.contact-info-list .info-label {
            display: block;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--secondary-light);
            margin-bottom: 4px;
        }

.contact-info-list .info-value {
            color: var(--white);
            font-size: 1.02rem;
        }

.contact-info-list .info-value a { color: var(--white); }

.contact-info-list .info-value a:hover { color: var(--secondary-light); }

.social-row { display: flex; gap: 14px; margin-top: 16px; }

.social-row a {
            width: 44px;
            height: 44px;
            background: rgba(208,169,117,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-light);
            transition: var(--transition);
            border: 1px solid rgba(208,169,117,0.3);
        }

.social-row a:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }

.contact-form-wrap {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-lg);
        }

.contact-form-wrap h3 { color: var(--dark); margin-bottom: 8px; }

.contact-form-wrap > p { color: var(--text-light); margin-bottom: 24px; }

#contactForm button[type="submit"] {
            width: 100%;
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
        }

#contactForm button[type="submit"]:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

#formStatus { margin-top: 16px; text-align: center; }

.map-wrap {
            margin-top: 60px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--secondary);
        }

.map-wrap iframe { display: block; width: 100%; }

@media (max-width: 900px) {
            .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
            .contact-form-wrap { padding: 28px 22px; }
        }

.footer {
            background: #2a1c10;
            color: rgba(250,246,240,0.75);
            padding: 64px 0 0;
        }

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

.footer-brand img {
            height: 50px;
            width: auto;
            margin-bottom: 16px;
            border-radius: 50%;
        }

.footer-brand p {
            font-size: 0.92rem;
            line-height: 1.7;
            margin-bottom: 18px;
        }

.footer-col .col-title {
            color: var(--secondary-light);
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
        }

.footer-col ul { list-style: none; }

.footer-col ul li {
            margin-bottom: 10px;
            font-size: 0.92rem;
        }

.footer-col ul li a {
            color: rgba(250,246,240,0.75);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

.footer-col ul li a:hover { color: var(--secondary); padding-left: 4px; }

.footer-col ul li i {
            color: var(--secondary);
            width: 16px;
            font-size: 0.85rem;
        }

.footer-bottom {
            border-top: 1px solid rgba(208,169,117,0.2);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.88rem;
        }

.footer-bottom a { color: var(--secondary-light); }

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

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 900px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
        }

@media (max-width: 560px) {
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { justify-content: center; text-align: center; }
        }

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

.modal.is-open { display: flex; }

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

.modal-close {
            position: absolute;
            top: 16px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-light);
        }

.modal-content .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 18px;
            display: block;
        }

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

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

@media (max-width: 768px) {
            section { padding: 64px 0; }
            .container { padding: 0 16px; }
            .section-header { margin-bottom: 44px; }
            .hero { padding: 120px 16px 60px; min-height: auto; }
            .btn { padding: 14px 26px; font-size: 0.95rem; }
        }

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

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

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

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

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

.sct-tpl-zone { background: #faf6f0; color: #4a3a2a; font-family: 'Inter', -apple-system, sans-serif; }

.sct-tpl-zone h1, .sct-tpl-zone h2, .sct-tpl-zone h3 { font-family: 'Playfair Display', Georgia, serif; color: #3d2817; line-height: 1.2; font-weight: 700; }

.sct-tpl-zone .sct-hero { position: relative; padding: 140px 0 80px; background: linear-gradient(135deg, #3d2817 0%, #5a3d22 100%); color: #fff; overflow: hidden; }

.sct-tpl-zone .sct-hero::before { content: ''; position: absolute; top: -120px; right: -100px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(208,169,117,0.16) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }

.sct-tpl-zone .sct-hero::after { content: ''; position: absolute; bottom: -140px; left: -100px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(183,101,35,0.18) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }

.sct-tpl-zone .sct-hero-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

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

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

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

.sct-tpl-zone .sct-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; max-width: 100%; overflow-wrap: anywhere; font-size: 0.88rem; margin-bottom: 22px; color: rgba(250,246,240,0.72); }

.sct-tpl-zone .sct-breadcrumb a { color: #e6c79a; font-weight: 500; }

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

.sct-tpl-zone .sct-bc-sep { color: rgba(208,169,117,0.55); }

.sct-tpl-zone .sct-bc-current { color: #fff; font-weight: 600; }

.sct-tpl-zone .sct-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }

.sct-tpl-zone .sct-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(208,169,117,0.14); color: #e6c79a; padding: 7px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; border: 1px solid rgba(208,169,117,0.35); }

.sct-tpl-zone .sct-hero-badge i { font-size: 0.85rem; }

.sct-tpl-zone .sct-hero-text h1 { font-size: clamp(1.95rem, 4.4vw, 3.1rem); font-weight: 900; color: #fff; margin-bottom: 22px; line-height: 1.15; text-shadow: 0 2px 24px rgba(0,0,0,0.3); }

.sct-tpl-zone .sct-hero-text h1 .sct-accent { color: #e6c79a; font-style: italic; }

.sct-tpl-zone .sct-hero-subtitle { font-size: 1.08rem; color: rgba(250,246,240,0.92); line-height: 1.7; margin-bottom: 30px; max-width: 560px; }

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

.sct-tpl-zone .sct-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.97rem; text-decoration: none; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); border: 2px solid transparent; cursor: pointer; }

.sct-tpl-zone .sct-btn-primary { background: #b76523; color: #fff; box-shadow: 0 8px 22px rgba(183,101,35,0.4); }

.sct-tpl-zone .sct-btn-primary:hover { background: #8f4d18; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(183,101,35,0.5); }

.sct-tpl-zone .sct-btn-outline-light { background: transparent; color: #fff; border-color: #fff; }

.sct-tpl-zone .sct-btn-outline-light:hover { background: #fff; color: #b76523; transform: translateY(-3px); }

.sct-tpl-zone .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }

.sct-tpl-zone .sct-hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; color: rgba(250,246,240,0.92); font-weight: 500; }

.sct-tpl-zone .sct-hero-trust i { color: #e6c79a; font-size: 0.95rem; }

.sct-tpl-zone .sct-hero-visual { position: relative; }

.sct-tpl-zone .sct-hero-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.sct-tpl-zone .sct-hero-image img { width: 100%; height: 420px; object-fit: cover; display: block; }

.sct-tpl-zone .sct-hero-image::after { content: ''; position: absolute; top: 18px; left: 18px; right: 18px; bottom: 18px; border: 2px solid rgba(208,169,117,0.55); border-radius: 12px; pointer-events: none; }

.sct-tpl-zone .sct-hero-pin { position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); background: #b76523; color: #fff; padding: 12px 26px; border-radius: 50px; font-weight: 600; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 9px; box-shadow: 0 10px 26px rgba(0,0,0,0.35); border: 2px solid #faf6f0; white-space: nowrap; }

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-zone .sct-hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 115px 0 70px; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.95rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-image img { height: 280px; }
}

.sct-tpl-zone .sct-stats-band { background: #faf6f0; padding: 60px 0; border-bottom: 1px solid rgba(208,169,117,0.3); }

.sct-tpl-zone .sct-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; max-width: 1100px; margin: 0 auto; }

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

.sct-tpl-zone .sct-stat-item { padding: 18px 12px; background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(61,40,23,0.06); border-bottom: 3px solid #d0a975; transition: all 0.3s ease; }

.sct-tpl-zone .sct-stat-item:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(61,40,23,0.12); border-bottom-color: #b76523; }

.sct-tpl-zone .sct-stat-icon { color: #b76523; font-size: 1.7rem; margin-bottom: 10px; }

.sct-tpl-zone .sct-stat-value { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; color: #3d2817; line-height: 1; margin-bottom: 6px; }

.sct-tpl-zone .sct-stat-label { font-size: 0.88rem; color: #7a6a5a; letter-spacing: 0.5px; }

@media (max-width: 768px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

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

.sct-tpl-zone .sct-section-header { text-align: center; max-width: 740px; margin: 0 auto 56px; }

.sct-tpl-zone .sct-section-eyebrow { display: inline-block; color: #b76523; font-size: 0.82rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; position: relative; padding: 0 32px; }

.sct-tpl-zone .sct-section-eyebrow::before, .sct-tpl-zone .sct-section-eyebrow::after { content: ''; position: absolute; top: 50%; width: 22px; height: 1px; background: #d0a975; }

.sct-tpl-zone .sct-section-eyebrow::before { left: 0; }

.sct-tpl-zone .sct-section-eyebrow::after { right: 0; }

.sct-tpl-zone .sct-section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #3d2817; margin-bottom: 14px; }

.sct-tpl-zone .sct-section-subtitle { color: #7a6a5a; font-size: 1.02rem; margin-top: 12px; line-height: 1.7; }

.sct-tpl-zone .sct-intro-section { background: #faf6f0; padding: 90px 0; }

.sct-tpl-zone .sct-intro-content { max-width: 880px; margin: 0 auto; }

.sct-tpl-zone .sct-intro-content p { font-size: 1.04rem; line-height: 1.85; color: #4a3a2a; margin-bottom: 22px; }

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

.sct-tpl-zone .sct-intro-content strong { color: #3d2817; font-weight: 600; }

.sct-tpl-zone .sct-intro-content p:first-child::first-letter { font-family: 'Playfair Display', serif; font-size: 3.2rem; float: left; line-height: 1; padding: 6px 12px 0 0; color: #b76523; font-weight: 700; }

.sct-tpl-zone .sct-services-section { background: #f1e9da; }

.sct-tpl-zone .sct-services-wrap { max-width: 1100px; margin: 0 auto; }

.sct-tpl-zone .sct-services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; list-style: none; padding: 0; margin: 0; }

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

@media (max-width: 768px) { .sct-tpl-zone .sct-services-list { grid-template-columns: 1fr; } }

.sct-tpl-zone .sct-zones-section { background: #faf6f0; }

.sct-tpl-zone .sct-zones-content { max-width: 1000px; margin: 0 auto; background: #fff; padding: 48px 44px; border-radius: 16px; box-shadow: 0 4px 18px rgba(61,40,23,0.08); border-left: 4px solid #b76523; }

.sct-tpl-zone .sct-zones-intro { color: #4a3a2a; line-height: 1.75; margin-bottom: 24px; font-size: 1rem; }

.sct-tpl-zone .sct-zones-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }

.sct-tpl-zone .sct-zones-list li { display: inline-flex; align-items: center; gap: 8px; background: #f1e9da; color: #3d2817; padding: 9px 18px; border-radius: 50px; font-size: 0.93rem; font-weight: 500; transition: all 0.3s ease; border: 1px solid transparent; }

.sct-tpl-zone .sct-zones-list li::before { content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #b76523; font-size: 0.85rem; }

.sct-tpl-zone .sct-zones-list li:hover { background: #fff; border-color: #d0a975; transform: translateY(-2px); }

@media (max-width: 640px) { .sct-tpl-zone .sct-zones-content { padding: 32px 22px; } }

.sct-tpl-zone .sct-usecase-section { background: #fff; }

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

.sct-tpl-zone .sct-usecase-wrap > * { min-width: 0; }

.sct-tpl-zone .sct-usecase-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(61,40,23,0.18); }

.sct-tpl-zone .sct-usecase-image img { width: 100%; height: 500px; object-fit: cover; display: block; }

.sct-tpl-zone .sct-usecase-image::after { content: ''; position: absolute; top: 18px; left: 18px; right: 18px; bottom: 18px; border: 2px solid #d0a975; border-radius: 12px; pointer-events: none; opacity: 0.55; }

.sct-tpl-zone .sct-usecase-content h2 { margin-bottom: 24px; }

.sct-tpl-zone .sct-usecase-content p { color: #4a3a2a; margin-bottom: 18px; line-height: 1.8; }

.sct-tpl-zone .sct-usecase-quote { background: #f1e9da; border-left: 4px solid #b76523; padding: 22px 26px; margin: 24px 0; font-family: 'Playfair Display', serif; font-style: italic; color: #3d2817; font-size: 1.05rem; border-radius: 0 6px 6px 0; }

.sct-tpl-zone .sct-usecase-quote i { color: #d0a975; font-size: 1.1rem; margin-right: 8px; }

@media (max-width: 900px) {
    .sct-tpl-zone .sct-usecase-wrap { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-usecase-image img { height: 360px; }
}

.sct-tpl-zone .sct-engagements-section { background: #3d2817; color: #faf6f0; position: relative; overflow: hidden; }

.sct-tpl-zone .sct-engagements-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(208,169,117,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(183,101,35,0.1) 0%, transparent 50%); pointer-events: none; }

.sct-tpl-zone .sct-engagements-section .sct-container { position: relative; z-index: 1; }

.sct-tpl-zone .sct-engagements-section .sct-section-title { color: #fff; }

.sct-tpl-zone .sct-engagements-section .sct-section-eyebrow { color: #e6c79a; }

.sct-tpl-zone .sct-engagements-section .sct-section-eyebrow::before, .sct-tpl-zone .sct-engagements-section .sct-section-eyebrow::after { background: #d0a975; }

.sct-tpl-zone .sct-engagements-section .sct-section-subtitle { color: rgba(250,246,240,0.75); }

.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-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(208,169,117,0.25); border-radius: 16px; padding: 36px 28px; text-align: center; transition: all 0.35s ease; backdrop-filter: blur(4px); }

.sct-tpl-zone .sct-engagement-card:hover { background: rgba(208,169,117,0.08); border-color: #d0a975; transform: translateY(-5px); }

.sct-tpl-zone .sct-engagement-icon { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: rgba(208,169,117,0.15); display: flex; align-items: center; justify-content: center; color: #e6c79a; font-size: 1.5rem; border: 1px solid #d0a975; }

.sct-tpl-zone .sct-engagement-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }

.sct-tpl-zone .sct-engagement-card p { color: rgba(250,246,240,0.78); font-size: 0.94rem; line-height: 1.7; }

@media (max-width: 900px) { .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.sct-tpl-zone .sct-local-spec { background: #f1e9da; padding: 80px 0; }

.sct-tpl-zone .sct-local-spec-inner { max-width: 880px; margin: 0 auto; background: #fff; padding: 44px 44px; border-radius: 16px; box-shadow: 0 4px 18px rgba(61,40,23,0.08); display: flex; gap: 28px; align-items: flex-start; }

.sct-tpl-zone .sct-local-spec-icon { flex-shrink: 0; width: 64px; height: 64px; background: linear-gradient(135deg, #b76523 0%, #d0a975 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; }

.sct-tpl-zone .sct-local-spec-body h3 { font-size: 1.35rem; color: #3d2817; margin-bottom: 12px; }

.sct-tpl-zone .sct-local-spec-body p { color: #4a3a2a; line-height: 1.8; font-size: 0.98rem; }

@media (max-width: 640px) {
    .sct-tpl-zone .sct-local-spec-inner { flex-direction: column; padding: 32px 24px; }
    .sct-tpl-zone .sct-local-spec-icon { margin: 0 auto; }
    .sct-tpl-zone .sct-local-spec-body { text-align: center; }
}

.sct-tpl-zone .sct-faq-section { background: #faf6f0; }

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

.sct-tpl-zone .sct-faq-item { background: #fff; border: 1px solid rgba(208,169,117,0.3); border-radius: 12px; margin-bottom: 14px; overflow: hidden; transition: all 0.3s ease; }

.sct-tpl-zone .sct-faq-item:hover { border-color: #d0a975; box-shadow: 0 4px 18px rgba(61,40,23,0.08); }

.sct-tpl-zone .sct-faq-item summary { padding: 22px 26px; cursor: pointer; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #3d2817; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }

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

.sct-tpl-zone .sct-faq-item summary::after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #b76523; font-size: 0.9rem; transition: transform 0.3s ease; flex-shrink: 0; }

.sct-tpl-zone .sct-faq-item[open] summary::after { content: '\f068'; }

.sct-tpl-zone .sct-faq-item[open] summary { border-bottom: 1px solid #f1e9da; }

.sct-tpl-zone .sct-faq-answer { padding: 20px 26px 26px; color: #4a3a2a; line-height: 1.8; font-size: 0.97rem; }

.sct-tpl-zone .sct-faq-answer p { margin-bottom: 12px; }

.sct-tpl-zone .sct-faq-answer p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .sct-tpl-zone .sct-faq-item summary { padding: 18px 20px; font-size: 1rem; }
    .sct-tpl-zone .sct-faq-answer { padding: 16px 20px 22px; }
}

.sct-tpl-zone .sct-maillage-section { background: #fff; padding: 70px 0; }

.sct-tpl-zone .sct-maillage-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #3d2817; text-align: center; margin-bottom: 10px; }

.sct-tpl-zone .sct-maillage-subtitle { text-align: center; color: #7a6a5a; font-size: 0.95rem; margin-bottom: 32px; }

.sct-tpl-zone .sct-maillage-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 1000px; margin: 0 auto; list-style: none; padding: 0; }

.sct-tpl-zone .sct-maillage-list li { margin: 0; }

.sct-tpl-zone .sct-maillage-list a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: #f1e9da; color: #3d2817; border-radius: 50px; font-size: 0.92rem; font-weight: 500; text-decoration: none; transition: all 0.3s ease; border: 1px solid transparent; }

.sct-tpl-zone .sct-maillage-list a:hover { background: #b76523; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(183,101,35,0.3); }

.sct-tpl-zone .sct-maillage-list a i { color: #b76523; transition: color 0.3s; }

.sct-tpl-zone .sct-maillage-list a:hover i { color: #fff; }

.sct-tpl-zone .sct-cta-final { background: linear-gradient(135deg, #b76523 0%, #8f4d18 100%); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }

.sct-tpl-zone .sct-cta-final::before { content: ''; position: absolute; top: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); border-radius: 50%; }

.sct-tpl-zone .sct-cta-final::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(208,169,117,0.15) 0%, transparent 70%); border-radius: 50%; }

.sct-tpl-zone .sct-cta-final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 24px; }

.sct-tpl-zone .sct-cta-final h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 16px; }

.sct-tpl-zone .sct-cta-final p { color: rgba(255,255,255,0.92); font-size: 1.08rem; margin-bottom: 32px; line-height: 1.7; }

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

.sct-tpl-zone .sct-cta-final .sct-btn-light { background: #fff; color: #b76523; }

.sct-tpl-zone .sct-cta-final .sct-btn-light:hover { background: #faf6f0; color: #8f4d18; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }

.sct-tpl-zone .sct-cta-final .sct-btn-ghost { background: transparent; color: #fff; border-color: #fff; }

.sct-tpl-zone .sct-cta-final .sct-btn-ghost:hover { background: #fff; color: #b76523; }

@media (max-width: 640px) {
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; }
}

.sct-tpl-service-city { background: var(--cream, #faf6f0); color: var(--text, #4a3a2a); font-family: 'Inter', -apple-system, sans-serif; }

.sct-tpl-service-city h1, .sct-tpl-service-city h2, .sct-tpl-service-city h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--dark, #3d2817); line-height: 1.2; font-weight: 700; }

.sct-tpl-service-city .sct-hero { position: relative; padding: 140px 0 80px; background: linear-gradient(135deg, #faf6f0 0%, #f1e9da 100%); overflow: hidden; }

.sct-tpl-service-city .sct-hero::before { content: ''; position: absolute; top: -120px; right: -120px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(208,169,117,0.18) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }

.sct-tpl-service-city .sct-hero-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.sct-tpl-service-city .sct-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; 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.88rem; margin-bottom: 22px; color: #7a6a5a; }

.sct-tpl-service-city .sct-breadcrumb a { color: #b76523; font-weight: 500; }

.sct-tpl-service-city .sct-breadcrumb a:hover { color: #8f4d18; text-decoration: underline; }

.sct-tpl-service-city .sct-bc-sep { color: #d0a975; }

.sct-tpl-service-city .sct-bc-current { color: #3d2817; font-weight: 600; }

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

.sct-tpl-service-city .sct-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(183,101,35,0.08); color: #b76523; padding: 7px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; border: 1px solid rgba(183,101,35,0.15); }

.sct-tpl-service-city .sct-hero-badge i { font-size: 0.85rem; }

.sct-tpl-service-city .sct-hero-text h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 900; color: #3d2817; margin-bottom: 22px; line-height: 1.15; }

.sct-tpl-service-city .sct-hero-text h1 .sct-accent { color: #b76523; font-style: italic; }

.sct-tpl-service-city .sct-hero-subtitle { font-size: 1.08rem; color: #4a3a2a; line-height: 1.7; margin-bottom: 30px; max-width: 560px; }

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

.sct-tpl-service-city .sct-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.97rem; text-decoration: none; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); border: 2px solid transparent; cursor: pointer; }

.sct-tpl-service-city .sct-btn-primary { background: #b76523; color: #fff; box-shadow: 0 8px 22px rgba(183,101,35,0.35); }

.sct-tpl-service-city .sct-btn-primary:hover { background: #8f4d18; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(183,101,35,0.45); }

.sct-tpl-service-city .sct-btn-outline { background: transparent; color: #b76523; border-color: #b76523; }

.sct-tpl-service-city .sct-btn-outline:hover { background: #b76523; color: #fff; transform: translateY(-3px); }

.sct-tpl-service-city .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }

.sct-tpl-service-city .sct-hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; color: #4a3a2a; font-weight: 500; }

.sct-tpl-service-city .sct-hero-trust i { color: #7a8b5c; font-size: 0.95rem; }

.sct-tpl-service-city .sct-hero-card { background: #fff; border-radius: 16px; padding: 36px 32px; box-shadow: 0 16px 48px rgba(61,40,23,0.15); border-top: 4px solid #b76523; }

.sct-tpl-service-city .sct-hero-card-title { font-family: 'Playfair Display', serif; color: #3d2817; font-size: 1.35rem; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px dashed #d0a975; }

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

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

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

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

.sct-tpl-service-city .sct-hero-card-list strong { color: #3d2817; display: block; font-size: 0.85rem; margin-bottom: 2px; }

.sct-tpl-service-city .sct-hero-card .sct-btn { width: 100%; }

@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%; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 115px 0 60px; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-card { padding: 28px 22px; }
}

.sct-tpl-service-city .sct-stats-band { background: #3d2817; color: #fff; padding: 60px 0; }

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

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

.sct-tpl-service-city .sct-stat-item { padding: 12px; position: relative; }

.sct-tpl-service-city .sct-stat-item:not(:last-child)::after { content: ''; position: absolute; top: 20%; right: 0; width: 1px; height: 60%; background: rgba(208,169,117,0.3); }

.sct-tpl-service-city .sct-stat-value { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 700; color: #e6c79a; line-height: 1; margin-bottom: 8px; }

.sct-tpl-service-city .sct-stat-label { font-size: 0.9rem; opacity: 0.85; letter-spacing: 0.5px; }

@media (max-width: 768px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sct-tpl-service-city .sct-stat-item:not(:last-child)::after { display: none; }
}

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

.sct-tpl-service-city .sct-section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }

.sct-tpl-service-city .sct-section-eyebrow { display: inline-block; color: #b76523; font-size: 0.82rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; position: relative; padding: 0 32px; }

.sct-tpl-service-city .sct-section-eyebrow::before, .sct-tpl-service-city .sct-section-eyebrow::after { content: ''; position: absolute; top: 50%; width: 22px; height: 1px; background: #d0a975; }

.sct-tpl-service-city .sct-section-eyebrow::before { left: 0; }

.sct-tpl-service-city .sct-section-eyebrow::after { right: 0; }

.sct-tpl-service-city .sct-section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #3d2817; margin-bottom: 14px; }

.sct-tpl-service-city .sct-section-subtitle { color: #7a6a5a; font-size: 1.02rem; margin-top: 12px; }

.sct-tpl-service-city .sct-intro-section { background: #faf6f0; padding: 80px 0; }

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

.sct-tpl-service-city .sct-intro-content p { font-size: 1.05rem; line-height: 1.85; color: #4a3a2a; margin-bottom: 22px; }

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

.sct-tpl-service-city .sct-intro-content strong { color: #3d2817; font-weight: 600; }

.sct-tpl-service-city .sct-intro-content p:first-child::first-letter { font-family: 'Playfair Display', serif; font-size: 3.2rem; float: left; line-height: 1; padding: 6px 12px 0 0; color: #b76523; font-weight: 700; }

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

.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: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(61,40,23,0.08); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); border: 1px solid rgba(208,169,117,0.25); display: flex; flex-direction: column; }

.sct-tpl-service-city .sct-service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(61,40,23,0.18); border-color: #d0a975; }

.sct-tpl-service-city .sct-service-card-img { width: 100%; height: 220px; overflow: hidden; position: relative; }

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

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

.sct-tpl-service-city .sct-service-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(61,40,23,0.25) 100%); }

.sct-tpl-service-city .sct-service-card-body { padding: 26px 26px 30px; text-align: left; flex-grow: 1; display: flex; flex-direction: column; }

.sct-tpl-service-city .sct-service-card-body h3 { color: #3d2817; margin-bottom: 12px; font-size: 1.25rem; }

.sct-tpl-service-city .sct-service-card-body p { color: #7a6a5a; font-size: 0.95rem; line-height: 1.7; }

.sct-tpl-service-city .sct-service-card-tag { display: inline-flex; align-items: center; gap: 6px; color: #b76523; font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }

.sct-tpl-service-city .sct-service-card-tag::before { content: ''; width: 18px; height: 1px; background: #b76523; }

@media (max-width: 992px) { .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 640px) { .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; gap: 22px; } }

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

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

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

.sct-tpl-service-city .sct-processus-grid::before { content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, #d0a975 0, #d0a975 8px, transparent 8px, transparent 16px); z-index: 0; }

.sct-tpl-service-city .sct-processus-step { text-align: center; position: relative; z-index: 1; }

.sct-tpl-service-city .sct-step-icon { width: 76px; height: 76px; margin: 0 auto 18px; background: #fff; border: 2px solid #d0a975; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #b76523; font-size: 1.6rem; box-shadow: 0 6px 18px rgba(61,40,23,0.1); position: relative; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }

.sct-tpl-service-city .sct-step-num { position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; background: #b76523; color: #fff; border-radius: 50%; font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #faf6f0; }

.sct-tpl-service-city .sct-processus-step:hover .sct-step-icon { background: #b76523; color: #fff; transform: translateY(-4px); }

.sct-tpl-service-city .sct-processus-step h3 { font-size: 1.05rem; color: #3d2817; margin-bottom: 8px; }

.sct-tpl-service-city .sct-processus-step p { font-size: 0.9rem; color: #7a6a5a; line-height: 1.6; }

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
    .sct-tpl-service-city .sct-processus-grid::before { display: none; }
}

@media (max-width: 480px) { .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; } }

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

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

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

.sct-tpl-service-city .sct-why-card { background: #fff; padding: 36px 24px; border-radius: 16px; text-align: center; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); border: 1px solid transparent; }

.sct-tpl-service-city .sct-why-card:hover { border-color: #d0a975; transform: translateY(-6px); box-shadow: 0 12px 32px rgba(61,40,23,0.12); }

.sct-tpl-service-city .sct-why-icon { width: 68px; height: 68px; margin: 0 auto 20px; background: linear-gradient(135deg, #b76523 0%, #d0a975 100%); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; transition: all 0.35s ease; box-shadow: 0 6px 16px rgba(183,101,35,0.28); }

.sct-tpl-service-city .sct-why-card:hover .sct-why-icon { transform: rotate(-6deg) scale(1.05); }

.sct-tpl-service-city .sct-why-card h3 { font-size: 1.12rem; margin-bottom: 12px; color: #3d2817; }

.sct-tpl-service-city .sct-why-card p { color: #7a6a5a; font-size: 0.93rem; line-height: 1.65; }

@media (max-width: 992px) { .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 480px) { .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; } }

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

.sct-tpl-service-city .sct-zones-content { max-width: 1000px; margin: 0 auto; background: #fff; padding: 48px 44px; border-radius: 16px; box-shadow: 0 4px 18px rgba(61,40,23,0.08); border-left: 4px solid #b76523; }

.sct-tpl-service-city .sct-zones-intro { color: #4a3a2a; line-height: 1.75; margin-bottom: 24px; font-size: 1rem; }

.sct-tpl-service-city .sct-zones-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }

.sct-tpl-service-city .sct-zones-list li { display: inline-flex; align-items: center; gap: 8px; background: #f1e9da; color: #3d2817; padding: 9px 18px; border-radius: 50px; font-size: 0.93rem; font-weight: 500; transition: all 0.3s ease; border: 1px solid transparent; }

.sct-tpl-service-city .sct-zones-list li::before { content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #b76523; font-size: 0.85rem; }

.sct-tpl-service-city .sct-zones-list li:hover { background: #fff; border-color: #d0a975; transform: translateY(-2px); }

@media (max-width: 640px) { .sct-tpl-service-city .sct-zones-content { padding: 32px 22px; } }

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

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

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

.sct-tpl-service-city .sct-usecase-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(61,40,23,0.18); }

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

.sct-tpl-service-city .sct-usecase-image::after { content: ''; position: absolute; top: 18px; left: 18px; right: 18px; bottom: 18px; border: 2px solid #d0a975; border-radius: 12px; pointer-events: none; opacity: 0.55; }

.sct-tpl-service-city .sct-usecase-content h2 { margin-bottom: 24px; }

.sct-tpl-service-city .sct-usecase-content p { color: #4a3a2a; margin-bottom: 18px; line-height: 1.8; }

.sct-tpl-service-city .sct-usecase-quote { background: #f1e9da; border-left: 4px solid #b76523; padding: 22px 26px; margin: 24px 0; font-family: 'Playfair Display', serif; font-style: italic; color: #3d2817; font-size: 1.05rem; border-radius: 0 6px 6px 0; }

.sct-tpl-service-city .sct-usecase-quote i { color: #d0a975; font-size: 1.1rem; margin-right: 8px; }

@media (max-width: 900px) {
    .sct-tpl-service-city .sct-usecase-wrap { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-usecase-image img { height: 360px; }
}

.sct-tpl-service-city .sct-engagements-section { background: #3d2817; color: #faf6f0; position: relative; overflow: hidden; }

.sct-tpl-service-city .sct-engagements-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(208,169,117,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(183,101,35,0.1) 0%, transparent 50%); pointer-events: none; }

.sct-tpl-service-city .sct-engagements-section .sct-container { position: relative; z-index: 1; }

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

.sct-tpl-service-city .sct-engagements-section .sct-section-eyebrow { color: #e6c79a; }

.sct-tpl-service-city .sct-engagements-section .sct-section-eyebrow::before, .sct-tpl-service-city .sct-engagements-section .sct-section-eyebrow::after { background: #d0a975; }

.sct-tpl-service-city .sct-engagements-section .sct-section-subtitle { color: rgba(250,246,240,0.75); }

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

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

.sct-tpl-service-city .sct-engagement-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(208,169,117,0.25); border-radius: 16px; padding: 36px 28px; text-align: center; transition: all 0.35s ease; backdrop-filter: blur(4px); }

.sct-tpl-service-city .sct-engagement-card:hover { background: rgba(208,169,117,0.08); border-color: #d0a975; transform: translateY(-5px); }

.sct-tpl-service-city .sct-engagement-icon { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: rgba(208,169,117,0.15); display: flex; align-items: center; justify-content: center; color: #e6c79a; font-size: 1.5rem; border: 1px solid #d0a975; }

.sct-tpl-service-city .sct-engagement-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }

.sct-tpl-service-city .sct-engagement-card p { color: rgba(250,246,240,0.78); font-size: 0.94rem; line-height: 1.7; }

@media (max-width: 900px) { .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.sct-tpl-service-city .sct-local-spec { background: #f1e9da; padding: 80px 0; }

.sct-tpl-service-city .sct-local-spec-inner { max-width: 880px; margin: 0 auto; background: #fff; padding: 44px 44px; border-radius: 16px; box-shadow: 0 4px 18px rgba(61,40,23,0.08); display: flex; gap: 28px; align-items: flex-start; }

.sct-tpl-service-city .sct-local-spec-icon { flex-shrink: 0; width: 64px; height: 64px; background: linear-gradient(135deg, #b76523 0%, #d0a975 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; }

.sct-tpl-service-city .sct-local-spec-body h3 { font-size: 1.35rem; color: #3d2817; margin-bottom: 12px; }

.sct-tpl-service-city .sct-local-spec-body p { color: #4a3a2a; line-height: 1.8; font-size: 0.98rem; }

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-local-spec-inner { flex-direction: column; padding: 32px 24px; }
    .sct-tpl-service-city .sct-local-spec-icon { margin: 0 auto; }
    .sct-tpl-service-city .sct-local-spec-body { text-align: center; }
}

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

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

.sct-tpl-service-city .sct-faq-item { background: #fff; border: 1px solid rgba(208,169,117,0.3); border-radius: 12px; margin-bottom: 14px; overflow: hidden; transition: all 0.3s ease; }

.sct-tpl-service-city .sct-faq-item:hover { border-color: #d0a975; box-shadow: 0 4px 18px rgba(61,40,23,0.08); }

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

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

.sct-tpl-service-city .sct-faq-item summary::after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #b76523; font-size: 0.9rem; transition: transform 0.3s ease; flex-shrink: 0; }

.sct-tpl-service-city .sct-faq-item[open] summary::after { content: '\f068'; }

.sct-tpl-service-city .sct-faq-item[open] summary { border-bottom: 1px solid #f1e9da; }

.sct-tpl-service-city .sct-faq-answer { padding: 20px 26px 26px; color: #4a3a2a; line-height: 1.8; font-size: 0.97rem; }

.sct-tpl-service-city .sct-faq-answer p { margin-bottom: 12px; }

.sct-tpl-service-city .sct-faq-answer p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-faq-item summary { padding: 18px 20px; font-size: 1rem; }
    .sct-tpl-service-city .sct-faq-answer { padding: 16px 20px 22px; }
}

.sct-tpl-service-city .sct-maillage-section { background: #fff; padding: 70px 0; border-top: 1px solid #f1e9da; }

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section { border-top: none; padding-top: 0; }

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

.sct-tpl-service-city .sct-maillage-subtitle { text-align: center; color: #7a6a5a; font-size: 0.95rem; margin-bottom: 32px; }

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

.sct-tpl-service-city .sct-maillage-list li { margin: 0; }

.sct-tpl-service-city .sct-maillage-list a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: #f1e9da; color: #3d2817; border-radius: 50px; font-size: 0.92rem; font-weight: 500; text-decoration: none; transition: all 0.3s ease; border: 1px solid transparent; }

.sct-tpl-service-city .sct-maillage-list a:hover { background: #b76523; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(183,101,35,0.3); }

.sct-tpl-service-city .sct-maillage-list a i { color: #b76523; transition: color 0.3s; }

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

.sct-tpl-service-city .sct-cta-final { background: linear-gradient(135deg, #b76523 0%, #8f4d18 100%); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }

.sct-tpl-service-city .sct-cta-final::before { content: ''; position: absolute; top: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); border-radius: 50%; }

.sct-tpl-service-city .sct-cta-final::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(208,169,117,0.15) 0%, transparent 70%); border-radius: 50%; }

.sct-tpl-service-city .sct-cta-final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 24px; }

.sct-tpl-service-city .sct-cta-final h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 16px; }

.sct-tpl-service-city .sct-cta-final p { color: rgba(255,255,255,0.92); font-size: 1.08rem; margin-bottom: 32px; line-height: 1.7; }

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

.sct-tpl-service-city .sct-cta-final .sct-btn-light { background: #fff; color: #b76523; }

.sct-tpl-service-city .sct-cta-final .sct-btn-light:hover { background: #faf6f0; color: #8f4d18; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }

.sct-tpl-service-city .sct-cta-final .sct-btn-ghost { background: transparent; color: #fff; border-color: #fff; }

.sct-tpl-service-city .sct-cta-final .sct-btn-ghost:hover { background: #fff; color: #b76523; }

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; }
}

.sct-tpl-service-hub { background: #faf6f0; color: #4a3a2a; font-family: 'Inter', -apple-system, sans-serif; }

.sct-tpl-service-hub h1, .sct-tpl-service-hub h2, .sct-tpl-service-hub h3 { font-family: 'Playfair Display', Georgia, serif; color: #3d2817; line-height: 1.2; font-weight: 700; }

.sct-tpl-service-hub .sct-hero { position: relative; min-height: 86vh; display: flex; align-items: center; padding: 150px 0 90px; color: #fff; overflow: hidden; }

.sct-tpl-service-hub .sct-hero-bg { position: absolute; inset: 0; background-image: url('/images/hero.webp'); background-size: cover; background-position: center; z-index: 0; }

.sct-tpl-service-hub .sct-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(61,40,23,0.88) 0%, rgba(143,77,24,0.72) 50%, rgba(183,101,35,0.65) 100%); }

.sct-tpl-service-hub .sct-hero-container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }

.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.88rem; margin-bottom: 24px; color: rgba(255,255,255,0.75); }

.sct-tpl-service-hub .sct-breadcrumb a { color: #e6c79a; font-weight: 500; }

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: #fff; text-decoration: underline; }

.sct-tpl-service-hub .sct-bc-sep { color: rgba(208,169,117,0.6); }

.sct-tpl-service-hub .sct-bc-current { color: #fff; font-weight: 600; }

.sct-tpl-service-hub .sct-hero-eyebrow { display: inline-block; background: rgba(208,169,117,0.18); border: 1px solid #d0a975; padding: 8px 22px; border-radius: 50px; font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; color: #e6c79a; }

.sct-tpl-service-hub .sct-hero-content { max-width: 880px; }

.sct-tpl-service-hub .sct-hero-content h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 24px; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }

.sct-tpl-service-hub .sct-hero-content h1 .sct-accent { color: #e6c79a; font-style: italic; }

.sct-tpl-service-hub .sct-hero-subtitle { font-size: clamp(1.05rem, 2vw, 1.22rem); line-height: 1.7; margin-bottom: 36px; max-width: 760px; opacity: 0.96; }

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

.sct-tpl-service-hub .sct-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); border: 2px solid transparent; cursor: pointer; }

.sct-tpl-service-hub .sct-btn-primary { background: #b76523; color: #fff; box-shadow: 0 8px 24px rgba(183,101,35,0.4); }

.sct-tpl-service-hub .sct-btn-primary:hover { background: #8f4d18; color: #fff; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(183,101,35,0.5); }

.sct-tpl-service-hub .sct-btn-outline-light { background: transparent; color: #fff; border-color: #fff; }

.sct-tpl-service-hub .sct-btn-outline-light:hover { background: #fff; color: #b76523; transform: translateY(-3px); }

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

.sct-tpl-service-hub .sct-hero-trust span { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; color: rgba(255,255,255,0.92); font-weight: 500; }

.sct-tpl-service-hub .sct-hero-trust i { color: #e6c79a; font-size: 1rem; }

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { min-height: auto; padding: 130px 0 70px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; }
    .sct-tpl-service-hub .sct-hero-content h1 { font-size: 2rem; line-height: 1.2; }
}

.sct-tpl-service-hub .sct-stats-band { background: #3d2817; color: #fff; padding: 64px 0; }

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

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

.sct-tpl-service-hub .sct-stat-item { padding: 12px; position: relative; }

.sct-tpl-service-hub .sct-stat-item:not(:last-child)::after { content: ''; position: absolute; top: 20%; right: 0; width: 1px; height: 60%; background: rgba(208,169,117,0.3); }

.sct-tpl-service-hub .sct-stat-icon { color: #d0a975; font-size: 1.6rem; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-stat-value { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 700; color: #e6c79a; line-height: 1; margin-bottom: 8px; }

.sct-tpl-service-hub .sct-stat-label { font-size: 0.92rem; opacity: 0.85; letter-spacing: 0.5px; }

@media (max-width: 768px) {
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sct-tpl-service-hub .sct-stat-item:not(:last-child)::after { display: none; }
}

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

.sct-tpl-service-hub .sct-section-header { text-align: center; max-width: 740px; margin: 0 auto 56px; }

.sct-tpl-service-hub .sct-section-eyebrow { display: inline-block; color: #b76523; font-size: 0.82rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; position: relative; padding: 0 32px; }

.sct-tpl-service-hub .sct-section-eyebrow::before, .sct-tpl-service-hub .sct-section-eyebrow::after { content: ''; position: absolute; top: 50%; width: 22px; height: 1px; background: #d0a975; }

.sct-tpl-service-hub .sct-section-eyebrow::before { left: 0; }

.sct-tpl-service-hub .sct-section-eyebrow::after { right: 0; }

.sct-tpl-service-hub .sct-section-title { font-size: clamp(1.75rem, 4vw, 2.55rem); color: #3d2817; margin-bottom: 14px; }

.sct-tpl-service-hub .sct-section-subtitle { color: #7a6a5a; font-size: 1.02rem; margin-top: 12px; line-height: 1.7; }

.sct-tpl-service-hub .sct-intro-section { background: #faf6f0; padding: 90px 0; }

.sct-tpl-service-hub .sct-intro-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; max-width: 1100px; margin: 0 auto; }

.sct-tpl-service-hub .sct-intro-wrap > * { min-width: 0; }

.sct-tpl-service-hub .sct-intro-content p { font-size: 1.02rem; line-height: 1.85; color: #4a3a2a; margin-bottom: 20px; }

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

.sct-tpl-service-hub .sct-intro-content strong { color: #3d2817; font-weight: 600; }

.sct-tpl-service-hub .sct-intro-content p:first-child::first-letter { font-family: 'Playfair Display', serif; font-size: 3.2rem; float: left; line-height: 1; padding: 6px 12px 0 0; color: #b76523; font-weight: 700; }

.sct-tpl-service-hub .sct-intro-aside { background: #fff; padding: 36px 32px; border-radius: 16px; box-shadow: 0 8px 26px rgba(61,40,23,0.1); border-top: 4px solid #b76523; }

.sct-tpl-service-hub .sct-intro-aside h3 { color: #b76523; font-size: 1.25rem; margin-bottom: 18px; }

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

.sct-tpl-service-hub .sct-intro-aside ul li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px dashed rgba(208,169,117,0.4); color: #4a3a2a; font-size: 0.95rem; }

.sct-tpl-service-hub .sct-intro-aside ul li:last-child { border-bottom: none; }

.sct-tpl-service-hub .sct-intro-aside ul li i { color: #b76523; margin-top: 4px; flex-shrink: 0; }

@media (max-width: 900px) { .sct-tpl-service-hub .sct-intro-wrap { grid-template-columns: 1fr; gap: 36px; } }

.sct-tpl-service-hub .sct-services-section { background: #f1e9da; }

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

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

.sct-tpl-service-hub .sct-service-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(61,40,23,0.08); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); border: 1px solid rgba(208,169,117,0.25); display: flex; flex-direction: column; }

.sct-tpl-service-hub .sct-service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(61,40,23,0.18); border-color: #d0a975; }

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

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

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

.sct-tpl-service-hub .sct-service-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(61,40,23,0.25) 100%); }

.sct-tpl-service-hub .sct-service-card-body { padding: 26px 26px 30px; flex-grow: 1; display: flex; flex-direction: column; }

.sct-tpl-service-hub .sct-service-card-tag { display: inline-flex; align-items: center; gap: 6px; color: #b76523; font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-service-card-tag::before { content: ''; width: 18px; height: 1px; background: #b76523; }

.sct-tpl-service-hub .sct-service-card-body h3 { color: #3d2817; margin-bottom: 12px; font-size: 1.25rem; }

.sct-tpl-service-hub .sct-service-card-body p { color: #7a6a5a; font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 992px) { .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 640px) { .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; gap: 22px; } }

.sct-tpl-service-hub .sct-processus-section { background: #faf6f0; }

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

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

.sct-tpl-service-hub .sct-processus-grid::before { content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, #d0a975 0, #d0a975 8px, transparent 8px, transparent 16px); z-index: 0; }

.sct-tpl-service-hub .sct-processus-step { text-align: center; position: relative; z-index: 1; }

.sct-tpl-service-hub .sct-step-icon { width: 76px; height: 76px; margin: 0 auto 18px; background: #fff; border: 2px solid #d0a975; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #b76523; font-size: 1.6rem; box-shadow: 0 6px 18px rgba(61,40,23,0.1); position: relative; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }

.sct-tpl-service-hub .sct-step-num { position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; background: #b76523; color: #fff; border-radius: 50%; font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #faf6f0; }

.sct-tpl-service-hub .sct-processus-step:hover .sct-step-icon { background: #b76523; color: #fff; transform: translateY(-4px); }

.sct-tpl-service-hub .sct-processus-step h3 { font-size: 1.05rem; color: #3d2817; margin-bottom: 8px; }

.sct-tpl-service-hub .sct-processus-step p { font-size: 0.9rem; color: #7a6a5a; line-height: 1.6; }

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
    .sct-tpl-service-hub .sct-processus-grid::before { display: none; }
}

@media (max-width: 480px) { .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; } }

.sct-tpl-service-hub .sct-why-section { background: #f1e9da; }

.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: #fff; padding: 36px 24px; border-radius: 16px; text-align: center; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); border: 1px solid transparent; }

.sct-tpl-service-hub .sct-why-card:hover { border-color: #d0a975; transform: translateY(-6px); box-shadow: 0 12px 32px rgba(61,40,23,0.12); }

.sct-tpl-service-hub .sct-why-icon { width: 68px; height: 68px; margin: 0 auto 20px; background: linear-gradient(135deg, #b76523 0%, #d0a975 100%); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; box-shadow: 0 6px 16px rgba(183,101,35,0.28); transition: all 0.35s ease; }

.sct-tpl-service-hub .sct-why-card:hover .sct-why-icon { transform: rotate(-6deg) scale(1.05); }

.sct-tpl-service-hub .sct-why-card h3 { font-size: 1.12rem; margin-bottom: 12px; color: #3d2817; }

.sct-tpl-service-hub .sct-why-card p { color: #7a6a5a; font-size: 0.93rem; line-height: 1.65; }

@media (max-width: 992px) { .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 480px) { .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; } }

.sct-tpl-service-hub .sct-usecase-section { background: #fff; }

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

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

.sct-tpl-service-hub .sct-usecase-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(61,40,23,0.18); }

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

.sct-tpl-service-hub .sct-usecase-image::after { content: ''; position: absolute; top: 18px; left: 18px; right: 18px; bottom: 18px; border: 2px solid #d0a975; border-radius: 12px; pointer-events: none; opacity: 0.55; }

.sct-tpl-service-hub .sct-usecase-content h2 { margin-bottom: 24px; }

.sct-tpl-service-hub .sct-usecase-content p { color: #4a3a2a; margin-bottom: 18px; line-height: 1.8; }

.sct-tpl-service-hub .sct-usecase-quote { background: #f1e9da; border-left: 4px solid #b76523; padding: 22px 26px; margin: 24px 0; font-family: 'Playfair Display', serif; font-style: italic; color: #3d2817; font-size: 1.05rem; border-radius: 0 6px 6px 0; }

.sct-tpl-service-hub .sct-usecase-quote i { color: #d0a975; font-size: 1.1rem; margin-right: 8px; }

@media (max-width: 900px) {
    .sct-tpl-service-hub .sct-usecase-wrap { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-usecase-image img { height: 380px; }
}

.sct-tpl-service-hub .sct-engagements-section { background: #3d2817; color: #faf6f0; position: relative; overflow: hidden; }

.sct-tpl-service-hub .sct-engagements-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(208,169,117,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(183,101,35,0.1) 0%, transparent 50%); pointer-events: none; }

.sct-tpl-service-hub .sct-engagements-section .sct-container { position: relative; z-index: 1; }

.sct-tpl-service-hub .sct-engagements-section .sct-section-title { color: #fff; }

.sct-tpl-service-hub .sct-engagements-section .sct-section-eyebrow { color: #e6c79a; }

.sct-tpl-service-hub .sct-engagements-section .sct-section-eyebrow::before, .sct-tpl-service-hub .sct-engagements-section .sct-section-eyebrow::after { background: #d0a975; }

.sct-tpl-service-hub .sct-engagements-section .sct-section-subtitle { color: rgba(250,246,240,0.75); }

.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-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(208,169,117,0.25); border-radius: 16px; padding: 36px 28px; text-align: center; transition: all 0.35s ease; backdrop-filter: blur(4px); }

.sct-tpl-service-hub .sct-engagement-card:hover { background: rgba(208,169,117,0.08); border-color: #d0a975; transform: translateY(-5px); }

.sct-tpl-service-hub .sct-engagement-icon { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: rgba(208,169,117,0.15); display: flex; align-items: center; justify-content: center; color: #e6c79a; font-size: 1.5rem; border: 1px solid #d0a975; }

.sct-tpl-service-hub .sct-engagement-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }

.sct-tpl-service-hub .sct-engagement-card p { color: rgba(250,246,240,0.78); font-size: 0.94rem; line-height: 1.7; }

@media (max-width: 900px) { .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.sct-tpl-service-hub .sct-faq-section { background: #faf6f0; }

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

.sct-tpl-service-hub .sct-faq-item { background: #fff; border: 1px solid rgba(208,169,117,0.3); border-radius: 12px; margin-bottom: 14px; overflow: hidden; transition: all 0.3s ease; }

.sct-tpl-service-hub .sct-faq-item:hover { border-color: #d0a975; box-shadow: 0 4px 18px rgba(61,40,23,0.08); }

.sct-tpl-service-hub .sct-faq-item summary { padding: 22px 26px; cursor: pointer; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #3d2817; font-weight: 600; display: flex; justify-content: space-between; align-items: center; 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: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #b76523; font-size: 0.9rem; transition: transform 0.3s ease; flex-shrink: 0; }

.sct-tpl-service-hub .sct-faq-item[open] summary::after { content: '\f068'; }

.sct-tpl-service-hub .sct-faq-item[open] summary { border-bottom: 1px solid #f1e9da; }

.sct-tpl-service-hub .sct-faq-answer { padding: 20px 26px 26px; color: #4a3a2a; line-height: 1.8; font-size: 0.97rem; }

.sct-tpl-service-hub .sct-faq-answer p { margin-bottom: 12px; }

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-faq-item summary { padding: 18px 20px; font-size: 1rem; }
    .sct-tpl-service-hub .sct-faq-answer { padding: 16px 20px 22px; }
}

.sct-tpl-service-hub .sct-maillage-cities { background: #f1e9da; padding: 90px 0; }

.sct-tpl-service-hub .sct-maillage-cities-wrap { max-width: 1100px; margin: 0 auto; background: #fff; padding: 56px 48px; border-radius: 16px; box-shadow: 0 8px 28px rgba(61,40,23,0.08); border-top: 4px solid #b76523; }

.sct-tpl-service-hub .sct-maillage-cities-header { text-align: center; margin-bottom: 36px; }

.sct-tpl-service-hub .sct-maillage-cities-header .sct-section-eyebrow { color: #b76523; }

.sct-tpl-service-hub .sct-maillage-cities-header h2 { color: #3d2817; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 12px; }

.sct-tpl-service-hub .sct-maillage-cities-header p { color: #7a6a5a; font-size: 1rem; line-height: 1.7; max-width: 720px; margin: 0 auto; }

.sct-tpl-service-hub .sct-cities-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; list-style: none; padding: 0; margin: 0; }

.sct-tpl-service-hub .sct-cities-list li { margin: 0; }

.sct-tpl-service-hub .sct-cities-list a { display: inline-flex; align-items: center; gap: 9px; padding: 12px 22px; background: #faf6f0; color: #3d2817; border-radius: 50px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: all 0.3s ease; border: 1px solid rgba(208,169,117,0.4); }

.sct-tpl-service-hub .sct-cities-list a:hover { background: #b76523; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(183,101,35,0.32); border-color: #b76523; }

.sct-tpl-service-hub .sct-cities-list a i { color: #b76523; font-size: 0.85rem; transition: color 0.3s; }

.sct-tpl-service-hub .sct-cities-list a:hover i { color: #fff; }

@media (max-width: 640px) { .sct-tpl-service-hub .sct-maillage-cities-wrap { padding: 36px 22px; } }

.sct-tpl-service-hub .sct-maillage-section { background: #fff; padding: 70px 0; }

.sct-tpl-service-hub .sct-maillage-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #3d2817; text-align: center; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-maillage-subtitle { text-align: center; color: #7a6a5a; font-size: 0.95rem; margin-bottom: 32px; }

.sct-tpl-service-hub .sct-maillage-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 1000px; margin: 0 auto; list-style: none; padding: 0; }

.sct-tpl-service-hub .sct-maillage-list li { margin: 0; }

.sct-tpl-service-hub .sct-maillage-list a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: #f1e9da; color: #3d2817; border-radius: 50px; font-size: 0.92rem; font-weight: 500; text-decoration: none; transition: all 0.3s ease; border: 1px solid transparent; }

.sct-tpl-service-hub .sct-maillage-list a:hover { background: #b76523; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(183,101,35,0.3); }

.sct-tpl-service-hub .sct-maillage-list a i { color: #b76523; transition: color 0.3s; }

.sct-tpl-service-hub .sct-maillage-list a:hover i { color: #fff; }

.sct-tpl-service-hub .sct-cta-final { background: linear-gradient(135deg, #b76523 0%, #8f4d18 100%); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }

.sct-tpl-service-hub .sct-cta-final::before { content: ''; position: absolute; top: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); border-radius: 50%; }

.sct-tpl-service-hub .sct-cta-final::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(208,169,117,0.15) 0%, transparent 70%); border-radius: 50%; }

.sct-tpl-service-hub .sct-cta-final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 24px; }

.sct-tpl-service-hub .sct-cta-final h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 16px; }

.sct-tpl-service-hub .sct-cta-final p { color: rgba(255,255,255,0.92); font-size: 1.08rem; margin-bottom: 32px; line-height: 1.7; }

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

.sct-tpl-service-hub .sct-cta-final .sct-btn-light { background: #fff; color: #b76523; }

.sct-tpl-service-hub .sct-cta-final .sct-btn-light:hover { background: #faf6f0; color: #8f4d18; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }

.sct-tpl-service-hub .sct-cta-final .sct-btn-ghost { background: transparent; color: #fff; border-color: #fff; }

.sct-tpl-service-hub .sct-cta-final .sct-btn-ghost:hover { background: #fff; color: #b76523; }

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; }
}

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

.sct-hero-text { min-width: 0; max-width: 100%; }

.sitemap-hero {
            position: relative;
            min-height: 52vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 160px 24px 90px;
            overflow: hidden;
        }

.sitemap-hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('https://webflash.pro/images/hero_admin_1781003697_6a27f5b19037c.jpg');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

.sitemap-hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(61,40,23,0.88) 0%, rgba(183,101,35,0.7) 100%);
        }

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

.sitemap-hero-eyebrow {
            display: inline-block;
            background: rgba(208, 169, 117, 0.2);
            border: 1px solid var(--secondary);
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
            color: var(--secondary-light);
        }

.sitemap-hero h1 {
            color: var(--white);
            margin-bottom: 18px;
            text-shadow: 0 2px 24px rgba(0,0,0,0.4);
        }

.sitemap-hero p {
            font-size: clamp(1.05rem, 2vw, 1.2rem);
            opacity: 0.95;
            line-height: 1.6;
        }

.sitemap { background: var(--cream); padding: 80px 0; }

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

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

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

.sitemap-block-head .icon {
            flex-shrink: 0;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.4rem;
            box-shadow: 0 6px 18px rgba(183, 101, 35, 0.25);
        }

.sitemap-block-head h2 {
            margin-bottom: 4px;
            font-size: clamp(1.4rem, 3vw, 2rem);
        }

.sitemap-block-head p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

.chip-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

.chip {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--white);
            border: 1px solid rgba(208, 169, 117, 0.45);
            color: var(--text);
            padding: 11px 20px;
            border-radius: 50px;
            font-size: 0.93rem;
            font-weight: 500;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

.chip i { color: var(--primary); font-size: 0.9rem; transition: var(--transition); }

.chip:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

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

.chip-featured {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border-color: transparent;
        }

.chip-featured i { color: var(--secondary-light); }

.chip-featured:hover { background: var(--dark); }

.chip-featured:hover i { color: var(--secondary-light); }

.city-groups {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
        }

.city-group {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 26px 26px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(208, 169, 117, 0.2);
            border-top: 4px solid var(--primary);
            transition: var(--transition);
        }

.city-group:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.city-group h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark);
            font-size: 1.2rem;
            margin-bottom: 18px;
        }

.city-group h3 i { color: var(--primary); font-size: 1.05rem; }

.city-group .chip-grid { gap: 9px; }

.city-group .chip { padding: 8px 15px; font-size: 0.88rem; }

@media (max-width: 600px) {
            .sitemap-block-head { gap: 12px; }
            .sitemap-block-head .icon { width: 46px; height: 46px; font-size: 1.2rem; }
        }

.footer {
            background: var(--dark);
            color: rgba(250, 246, 240, 0.8);
            padding: 72px 0 0;
        }

.footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 48px;
        }

.footer-brand img {
            height: 64px;
            width: auto;
            border-radius: 50%;
            margin-bottom: 18px;
        }

.footer-brand p {
            font-size: 0.92rem;
            line-height: 1.7;
            margin-bottom: 20px;
            color: rgba(250, 246, 240, 0.7);
        }

.social-row { display: flex; gap: 12px; }

.social-row a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(208, 169, 117, 0.15);
            border: 1px solid rgba(208, 169, 117, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-light);
            font-size: 1rem;
        }

.social-row a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

.col-title {
            display: block;
            font-family: 'Playfair Display', serif;
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 18px;
        }

.footer-col ul li { margin-bottom: 11px; }

.footer-col ul li a {
            color: rgba(250, 246, 240, 0.72);
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 9px;
        }

.footer-col ul li a i { color: var(--secondary); font-size: 0.78rem; }

.footer-col ul li a:hover { color: var(--secondary-light); padding-left: 4px; }

.footer-bottom {
            border-top: 1px solid rgba(208, 169, 117, 0.2);
            padding: 24px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 0.86rem;
            color: rgba(250, 246, 240, 0.6);
        }

.footer-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.footer-links a { color: var(--secondary-light); }

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

@media (max-width: 980px) {
            .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
            .footer-brand { grid-column: 1 / -1; }
        }

@media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }