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

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: inherit;
    background: transparent;
    border: none;
    padding: 6px 8px;
    border-radius: 4px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
    z-index: 1001;
}

@media (max-width: 992px) {
    .menu-toggle { display: flex; }
}

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

.menu-check:checked ~ .mobile-menu {
    display: flex !important;
    flex-direction: column;
}

.menu-check { display: none; }

.menu-check:checked ~ .mobile-menu {
    opacity: 1 !important;
    pointer-events: all !important;
}

.menu-check:checked ~ .header-inner .nav-burger span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.menu-check:checked ~ .header-inner .nav-burger span:nth-child(2) {
    opacity: 0;
}

.menu-check:checked ~ .header-inner .nav-burger span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

body:has(#menuCheck:checked) { overflow: hidden; }

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

:root {
            --primary: #1B1B2F;
            --primary-light: #272744;
            --primary-dark: #111122;
            --gold: #C9A84C;
            --gold-light: #D4BA6A;
            --gold-dark: #A8893A;
            --cream: #F5F0E8;
            --cream-dark: #E8E0D0;
            --white: #FFFFFF;
            --text-dark: #1B1B2F;
            --text-light: #F5F0E8;
            --text-muted: #8A8A9A;
        }

html {
            scroll-behavior: smooth;
        }

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

.header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
        }

.header.scrolled {
            background: var(--primary);
            padding: 0.6rem 2rem;
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }

.header-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.header-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

.header-logo img {
            height: 45px;
            width: auto;
            transition: height 0.4s;
        }

.header.scrolled .header-logo img {
            height: 36px;
        }

.header-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 0.05em;
        }

.header-logo-sub {
            font-family: 'Lora', serif;
            font-size: 0.65rem;
            color: var(--gold-light);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            display: block;
            margin-top: -2px;
        }

.nav-desktop {
            display: none;
            gap: 0;
        }

.nav-desktop a {
            color: var(--cream);
            text-decoration: none;
            font-family: 'Lora', serif;
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.5rem 1.2rem;
            position: relative;
            transition: color 0.3s;
        }

.nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1.5px;
            background: var(--gold);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

.nav-desktop a:hover::after {
            width: 60%;
        }

.nav-burger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

.nav-burger span {
            display: block;
            width: 28px;
            height: 1.5px;
            background: var(--gold);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

.nav-burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 5px);
        }

.nav-burger.active span:nth-child(2) {
            opacity: 0;
        }

.nav-burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -5px);
        }

.mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--primary);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s;
        }

.mobile-menu.active {
            opacity: 1;
            pointer-events: all;
        }

.mobile-menu a {
            color: var(--cream);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            position: relative;
            transition: color 0.3s;
        }

.mobile-menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s;
        }

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

.mobile-menu a:hover::after {
            width: 100%;
        }

.hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--primary);
        }

.hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('https://webflash.pro/images/hero_1773681809_69b83c91d0c5f.webp');
            background-size: cover;
            background-position: center;
            filter: brightness(0.3) saturate(0.7);
            transform: scale(1.05);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }

@keyframes heroZoom {
            0% { transform: scale(1.05); }
            100% { transform: scale(1.12); }
        }

.hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(27,27,47,0.5) 0%,
                rgba(27,27,47,0.3) 40%,
                rgba(27,27,47,0.7) 100%
            );
        }

.hero-watermark {
            position: absolute;
            font-family: 'Playfair Display', serif;
            font-size: clamp(8rem, 20vw, 22rem);
            font-weight: 800;
            color: rgba(201,168,76,0.04);
            letter-spacing: -0.02em;
            pointer-events: none;
            user-select: none;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            white-space: nowrap;
        }

.hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 2rem;
            max-width: 900px;
        }

.hero-badge {
            display: inline-block;
            font-family: 'Lora', serif;
            font-size: 0.75rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--gold);
            border: 1px solid var(--gold);
            padding: 0.5rem 1.8rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeUp 1s 0.3s forwards;
        }

.hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5.5vw, 4.5rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s 0.6s forwards;
        }

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

.hero-line {
            width: 60px;
            height: 1.5px;
            background: var(--gold);
            margin: 0 auto 1.5rem;
            opacity: 0;
            animation: fadeUp 1s 0.8s forwards;
        }

.hero-subtitle {
            font-family: 'Lora', serif;
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--cream);
            font-style: italic;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeUp 1s 1s forwards;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

.hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            opacity: 0;
            animation: fadeUp 1s 1.2s forwards;
        }

.btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'Lora', serif;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 1rem 2.2rem;
            background: var(--gold);
            color: var(--primary);
            text-decoration: none;
            border: 1px solid var(--gold);
            transition: all 0.4s;
            font-weight: 600;
        }

.btn-gold:hover {
            background: transparent;
            color: var(--gold);
        }

.btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'Lora', serif;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 1rem 2.2rem;
            background: transparent;
            color: var(--gold);
            text-decoration: none;
            border: 1px solid var(--gold);
            transition: all 0.4s;
            font-weight: 600;
        }

.btn-outline:hover {
            background: var(--gold);
            color: var(--primary);
        }

.hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            opacity: 0;
            animation: fadeUp 1s 1.5s forwards;
        }

.hero-scroll span {
            font-family: 'Lora', serif;
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold-light);
        }

.hero-scroll-line {
            width: 1px;
            height: 40px;
            background: var(--gold);
            animation: scrollPulse 2s ease-in-out infinite;
        }

@keyframes scrollPulse {
            0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
            50% { opacity: 1; transform: scaleY(1); }
        }

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

.logo-slider-section {
            background: var(--primary);
            padding: 2.5rem 0;
            overflow: hidden;
            border-bottom: 1px solid rgba(201,168,76,0.15);
        }

.logo-slider-label {
            text-align: center;
            font-family: 'Lora', serif;
            font-size: 0.72rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

.logo-slider-track {
            display: flex;
            align-items: center;
            width: max-content;
            animation: logoScroll 20s linear infinite;
        }

.logo-slider-track img {
            height: 70px;
            width: auto;
            margin: 0 3rem;
            object-fit: contain;
            filter: brightness(0.9);
            transition: filter 0.3s, transform 0.3s;
        }

.logo-slider-track img:hover {
            filter: brightness(1.1);
            transform: scale(1.08);
        }

@keyframes logoScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

@media (max-width: 640px) {
            .logo-slider-track img {
                height: 50px;
                margin: 0 2rem;
            }
        }

.section {
            padding: 6rem 2rem;
        }

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

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

.section-deep {
            background: var(--primary-dark);
            color: var(--cream);
        }

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

.section-label {
            font-family: 'Lora', serif;
            font-size: 0.72rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 1rem;
        }

.section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.2rem;
        }

.section-dark .section-title {
            color: var(--white);
        }

.section-line {
            width: 50px;
            height: 1.5px;
            background: var(--gold);
            margin: 0 auto;
        }

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

.services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

.service-card {
            flex: 0 1 360px;
            max-width: 380px;
            background: var(--primary-light);
            border: 1px solid rgba(201,168,76,0.15);
            overflow: hidden;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 1;
            transform: translateY(0);
        }

.service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

.service-card:hover {
            border-color: var(--gold);
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

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

.service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

.service-card-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(transparent, var(--primary-light));
            pointer-events: none;
        }

.service-card-body {
            padding: 1.5rem 1.8rem 2rem;
        }

.service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.6rem;
            line-height: 1.3;
        }

.service-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

.service-card-number {
            position: absolute;
            top: 1rem;
            right: 1.2rem;
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 800;
            color: rgba(201,168,76,0.12);
            line-height: 1;
            pointer-events: none;
        }

.about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

.about-image {
            position: relative;
        }

.about-image img {
            width: 100%;
            height: 450px;

            display: block;
        }

.about-image-border {
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 1.5px solid var(--gold);
            pointer-events: none;
            z-index: -1;
        }

.about-text .section-label {
            text-align: left;
        }

.about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

.about-text p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 1.2rem;
            line-height: 1.8;
        }

.about-text blockquote {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-style: italic;
            color: var(--primary);
            border-left: 3px solid var(--gold);
            padding-left: 1.5rem;
            margin: 2rem 0;
            line-height: 1.6;
        }

.timeline {
            position: relative;
            padding: 2rem 0;
            max-width: 800px;
            margin: 0 auto;
        }

.timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 1.5px;
            background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
            transform: translateX(-50%);
        }

.timeline-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 3rem;
            position: relative;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

.timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

.timeline-item:nth-child(odd) {
            flex-direction: row;
            text-align: right;
            padding-right: calc(50% + 2rem);
        }

.timeline-item:nth-child(even) {
            flex-direction: row-reverse;
            text-align: left;
            padding-left: calc(50% + 2rem);
        }

.timeline-dot {
            position: absolute;
            left: 50%;
            top: 0.3rem;
            transform: translateX(-50%);
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--primary);
            border: 2px solid var(--gold);
            z-index: 2;
        }

.timeline-year {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
            margin-bottom: 0.4rem;
        }

.timeline-text {
            font-size: 0.95rem;
            color: var(--cream);
            line-height: 1.6;
        }

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

.gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 4/3;
        }

.gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

.gallery-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 0 solid var(--gold);
            z-index: 2;
            transition: border-width 0.4s;
            pointer-events: none;
        }

.gallery-item:hover::before {
            border-width: 3px;
        }

.gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(27,27,47,0.4);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 1;
            pointer-events: none;
        }

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

.gallery-item .gallery-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            color: var(--gold);
            font-size: 1.5rem;
            opacity: 0;
            transition: all 0.4s;
            z-index: 3;
        }

.gallery-item:hover .gallery-icon {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

.lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s;
        }

.lightbox.active {
            display: flex;
            opacity: 1;
        }

.lightbox img {
            max-width: 90%;
            max-height: 85vh;
            object-fit: contain;
        }

.lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            color: var(--gold);
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            transition: transform 0.3s;
        }

.lightbox-close:hover {
            transform: rotate(90deg);
        }

.lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold);
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            padding: 1rem;
            transition: color 0.3s;
        }

.lightbox-nav:hover {
            color: var(--white);
        }

.lightbox-prev { left: 1rem; }

.lightbox-next { right: 1rem; }

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

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(201,168,76,0.15);
        }

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

.horaire-day {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--white);
        }

.horaire-time {
            font-size: 0.95rem;
            color: var(--gold);
            letter-spacing: 0.05em;
        }

.horaires-note {
            text-align: center;
            margin-top: 2rem;
            font-style: italic;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

.alert-grid {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem;
  background: rgba(201, 76, 76, 0.21);
  border: 1px solid rgba(201,168,76,0.12);
  transition: border-color 0.3s;
  margin-bottom: 30px;
}

}

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0rem;
        }

        .contact-info-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.2rem;
            margin-bottom: 2rem;
        }

        .contact-info-card {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            padding: 1.2rem;
            background: rgba(201,168,76,0.05);
            border: 1px solid rgba(201,168,76,0.12);
            transition: border-color 0.3s;
        }

        .contact-info-card:hover {
            border-color: var(--gold);
        }

        .contact-info-card i {
            color: var(--gold);
            font-size: 1.2rem;
            margin-top: 0.2rem;
            min-width: 24px;
            text-align: center;
        }

        .contact-info-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--white);
            margin-bottom: 0.3rem;
        }

        .contact-info-card p,
        .contact-info-card a {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
            line-height: 1.6;
        }

        .contact-info-card a:hover {
            color: var(--gold);
        }

        .contact-form-wrap {
            background: var(--primary-light);
            border: 1px solid rgba(201,168,76,0.15);
            padding: 2.5rem;
        }

        .contact-form-wrap h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
            font-family: 'Lora', serif;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            background: var(--primary);
            border: 1px solid rgba(201,168,76,0.2);
            color: var(--cream);
            font-family: 'Lora', serif;
            font-size: 0.95rem;
            transition: border-color 0.3s;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
        }

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

        .btn-submit {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'Lora', serif;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 1rem 2.5rem;
            background: var(--gold);
            color: var(--primary);
            border: 1px solid var(--gold);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.4s;
            width: 100%;
            justify-content: center;
        }

        .btn-submit:hover {
            background: transparent;
            color: var(--gold);
        }

        #formStatus p {
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        .map-wrapper {
            border: 1px solid rgba(201,168,76,0.2);
            overflow: hidden;
            margin-top: 2rem;
        }

        .map-wrapper iframe {
            display: block;
        }

        
        .footer {
            background: var(--primary-dark);
            padding: 4rem 2rem 2rem;
            color: var(--cream);
        }

        .footer-top {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(201,168,76,0.15);
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 0.8rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .footer-links h4,
        .footer-contact h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 1rem;
        }

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

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

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

        .footer-contact p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 0.4rem;
        }

        .footer-contact a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 10001;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

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

        .modal-content {
            background: var(--primary);
            border: 1px solid rgba(201,168,76,0.2);
            padding: 3rem;
            max-width: 650px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .modal-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .modal-content p {
            font-size: 0.9rem;
            color: var(--cream);
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

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

        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            background: var(--primary);
            border: 1px solid var(--gold);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .back-to-top:hover {
            background: var(--gold);
            color: var(--primary);
        }

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

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

}

        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
            }

.nav-burger {
                display: none;
            }

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

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

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

}

        @media (min-width: 1024px) {
            .section {
                padding: 7rem 2rem;
            }

.gallery-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.2rem;
            }

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

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

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

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

.sct-tpl-zone { font-family: 'Lora', Georgia, serif; color: #1B1B2F; background: #F5F0E8; line-height: 1.7; }

.sct-tpl-zone a { color: inherit; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, #1B1B2F 0%, #272744 60%, #111122 100%);
    color: #F5F0E8;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1773681834_69b83caab89c5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-zone .sct-hero-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(7rem, 18vw, 18rem);
    font-weight: 800;
    color: rgba(201,168,76,0.05);
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 1;
}

.sct-tpl-zone .sct-hero-container { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 20px; text-align: center; }

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.82rem;
    margin-bottom: 28px;
    color: #D4BA6A;
}

.sct-tpl-zone .sct-breadcrumb a {
    color: #D4BA6A;
    text-decoration: none;
    transition: color 0.3s;
}

.sct-tpl-zone .sct-breadcrumb a:hover { color: #F5F0E8; }

.sct-tpl-zone .sct-bc-sep { color: rgba(201,168,76,0.4); }

.sct-tpl-zone .sct-bc-current { color: #F5F0E8; font-weight: 500; }

.sct-tpl-zone .sct-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 26px;
}

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 2px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4BA6A;
}

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

.sct-tpl-zone .sct-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 22px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-zone .sct-hero h1 .sct-gold { color: #C9A84C; font-style: italic; }

.sct-tpl-zone .sct-hero-line {
    width: 60px; height: 1.5px;
    background: #C9A84C;
    margin: 0 auto 24px;
}

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(245,240,232,0.85);
    line-height: 1.75;
    margin: 0 auto 36px;
    font-style: italic;
    max-width: 720px;
}

.sct-tpl-zone .sct-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 30px;
}

.sct-tpl-zone .sct-btn-gold,
.sct-tpl-zone .sct-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #C9A84C;
    transition: all 0.4s;
}

.sct-tpl-zone .sct-btn-gold { background: #C9A84C; color: #1B1B2F; }

.sct-tpl-zone .sct-btn-gold:hover { background: transparent; color: #C9A84C; }

.sct-tpl-zone .sct-btn-outline { background: transparent; color: #C9A84C; }

.sct-tpl-zone .sct-btn-outline:hover { background: #C9A84C; color: #1B1B2F; }

.sct-tpl-zone .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(245,240,232,0.78);
}

.sct-tpl-zone .sct-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }

.sct-tpl-zone .sct-hero-trust i { color: #C9A84C; }

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

.sct-tpl-zone .sct-stats-band {
    background: #111122;
    padding: 50px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

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

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

.sct-tpl-zone .sct-stat-item { padding: 0 10px; border-right: 1px solid rgba(201,168,76,0.15); }

.sct-tpl-zone .sct-stat-item:last-child { border-right: none; }

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

.sct-tpl-zone .sct-stat-label {
    color: rgba(245,240,232,0.75);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
    .sct-tpl-zone .sct-stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr; gap: 28px; }
    .sct-tpl-zone .sct-stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); padding-bottom: 24px; }
    .sct-tpl-zone .sct-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
}

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

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

.sct-tpl-zone .sct-section-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 700;
    color: #1B1B2F;
    margin-bottom: 18px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-intro-line { width: 50px; height: 1.5px; background: #C9A84C; margin-bottom: 30px; }

.sct-tpl-zone .sct-intro-section p {
    font-size: 1rem;
    line-height: 1.85;
    color: #4a4a5a;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-intro-section p strong { color: #1B1B2F; font-weight: 600; }

.sct-tpl-zone .sct-services-section {
    background: #1B1B2F;
    padding: 90px 0;
    color: #F5F0E8;
}

.sct-tpl-zone .sct-section-header { text-align: center; margin-bottom: 55px; }

.sct-tpl-zone .sct-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-section-header p {
    color: rgba(245,240,232,0.78);
    max-width: 680px;
    margin: 0 auto;
    font-style: italic;
}

.sct-tpl-zone .sct-section-line { width: 50px; height: 1.5px; background: #C9A84C; margin: 18px auto 0; }

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

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

.sct-tpl-zone .sct-services-list a,
.sct-tpl-zone .sct-services-list .sct-service-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: #272744;
    border: 1px solid rgba(201,168,76,0.18);
    color: #F5F0E8;
    text-decoration: none;
    transition: all 0.4s;
    position: relative;
}

.sct-tpl-zone .sct-services-list a:hover {
    border-color: #C9A84C;
    transform: translateX(4px);
    background: rgba(201,168,76,0.06);
}

.sct-tpl-zone .sct-services-list a i {
    color: #C9A84C;
    font-size: 1.4rem;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-services-list a span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.sct-tpl-zone .sct-services-list a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    color: rgba(201,168,76,0.5);
    font-size: 0.8rem;
    transition: color 0.3s, transform 0.3s;
}

.sct-tpl-zone .sct-services-list a:hover::after {
    color: #C9A84C;
    transform: translateX(3px);
}

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

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

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

.sct-tpl-zone .sct-zones-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.4rem);
    font-weight: 700;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-zones-section > .sct-container > p {
    text-align: center;
    color: #555;
    max-width: 720px;
    margin: 0 auto 40px;
    font-style: italic;
}

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

.sct-tpl-zone .sct-zones-list span,
.sct-tpl-zone .sct-zones-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(201,168,76,0.25);
    padding: 9px 16px;
    font-size: 0.86rem;
    color: #1B1B2F;
    text-decoration: none;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-zones-list a:hover {
    background: #C9A84C;
    color: #1B1B2F;
    border-color: #C9A84C;
}

.sct-tpl-zone .sct-zones-list i { color: #C9A84C; font-size: 0.78rem; }

.sct-tpl-zone .sct-usecase-section {
    background: #111122;
    padding: 90px 0;
    color: #F5F0E8;
}

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

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

.sct-tpl-zone .sct-usecase-image { position: relative; }

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

.sct-tpl-zone .sct-usecase-image::after {
    content: '';
    position: absolute;
    top: 18px; left: 18px; right: -18px; bottom: -18px;
    border: 1.5px solid #C9A84C;
    pointer-events: none;
    z-index: -1;
}

.sct-tpl-zone .sct-usecase-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 22px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-usecase-text p {
    font-size: 0.98rem;
    color: rgba(245,240,232,0.82);
    line-height: 1.85;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-usecase-text blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #C9A84C;
    border-left: 3px solid #C9A84C;
    padding-left: 1.4rem;
    margin: 24px 0;
    line-height: 1.6;
}

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

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

.sct-tpl-zone .sct-engagements-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 14px;
}

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

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

.sct-tpl-zone .sct-engagement-card {
    background: #FFFFFF;
    padding: 40px 32px;
    text-align: center;
    border-top: 3px solid #C9A84C;
    transition: all 0.4s;
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(27,27,47,0.1);
}

.sct-tpl-zone .sct-engagement-icon {
    font-size: 2rem;
    color: #C9A84C;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B1B2F;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-engagement-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}

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

.sct-tpl-zone .sct-local-spec {
    background: #272744;
    padding: 70px 0;
    color: #F5F0E8;
}

.sct-tpl-zone .sct-local-spec-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.sct-tpl-zone .sct-local-spec h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #C9A84C;
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-local-spec p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(245,240,232,0.85);
    margin-bottom: 14px;
}

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

.sct-tpl-zone .sct-faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 14px;
}

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

.sct-tpl-zone .sct-faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.sct-tpl-zone .sct-faq-item:hover { border-color: #C9A84C; }

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B1B2F;
    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: '+';
    color: #C9A84C;
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.sct-tpl-zone .sct-faq-item-body {
    padding: 0 28px 24px;
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.sct-tpl-zone .sct-maillage-section {
    background: #FFFFFF;
    padding: 70px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.sct-tpl-zone .sct-maillage-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 600;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 30px;
}

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

.sct-tpl-zone .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #F5F0E8;
    border: 1px solid rgba(201,168,76,0.25);
    color: #1B1B2F;
    text-decoration: none;
    font-size: 0.86rem;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-maillage-list a:hover {
    background: #C9A84C;
    color: #1B1B2F;
    border-color: #C9A84C;
}

.sct-tpl-zone .sct-maillage-list a i { color: #C9A84C; font-size: 0.78rem; transition: color 0.3s; }

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

.sct-tpl-zone .sct-cta-final {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #1B1B2F 0%, #111122 100%);
    color: #F5F0E8;
    text-align: center;
    overflow: hidden;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1773681834_69b83caab89c5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

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

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-cta-final p {
    color: rgba(245,240,232,0.85);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 32px;
}

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

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

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

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

.sct-tpl-service-hub { font-family: 'Lora', Georgia, serif; color: #1B1B2F; background: #F5F0E8; line-height: 1.7; }

.sct-tpl-service-hub a { color: inherit; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, #1B1B2F 0%, #272744 60%, #111122 100%);
    color: #F5F0E8;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1773681859_69b83cc3813ac.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-hero-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(7rem, 18vw, 18rem);
    font-weight: 800;
    color: rgba(201,168,76,0.05);
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 1;
}

.sct-tpl-service-hub .sct-hero-container { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 20px; text-align: center; }

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.82rem;
    margin-bottom: 28px;
    color: #D4BA6A;
}

.sct-tpl-service-hub .sct-breadcrumb a {
    color: #D4BA6A;
    text-decoration: none;
    transition: color 0.3s;
}

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: #F5F0E8; }

.sct-tpl-service-hub .sct-bc-sep { color: rgba(201,168,76,0.4); }

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-block;
    font-family: 'Lora', serif;
    font-size: 0.74rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #C9A84C;
    border: 1px solid #C9A84C;
    padding: 8px 22px;
    margin-bottom: 26px;
}

.sct-tpl-service-hub .sct-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 22px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-service-hub .sct-hero h1 .sct-gold { color: #C9A84C; font-style: italic; }

.sct-tpl-service-hub .sct-hero-line {
    width: 60px; height: 1.5px;
    background: #C9A84C;
    margin: 0 auto 24px;
}

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(245,240,232,0.85);
    line-height: 1.75;
    margin: 0 auto 36px;
    font-style: italic;
    max-width: 720px;
}

.sct-tpl-service-hub .sct-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.sct-tpl-service-hub .sct-btn-gold,
.sct-tpl-service-hub .sct-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #C9A84C;
    transition: all 0.4s;
}

.sct-tpl-service-hub .sct-btn-gold { background: #C9A84C; color: #1B1B2F; }

.sct-tpl-service-hub .sct-btn-gold:hover { background: transparent; color: #C9A84C; }

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

.sct-tpl-service-hub .sct-btn-outline:hover { background: #C9A84C; color: #1B1B2F; }

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

.sct-tpl-service-hub .sct-stats-band {
    background: #111122;
    padding: 50px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

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

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

.sct-tpl-service-hub .sct-stat-item { padding: 0 10px; border-right: 1px solid rgba(201,168,76,0.15); }

.sct-tpl-service-hub .sct-stat-item:last-child { border-right: none; }

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #C9A84C;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-stat-label {
    color: rgba(245,240,232,0.75);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
    .sct-tpl-service-hub .sct-stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr; gap: 28px; }
    .sct-tpl-service-hub .sct-stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); padding-bottom: 24px; }
    .sct-tpl-service-hub .sct-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
}

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

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

.sct-tpl-service-hub .sct-section-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 700;
    color: #1B1B2F;
    margin-bottom: 18px;
    line-height: 1.25;
}

.sct-tpl-service-hub .sct-intro-line { width: 50px; height: 1.5px; background: #C9A84C; margin-bottom: 30px; }

.sct-tpl-service-hub .sct-intro-section p {
    font-size: 1rem;
    line-height: 1.85;
    color: #4a4a5a;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-intro-section p strong { color: #1B1B2F; font-weight: 600; }

.sct-tpl-service-hub .sct-services-section {
    background: #1B1B2F;
    padding: 90px 0;
    color: #F5F0E8;
}

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

.sct-tpl-service-hub .sct-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-section-header p {
    color: rgba(245,240,232,0.78);
    max-width: 680px;
    margin: 0 auto;
    font-style: italic;
}

.sct-tpl-service-hub .sct-section-line { width: 50px; height: 1.5px; background: #C9A84C; margin: 18px auto 0; }

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #272744;
    border: 1px solid rgba(201,168,76,0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sct-tpl-service-hub .sct-service-card:hover {
    border-color: #C9A84C;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.sct-tpl-service-hub .sct-service-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.sct-tpl-service-hub .sct-service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 60%;
    background: linear-gradient(transparent, #272744);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-service-card-body { padding: 26px 28px 30px; }

.sct-tpl-service-hub .sct-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-service-card p {
    font-size: 0.92rem;
    color: rgba(245,240,232,0.7);
    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; }
}

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

.sct-tpl-service-hub .sct-processus-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 14px;
}

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

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

.sct-tpl-service-hub .sct-step-card {
    background: #FFFFFF;
    padding: 32px 22px;
    text-align: center;
    border: 1px solid rgba(201,168,76,0.18);
    position: relative;
    transition: all 0.4s;
}

.sct-tpl-service-hub .sct-step-card:hover {
    border-color: #C9A84C;
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(27,27,47,0.08);
}

.sct-tpl-service-hub .sct-step-num {
    position: absolute;
    top: 12px; right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(201,168,76,0.18);
    line-height: 1;
}

.sct-tpl-service-hub .sct-step-icon {
    font-size: 1.8rem;
    color: #C9A84C;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B1B2F;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-step-card p {
    font-size: 0.86rem;
    color: #555;
    line-height: 1.6;
}

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

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

.sct-tpl-service-hub .sct-why-section {
    background: #111122;
    padding: 90px 0;
    color: #F5F0E8;
}

.sct-tpl-service-hub .sct-why-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 14px;
}

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

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

.sct-tpl-service-hub .sct-why-card {
    text-align: center;
    padding: 36px 22px;
    border: 1px solid rgba(201,168,76,0.18);
    transition: all 0.4s;
}

.sct-tpl-service-hub .sct-why-card:hover {
    border-color: #C9A84C;
    background: rgba(201,168,76,0.04);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 64px; height: 64px;
    border: 1px solid #C9A84C;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

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

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.9rem;
    color: rgba(245,240,232,0.72);
    line-height: 1.7;
}

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

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

.sct-tpl-service-hub .sct-usecase-section {
    background: #1B1B2F;
    padding: 90px 0;
    color: #F5F0E8;
}

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

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

.sct-tpl-service-hub .sct-usecase-image { position: relative; }

.sct-tpl-service-hub .sct-usecase-image img {
    width: 100%;
    height: 440px;
    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: 1.5px solid #C9A84C;
    pointer-events: none;
    z-index: -1;
}

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 22px;
    line-height: 1.25;
}

.sct-tpl-service-hub .sct-usecase-text p {
    font-size: 0.98rem;
    color: rgba(245,240,232,0.82);
    line-height: 1.85;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-usecase-text blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #C9A84C;
    border-left: 3px solid #C9A84C;
    padding-left: 1.4rem;
    margin: 24px 0;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-service-hub .sct-usecase-image img { height: 360px; }
}

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

.sct-tpl-service-hub .sct-engagements-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 14px;
}

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: #FFFFFF;
    padding: 40px 32px;
    text-align: center;
    border-top: 3px solid #C9A84C;
    transition: all 0.4s;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(27,27,47,0.1);
}

.sct-tpl-service-hub .sct-engagement-icon {
    font-size: 2rem;
    color: #C9A84C;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B1B2F;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}

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

.sct-tpl-service-hub .sct-faq-section {
    background: #272744;
    padding: 90px 0;
    color: #F5F0E8;
}

.sct-tpl-service-hub .sct-faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 14px;
}

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

.sct-tpl-service-hub .sct-faq-item {
    background: rgba(27,27,47,0.6);
    border: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.sct-tpl-service-hub .sct-faq-item:hover { border-color: #C9A84C; }

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
    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: '+';
    color: #C9A84C;
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-faq-item-body {
    padding: 0 28px 24px;
    color: rgba(245,240,232,0.78);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.sct-tpl-service-hub .sct-maillage-cities .sct-section-header { margin-bottom: 40px; }

.sct-tpl-service-hub .sct-maillage-cities h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.4vw, 2.4rem);
    font-weight: 700;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-maillage-cities > .sct-container > p {
    text-align: center;
    color: #555;
    max-width: 720px;
    margin: 0 auto 40px;
    font-style: italic;
}

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

.sct-tpl-service-hub .sct-maillage-cities-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #FFFFFF;
    border: 1px solid rgba(201,168,76,0.25);
    color: #1B1B2F;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-maillage-cities-list a:hover {
    background: #C9A84C;
    color: #1B1B2F;
    border-color: #C9A84C;
}

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

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

.sct-tpl-service-hub .sct-maillage-services {
    background: #FFFFFF;
    padding: 70px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.sct-tpl-service-hub .sct-maillage-services h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 600;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 30px;
}

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

.sct-tpl-service-hub .sct-maillage-services-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #F5F0E8;
    border: 1px solid rgba(201,168,76,0.25);
    color: #1B1B2F;
    text-decoration: none;
    font-size: 0.86rem;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-maillage-services-list a:hover {
    background: #C9A84C;
    color: #1B1B2F;
    border-color: #C9A84C;
}

.sct-tpl-service-hub .sct-maillage-services-list a i { color: #C9A84C; font-size: 0.78rem; transition: color 0.3s; }

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

.sct-tpl-service-hub .sct-cta-final {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #1B1B2F 0%, #111122 100%);
    color: #F5F0E8;
    text-align: center;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1773681859_69b83cc3813ac.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

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

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-cta-final p {
    color: rgba(245,240,232,0.85);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 32px;
}

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

@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%; justify-content: center; }
}

.sct-tpl-service-city { font-family: 'Lora', Georgia, serif; color: #1B1B2F; background: #F5F0E8; line-height: 1.7; }

.sct-tpl-service-city a { color: inherit; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, #1B1B2F 0%, #272744 60%, #111122 100%);
    color: #F5F0E8;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_5_1773681924_69b83d04e56e4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

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

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

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

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

.sct-tpl-service-city .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.82rem;
    margin-bottom: 24px;
    color: #D4BA6A;
}

.sct-tpl-service-city .sct-breadcrumb a {
    color: #D4BA6A;
    text-decoration: none;
    transition: color 0.3s;
}

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

.sct-tpl-service-city .sct-bc-sep { color: rgba(201,168,76,0.4); }

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

.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: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 2px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4BA6A;
}

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

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 22px;
}

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(245,240,232,0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    max-width: 560px;
}

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

.sct-tpl-service-city .sct-btn-gold,
.sct-tpl-service-city .sct-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #C9A84C;
    transition: all 0.4s;
}

.sct-tpl-service-city .sct-btn-gold { background: #C9A84C; color: #1B1B2F; }

.sct-tpl-service-city .sct-btn-gold:hover { background: transparent; color: #C9A84C; }

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

.sct-tpl-service-city .sct-btn-outline:hover { background: #C9A84C; color: #1B1B2F; }

.sct-tpl-service-city .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 0.85rem;
    color: rgba(245,240,232,0.78);
}

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

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(39,39,68,0.85);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 36px 32px;
    backdrop-filter: blur(6px);
    position: relative;
}

.sct-tpl-service-city .sct-hero-card::before {
    content: '';
    position: absolute;
    top: 12px; left: 12px; right: -12px; bottom: -12px;
    border: 1px solid rgba(201,168,76,0.4);
    z-index: -1;
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #C9A84C;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201,168,76,0.25);
}

.sct-tpl-service-city .sct-hero-card-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(201,168,76,0.18);
}

.sct-tpl-service-city .sct-hero-card-row:last-of-type { border-bottom: none; }

.sct-tpl-service-city .sct-hero-card-row i {
    color: #C9A84C;
    width: 22px;
    text-align: center;
    margin-top: 4px;
}

.sct-tpl-service-city .sct-hero-card-row strong {
    display: block;
    color: #F5F0E8;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.sct-tpl-service-city .sct-hero-card-row span { color: rgba(245,240,232,0.82); font-size: 0.92rem; }

.sct-tpl-service-city .sct-hero-card-row a { color: rgba(245,240,232,0.82); text-decoration: none; }

.sct-tpl-service-city .sct-hero-card-row a:hover { color: #C9A84C; }

.sct-tpl-service-city .sct-hero-card .sct-btn-gold {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

@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: 120px 0 70px; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
}

.sct-tpl-service-city .sct-stats-band {
    background: #111122;
    padding: 50px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

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

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

.sct-tpl-service-city .sct-stat-item { padding: 0 10px; border-right: 1px solid rgba(201,168,76,0.15); }

.sct-tpl-service-city .sct-stat-item:last-child { border-right: none; }

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

.sct-tpl-service-city .sct-stat-label {
    color: rgba(245,240,232,0.75);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
    .sct-tpl-service-city .sct-stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr; gap: 28px; }
    .sct-tpl-service-city .sct-stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); padding-bottom: 24px; }
    .sct-tpl-service-city .sct-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
}

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

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

.sct-tpl-service-city .sct-section-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 700;
    color: #1B1B2F;
    margin-bottom: 18px;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-intro-line { width: 50px; height: 1.5px; background: #C9A84C; margin-bottom: 30px; }

.sct-tpl-service-city .sct-intro-section p {
    font-size: 1rem;
    line-height: 1.85;
    color: #4a4a5a;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-intro-section p strong { color: #1B1B2F; font-weight: 600; }

.sct-tpl-service-city .sct-services-section {
    background: #1B1B2F;
    padding: 90px 0;
    color: #F5F0E8;
}

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

.sct-tpl-service-city .sct-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-section-header p {
    color: rgba(245,240,232,0.78);
    max-width: 680px;
    margin: 0 auto;
    font-style: italic;
}

.sct-tpl-service-city .sct-section-line { width: 50px; height: 1.5px; background: #C9A84C; margin: 18px auto 0; }

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

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

.sct-tpl-service-city .sct-service-card {
    background: #272744;
    border: 1px solid rgba(201,168,76,0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sct-tpl-service-city .sct-service-card:hover {
    border-color: #C9A84C;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.sct-tpl-service-city .sct-service-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.sct-tpl-service-city .sct-service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 60%;
    background: linear-gradient(transparent, #272744);
    pointer-events: none;
}

.sct-tpl-service-city .sct-service-card-body { padding: 26px 28px 30px; }

.sct-tpl-service-city .sct-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-service-card p {
    font-size: 0.92rem;
    color: rgba(245,240,232,0.7);
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-processus-section {
    background: #F5F0E8;
    padding: 90px 0;
}

.sct-tpl-service-city .sct-processus-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 14px;
}

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

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

.sct-tpl-service-city .sct-step-card {
    background: #FFFFFF;
    padding: 32px 22px;
    text-align: center;
    border: 1px solid rgba(201,168,76,0.18);
    position: relative;
    transition: all 0.4s;
}

.sct-tpl-service-city .sct-step-card:hover {
    border-color: #C9A84C;
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(27,27,47,0.08);
}

.sct-tpl-service-city .sct-step-num {
    position: absolute;
    top: 12px; right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(201,168,76,0.18);
    line-height: 1;
}

.sct-tpl-service-city .sct-step-icon {
    font-size: 1.8rem;
    color: #C9A84C;
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B1B2F;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-step-card p {
    font-size: 0.86rem;
    color: #555;
    line-height: 1.6;
}

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

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

.sct-tpl-service-city .sct-why-section {
    background: #111122;
    padding: 90px 0;
    color: #F5F0E8;
}

.sct-tpl-service-city .sct-why-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 14px;
}

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

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

.sct-tpl-service-city .sct-why-card {
    text-align: center;
    padding: 36px 22px;
    border: 1px solid rgba(201,168,76,0.18);
    transition: all 0.4s;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-color: #C9A84C;
    background: rgba(201,168,76,0.04);
}

.sct-tpl-service-city .sct-why-icon {
    width: 64px; height: 64px;
    border: 1px solid #C9A84C;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

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

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.9rem;
    color: rgba(245,240,232,0.72);
    line-height: 1.7;
}

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

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

.sct-tpl-service-city .sct-zones-section {
    background: #F5F0E8;
    padding: 90px 0;
}

.sct-tpl-service-city .sct-zones-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.4rem);
    font-weight: 700;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-zones-section > .sct-container > p {
    text-align: center;
    color: #555;
    max-width: 720px;
    margin: 0 auto 40px;
    font-style: italic;
}

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

.sct-tpl-service-city .sct-zones-list span,
.sct-tpl-service-city .sct-zones-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(201,168,76,0.25);
    padding: 9px 16px;
    font-size: 0.86rem;
    color: #1B1B2F;
    text-decoration: none;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-zones-list a:hover {
    background: #C9A84C;
    color: #1B1B2F;
    border-color: #C9A84C;
}

.sct-tpl-service-city .sct-zones-list i { color: #C9A84C; font-size: 0.78rem; }

.sct-tpl-service-city .sct-usecase-section {
    background: #1B1B2F;
    padding: 90px 0;
    color: #F5F0E8;
}

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

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

.sct-tpl-service-city .sct-usecase-image { position: relative; }

.sct-tpl-service-city .sct-usecase-image img {
    width: 100%;
    height: 440px;
    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: 1.5px solid #C9A84C;
    pointer-events: none;
    z-index: -1;
}

.sct-tpl-service-city .sct-usecase-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 22px;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-usecase-text p {
    font-size: 0.98rem;
    color: rgba(245,240,232,0.82);
    line-height: 1.85;
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-usecase-text blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #C9A84C;
    border-left: 3px solid #C9A84C;
    padding-left: 1.4rem;
    margin: 24px 0;
    line-height: 1.6;
}

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

.sct-tpl-service-city .sct-engagements-section {
    background: #F5F0E8;
    padding: 90px 0;
}

.sct-tpl-service-city .sct-engagements-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 14px;
}

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #FFFFFF;
    padding: 40px 32px;
    text-align: center;
    border-top: 3px solid #C9A84C;
    transition: all 0.4s;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(27,27,47,0.1);
}

.sct-tpl-service-city .sct-engagement-icon {
    font-size: 2rem;
    color: #C9A84C;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B1B2F;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-local-spec {
    background: #272744;
    padding: 70px 0;
    color: #F5F0E8;
}

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.sct-tpl-service-city .sct-local-spec h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #C9A84C;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-local-spec p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(245,240,232,0.85);
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-faq-section {
    background: #F5F0E8;
    padding: 90px 0;
}

.sct-tpl-service-city .sct-faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 14px;
}

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

.sct-tpl-service-city .sct-faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.sct-tpl-service-city .sct-faq-item:hover { border-color: #C9A84C; }

.sct-tpl-service-city .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B1B2F;
    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: '+';
    color: #C9A84C;
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.sct-tpl-service-city .sct-faq-item-body {
    padding: 0 28px 24px;
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.sct-tpl-service-city .sct-maillage-section {
    background: #FFFFFF;
    padding: 70px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section { border-top: 1px solid rgba(201,168,76,0.15); }

.sct-tpl-service-city .sct-maillage-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 600;
    color: #1B1B2F;
    text-align: center;
    margin-bottom: 30px;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #F5F0E8;
    border: 1px solid rgba(201,168,76,0.25);
    color: #1B1B2F;
    text-decoration: none;
    font-size: 0.86rem;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-maillage-list a:hover {
    background: #C9A84C;
    color: #1B1B2F;
    border-color: #C9A84C;
}

.sct-tpl-service-city .sct-maillage-list a i { color: #C9A84C; font-size: 0.78rem; transition: color 0.3s; }

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

.sct-tpl-service-city .sct-cta-final {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #1B1B2F 0%, #111122 100%);
    color: #F5F0E8;
    text-align: center;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_5_1773681924_69b83d04e56e4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

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

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-cta-final p {
    color: rgba(245,240,232,0.85);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 32px;
}

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

@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%; justify-content: center; }
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_3_1773681881_69b83cd93a807.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_3_1773681881_69b83cd93a807.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1773681834_69b83caab89c5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1773681834_69b83caab89c5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1773681859_69b83cc3813ac.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1773681859_69b83cc3813ac.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1773681834_69b83caab89c5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1773681834_69b83caab89c5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1773681859_69b83cc3813ac.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1773681859_69b83cc3813ac.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_3_1773681881_69b83cd93a807.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_3_1773681881_69b83cd93a807.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_3_1773681881_69b83cd93a807.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_3_1773681881_69b83cd93a807.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_4_1773681903_69b83cef12224.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_4_1773681903_69b83cef12224.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_4_1773681903_69b83cef12224.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_4_1773681903_69b83cef12224.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_5_1773681924_69b83d04e56e4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_5_1773681924_69b83d04e56e4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_4_1773681903_69b83cef12224.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_4_1773681903_69b83cef12224.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_5_1773681924_69b83d04e56e4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_5_1773681924_69b83d04e56e4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_6_1773681948_69b83d1c2e9a4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_6_1773681948_69b83d1c2e9a4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_6_1773681948_69b83d1c2e9a4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7);
    pointer-events: none;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_6_1773681948_69b83d1c2e9a4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.nav-desktop a {
            color: var(--cream) !important;
            text-decoration: none;
            font-family: 'Lora', serif;
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.5rem 1.2rem;
            position: relative;
            transition: color 0.3s;
        }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--primary);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-desktop {
    display: flex;
    gap: 0;
}

@media (max-width: 992px) {
    .nav-desktop { display: none; }
}

.page-hero {
    position: relative;
    min-height: 50vh;
    padding: 9rem 2rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://webflash.pro/images/hero_1773681809_69b83c91d0c5f.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) saturate(0.6);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27,27,47,0.6) 0%, rgba(27,27,47,0.85) 100%);
}

.page-hero-watermark {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: clamp(6rem, 16vw, 16rem);
    font-weight: 800;
    color: rgba(201,168,76,0.05);
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

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

.page-hero-badge {
    display: inline-block;
    font-family: 'Lora', serif;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.6rem;
    margin-bottom: 1.8rem;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

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

.page-hero-line {
    width: 60px;
    height: 1.5px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.page-hero-subtitle {
    font-family: 'Lora', serif;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: var(--cream);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.sitemap-section {
    padding: 5rem 2rem;
}

.sitemap-section.alt {
    background: var(--primary);
    color: var(--cream);
}

.sitemap-section.deep {
    background: var(--primary-dark);
    color: var(--cream);
}

.sitemap-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sitemap-label {
    font-family: 'Lora', serif;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.9rem;
}

.sitemap-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

.sitemap-section.alt .sitemap-title,
.sitemap-section.deep .sitemap-title {
    color: var(--white);
}

.sitemap-line {
    width: 50px;
    height: 1.5px;
    background: var(--gold);
    margin: 0 auto;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lora', serif;
    font-size: 0.88rem;
    padding: 0.7rem 1.4rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border: 1px solid rgba(27,27,47,0.12);
    border-radius: 999px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.3;
}

.chip i {
    color: var(--gold);
    font-size: 0.78rem;
    transition: transform 0.35s;
}

.chip:hover {
    background: var(--primary);
    color: var(--cream);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27,27,47,0.18);
}

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

.sitemap-section.alt .chip,
.sitemap-section.deep .chip {
    background: var(--primary-light);
    color: var(--cream);
    border-color: rgba(201,168,76,0.2);
}

.sitemap-section.alt .chip:hover,
.sitemap-section.deep .chip:hover {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.sitemap-section.alt .chip:hover i,
.sitemap-section.deep .chip:hover i {
    color: var(--primary);
}

.service-group {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--primary-light);
    border: 1px solid rgba(201,168,76,0.15);
    border-left: 3px solid var(--gold);
    transition: all 0.4s;
}

.service-group:hover {
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.service-group:last-child {
    margin-bottom: 0;
}

.service-group-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-group-title i {
    font-size: 1rem;
    color: var(--gold-light);
}

.service-group .chips {
    justify-content: flex-start;
}

.single-link-wrap {
    text-align: center;
}

.btn-gold-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    background: var(--gold);
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.4s;
    font-weight: 600;
}

.btn-gold-link:hover {
    background: transparent;
    color: var(--gold);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.service-link-card {
    background: var(--white);
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(27,27,47,0.1);
    border-left: 3px solid var(--gold);
    text-decoration: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(27,27,47,0.15);
    border-left-color: var(--gold-dark);
    background: var(--cream);
}

.service-link-card span {
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.35;
}

.service-link-card i {
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: transform 0.4s;
}

.service-link-card:hover i {
    transform: translateX(5px);
}

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

.zone-card {
    background: var(--primary-light);
    padding: 1.6rem 1.6rem;
    border: 1px solid rgba(201,168,76,0.18);
    text-decoration: none;
    color: var(--cream);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.zone-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(201,168,76,0.08));
    opacity: 0;
    transition: opacity 0.4s;
}

.zone-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 14px 35px rgba(0,0,0,0.3);
}

.zone-card:hover::before {
    opacity: 1;
}

.zone-card-icon {
    color: var(--gold);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.zone-card-text {
    position: relative;
    z-index: 1;
}

.zone-card-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.zone-card-text small {
    font-family: 'Lora', serif;
    font-size: 0.78rem;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer {
    background: var(--primary-dark);
    color: var(--cream);
    padding: 4rem 2rem 1.5rem;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201,168,76,0.18);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

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

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s, padding 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--gold);
}

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

@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .sitemap-section { padding: 4rem 1.2rem; }
    .service-group { padding: 1.4rem 1.2rem; }
    .page-hero { padding: 7rem 1.2rem 3.5rem; min-height: 40vh; }
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--cream);
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--gold);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.6rem;
    cursor: pointer;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.modal-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin: 1.3rem 0 0.5rem;
}

.modal-content p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}