/* ============================================================
   STYLE.CSS - L'atelier de Kashaine
   Décoration anniversaire, cake design, corbeilles cadeaux
   ============================================================ */

/* === FONT AMORESA (logo) === */
@font-face {
    font-family: 'Amoresa';
    src: url('/assets/fonts/Amoresa.woff2') format('woff2'), url('/assets/fonts/Amoresa.ttf') format('truetype');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #e8a0b4;
    --primary-dark: #d4738a;
    --primary-light: #f5d5e0;
    --secondary: #f9c5d1;
    --accent: #c77dba;
    --dark: #2d2d3f;
    --gray-900: #212529;
    --gray-700: #495057;
    --gray-500: #6c757d;
    --gray-300: #dee2e6;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, .12);
    --shadow-pink: 0 4px 20px rgba(232, 160, 180, .25);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --transition: all .3s ease;
    --max-width: 1200px;

    /* Semantic aliases used in inline styles */
    --bg: #ffffff;
    --bg-alt: #fdf2f5;
    --text: #2d2d3f;
    --text-light: #6c757d;
    --border: #dee2e6;
    --pink-50: #fdf2f5;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--gray-900);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    color: var(--dark);
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: .8rem;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .6rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

/* === UTILITY === */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: linear-gradient(180deg, var(--gray-100) 0%, rgba(245, 213, 224, .12) 100%);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
}

.subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: .5rem;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-dark);
}

.text-accent {
    color: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* === SKIP LINK (accessibility) === */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: var(--white);
    padding: .75rem 1.5rem;
    border-radius: 0 0 var(--radius) var(--radius);
    font-weight: 600;
    font-size: .9rem;
    z-index: 10000;
    transition: top .3s ease;
}

.skip-link:focus {
    top: 0;
    color: var(--white);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: .55rem 1.2rem;
    font-size: .88rem;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* === HEADER & NAV === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
    transition: box-shadow .3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    min-height: 44px;
}

.logo:hover {
    opacity: .85;
}

.logo-script {
    font-family: 'Amoresa', cursive;
    font-size: 1.6rem;
    color: var(--primary-dark);
    letter-spacing: .5px;
    line-height: 1;
    white-space: nowrap;
    padding-top: .3em;
}

/* --- Desktop Nav --- */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .5rem .85rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: color .2s ease, background .2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.desktop-nav a:hover {
    color: var(--primary-dark);
    background: var(--pink-50);
}

.desktop-nav a.active {
    color: var(--primary-dark);
    background: rgba(232, 160, 180, .12);
}

/* Contact CTA button in nav */
.desktop-nav .btn.btn-primary {
    margin-left: .5rem;
    padding: .55rem 1.4rem;
    font-size: .875rem;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 2px 10px rgba(212, 115, 138, .3);
    transition: all .25s ease;
}

.desktop-nav .btn.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 115, 138, .4);
}

/* --- Dropdown Desktop --- */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    transition: transform .2s ease;
    flex-shrink: 0;
    opacity: .5;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12), 0 0 0 1px rgba(0, 0, 0, .04);
    padding: .5rem;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: .6rem 1rem;
    color: var(--text);
    font-size: .875rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: var(--radius);
    transition: background .15s ease, color .15s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--pink-50);
    color: var(--primary-dark);
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: .5rem;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Nav Panel --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 88vw;
    background: var(--white);
    z-index: 1001;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), visibility .35s;
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0, 0, 0, .12);
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
}

/* Mobile nav header area with brand */
.mobile-nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mobile-nav > ul::before {
    content: "L'atelier de Kashaine";
    display: block;
    font-family: 'Amoresa', cursive;
    font-size: 1.3rem;
    color: var(--primary-dark);
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: .5rem;
}

.mobile-nav li {
    list-style: none;
    padding: 0 .75rem;
}

.mobile-nav a {
    display: block;
    padding: .85rem .75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius);
    transition: background .2s ease, color .2s ease;
    text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--pink-50);
    color: var(--primary-dark);
}

/* Mobile dropdown toggle row */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-toggle > a {
    flex: 1;
}

.mobile-dropdown-btn {
    background: none;
    border: none;
    color: var(--gray-500);
    padding: .75rem;
    cursor: pointer;
    transition: transform .2s ease, color .2s ease;
    border-radius: var(--radius);
}

.mobile-dropdown-btn:hover {
    color: var(--primary-dark);
    background: var(--pink-50);
}

.mobile-dropdown-btn.open svg {
    transform: rotate(180deg);
}

/* Mobile dropdown sub-menu */
.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0 0 .25rem 0;
    margin: 0;
}

.mobile-dropdown-menu.open {
    display: block;
}

.mobile-dropdown-menu li {
    padding: 0 0 0 .75rem;
}

.mobile-dropdown-menu a {
    font-size: .9rem;
    font-weight: 500;
    padding: .6rem .75rem;
    color: var(--gray-700);
}

.mobile-dropdown-menu a:hover,
.mobile-dropdown-menu a.active {
    background: var(--pink-50);
    color: var(--primary-dark);
}

/* Mobile nav CTA */
.mobile-nav-cta {
    margin-top: auto;
    padding: .75rem;
    border-top: 1px solid var(--gray-300);
}

.mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: .85rem 1rem;
}

.mobile-nav-cta .btn:hover {
    color: var(--white);
}

/* Nav overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    pointer-events: none;
    transition: background .35s ease;
}

.nav-overlay.open {
    background: rgba(0, 0, 0, .45);
    pointer-events: auto;
}

/* === Responsive breakpoints === */
@media (max-width: 992px) {
    .site-header .container {
        height: 60px;
    }

    .logo-script {
        font-size: 1.25rem;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo-script {
        font-size: 1.1rem;
    }
}

/* Hide hamburger & overlay on desktop */
@media (min-width: 993px) {
    .hamburger {
        display: none !important;
    }

    .mobile-nav {
        visibility: hidden !important;
        pointer-events: none;
    }

    .nav-overlay {
        display: none;
    }
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: .8rem 0;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-300);
    font-size: .88rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: .3rem;
    color: var(--gray-500);
}

.breadcrumb li::after {
    content: '/';
    color: var(--gray-300);
    margin-left: .3rem;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li:last-child {
    color: var(--gray-700);
    font-weight: 600;
}

.breadcrumb a {
    color: var(--gray-500);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

/* === HERO === */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 50%, var(--primary) 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero h1 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    max-width: 700px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .9);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 800;
}

.hero-buttons .btn-primary:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.hero-buttons .btn-outline {
    border-color: rgba(255, 255, 255, .5);
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, .15);
    border-color: var(--white);
    color: var(--white);
}

.hero-image {
    flex: 0 0 420px;
    max-width: 420px;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .05) 100%);
    border: 2px dashed rgba(255, 255, 255, .25);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: .95rem;
    text-align: center;
    padding: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat span {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .15);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.5rem;
}

/* === PAGE HERO (internal pages) === */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 3rem 0 2.5rem;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: .5rem;
}

.page-hero p {
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

/* === SERVICE HERO (service detail pages) === */
.service-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.service-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .07) 0%, transparent 70%);
    border-radius: 50%;
}

.service-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-hero h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: .5rem;
}

.service-hero p {
    color: rgba(255, 255, 255, .85);
    max-width: 600px;
    font-size: 1.05rem;
}

.service-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 7;
    background: linear-gradient(135deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .04) 100%);
    border: 2px dashed rgba(255, 255, 255, .2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    font-size: .9rem;
    margin-top: 2rem;
}

/* Zone hero */
.zone-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 3.5rem 0 3rem;
    text-align: center;
}

.zone-hero h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.zone-hero p {
    color: rgba(255, 255, 255, .85);
    margin: 0 auto 0;
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.zone-hero .hero-buttons {
    margin-top: 2.5rem;
}

/* Hero small (blog listing) */
.hero-sm {
    padding: 3rem 0 2.5rem;
}

.hero-sm h1 {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.hero-sm p {
    margin-bottom: 0;
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .3rem;
}

.trust-item span {
    font-size: .92rem;
    opacity: .9;
}

/* === SERVICES GRID === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-pink);
    transform: translateY(-5px);
    color: inherit;
}

.service-card-icon,
.service-card .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(245, 213, 224, .5) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.75rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.service-card h3 a {
    color: var(--dark);
}

.service-card h3 a:hover {
    color: var(--primary-dark);
}

.service-card p {
    font-size: .95rem;
    margin-bottom: 1rem;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .88rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: var(--transition);
    margin-top: auto;
}

.card-link:hover {
    color: var(--accent);
    gap: .6rem;
}

.card-link svg {
    transition: transform .3s;
    width: 16px;
    height: 16px;
}

.card-link:hover svg {
    transform: translateX(3px);
}

/* Service features */
.service-features {
    padding: 2rem 0;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: .6rem 0;
    font-size: .95rem;
    color: rgba(255, 255, 255, .9);
}

.service-features li svg {
    min-width: 20px;
    color: rgba(255, 255, 255, .7);
    margin-top: .15rem;
}

/* Service steps */
.service-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-step h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.service-step p {
    font-size: .9rem;
    color: var(--gray-500);
}

/* === THEMES GRID === */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.theme-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 220px;
    transition: var(--transition);
    cursor: pointer;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.theme-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    transition: transform .5s ease;
}

.theme-card:hover .theme-card-bg {
    transform: scale(1.05);
}

.theme-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-card-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .2) 100%);
    color: var(--white);
}

.theme-card-content h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: .3rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .7);
}

.theme-card-content p {
    color: rgba(255, 255, 255, .95);
    font-size: .85rem;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}

/* === GOOGLE REVIEWS WIDGET === */
.google-reviews-widget {
    max-width: 900px;
    margin: 0 auto;
}
.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}
.google-reviews-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.google-reviews-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5f6368;
}
.google-reviews-summary {
    text-align: right;
}
.google-reviews-score {
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: flex-end;
}
.google-reviews-score strong {
    font-size: 1.5rem;
    color: var(--text);
}
.google-reviews-stars {
    display: flex;
    gap: 1px;
}
.google-reviews-count {
    font-size: .8rem;
    color: #5f6368;
}
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem;
}
.google-review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.google-review-card:hover {
    box-shadow: var(--shadow-md);
}
.google-review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.google-review-author {
    display: flex;
    align-items: center;
    gap: .65rem;
}
.google-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}
.google-review-author strong {
    display: block;
    font-size: .9rem;
    color: var(--text);
}
.google-review-meta {
    font-size: .75rem;
    color: #5f6368;
}
.google-review-stars {
    display: flex;
    gap: 1px;
}
.google-review-text {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Legacy testimonial classes (keep for other pages) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '\201C';
    font-size: 3.5rem;
    color: var(--primary);
    opacity: .3;
    position: absolute;
    top: .5rem;
    left: 1rem;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.testimonial-stars {
    color: #f5a623;
    font-size: .9rem;
    letter-spacing: 2px;
    margin-bottom: .8rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    font-weight: 700;
    font-size: .95rem;
    display: block;
    color: var(--dark);
}

.testimonial-author span {
    font-size: .82rem;
    color: var(--gray-500);
}

/* === WHY CHOOSE US === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-pink);
    transform: translateY(-4px);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--white);
}

.why-card-icon svg {
    stroke: var(--white);
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.why-card p {
    font-size: .92rem;
    color: var(--gray-500);
    margin: 0;
}

/* === ZONES === */
.zones-links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
}

.zone-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    font-size: .92rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
}

.zone-link:hover {
    border-color: var(--primary-dark);
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.zone-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Zone grid (legacy) */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .8rem;
    margin-bottom: 2rem;
}

.zone-tag {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: .92rem;
    transition: var(--transition);
}

.zone-tag:hover {
    border-color: var(--primary);
    background: rgba(232, 160, 180, .08);
    color: var(--primary-dark);
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    margin-bottom: .8rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.open {
    border-color: var(--primary);
    background: var(--pink-50);
    box-shadow: 0 4px 16px rgba(232, 160, 180, .18);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    text-align: left;
    color: var(--dark);
    transition: var(--transition);
    gap: 1rem;
}

.faq-question:hover {
    background: rgba(232, 160, 180, .06);
}

.faq-question .icon-toggle {
    font-size: 1.3rem;
    transition: transform .3s;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.faq-item.open .faq-question {
    background: transparent;
    font-weight: 600;
}

.faq-item.open .faq-question .icon-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 1.5rem;
}

.faq-answer-inner {
    padding-bottom: 1.2rem;
    border-top: 1px solid rgba(232, 160, 180, .25);
    padding-top: 1rem;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--text-light);
}

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular,
.pricing-card:nth-child(2) {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-pink);
    transform: scale(1.03);
}

.pricing-card.popular:hover,
.pricing-card:nth-child(2):hover {
    transform: scale(1.03) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    padding: .4rem 1.5rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 1rem 0 .3rem;
    line-height: 1;
}

.pricing-price span {
    font-size: .9rem;
    font-weight: 600;
    color: var(--gray-500);
}

.pricing-desc {
    font-size: .88rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features li {
    padding: .5rem 0;
    font-size: .92rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    min-width: 18px;
    color: var(--primary);
    margin-top: .15rem;
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-info-item:hover {
    background: var(--primary-light);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.contact-info-item h3 {
    font-size: .95rem;
    margin-bottom: .2rem;
}

.contact-info-item p {
    font-size: .9rem;
    color: var(--gray-500);
    margin: 0;
}

.contact-info-item a {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Form elements */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .4rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-900);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-dark);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 160, 180, .2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: .95rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Legacy form message classes */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* === GALLERY / REALISATIONS === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(45, 45, 63, .8) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(100%);
    transition: transform .3s ease;
}

.gallery-card:hover .gallery-card-overlay {
    transform: translateY(0);
}

.gallery-card-overlay h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: .2rem;
}

.gallery-card-overlay p {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    margin: 0;
}

/* === BLOG LISTING === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    color: inherit;
}

.blog-card-image {
    display: block;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--primary-light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    color: var(--gray-500);
}

.blog-card-body {
    padding: 1.5rem 1.5rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .8rem;
}

.blog-card-date {
    font-size: .8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

.blog-card-author {
    font-size: .8rem;
    color: var(--gray-500);
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .7rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: var(--dark);
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary-dark);
}

.blog-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .7rem;
    line-height: 1.4;
    color: var(--dark);
}

.blog-card-excerpt {
    font-size: .9rem;
    color: var(--gray-700);
    margin-bottom: 1.2rem;
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .88rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: var(--transition);
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--accent);
    gap: .6rem;
}

.blog-card-link svg {
    transition: transform .3s;
}

.blog-card-link:hover svg {
    transform: translateX(3px);
}

/* Blog empty state */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.blog-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.blog-empty h2 {
    margin-bottom: .5rem;
}

.blog-empty p {
    color: var(--gray-500);
    max-width: 400px;
    margin: 0 auto;
}

/* Blog pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-300);
}

.blog-pagination-pages {
    display: flex;
    gap: .4rem;
}

.blog-pagination-num,
.blog-pagination-current {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--transition);
}

.blog-pagination-num {
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.blog-pagination-num:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    background: rgba(232, 160, 180, .08);
}

.blog-pagination-current {
    background: var(--primary-dark);
    color: var(--white);
}

/* === ARTICLE SINGLE === */
/* Article single page */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.article-content h1 {
    font-size: 2rem;
    margin-bottom: .75rem;
    color: var(--dark);
}

.article-meta {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-body h2 {
    font-size: 1.4rem;
    margin: 2rem 0 .75rem;
    color: var(--dark);
}

.article-body h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 .5rem;
    color: var(--dark);
}

.article-body p {
    margin-bottom: 1rem;
}

.article-body img {
    width: 100% !important;
    height: auto;
    border-radius: var(--radius);
    margin: 1rem 0;
}

.article-body a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.article-featured-img {
    margin-top: 1.5rem;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-featured-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: cover;
    max-height: 450px;
}

.article-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-300);
}

.article-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 0;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.article-meta-date,
.article-meta-author {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .88rem;
    color: var(--gray-500);
    font-weight: 500;
}

.article-meta-date svg,
.article-meta-author svg {
    color: var(--primary-dark);
    opacity: .7;
}

/* Article content */
.blog-content h1 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
}

.blog-content h2 {
    font-size: 1.55rem;
    margin: 2.5rem 0 1rem;
    padding-top: .5rem;
    color: var(--dark);
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-dark);
}

.blog-content h3 {
    font-size: 1.2rem;
    margin: 2rem 0 .8rem;
    color: var(--dark);
}

.blog-content p {
    margin-bottom: 1.2rem;
    line-height: 1.85;
    color: var(--gray-700);
}

.blog-content ul,
.blog-content ol {
    list-style: revert;
    padding-left: 1.8rem;
    margin-bottom: 1.5rem;
}

.blog-content li {
    margin-bottom: .5rem;
    line-height: 1.75;
    color: var(--gray-700);
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-dark);
    margin: 2rem 0;
    padding: 1.2rem 1.8rem;
    background: linear-gradient(135deg, rgba(232, 160, 180, .06), rgba(232, 160, 180, .12));
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
}

.blog-content blockquote p {
    margin-bottom: .5rem;
    color: var(--gray-700);
    font-size: 1.02rem;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: .92rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-content table th,
.blog-content table td {
    padding: .85rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-300);
}

.blog-content table th {
    background: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
    border: none;
}

.blog-content table td {
    border-right: 1px solid var(--gray-300);
}

.blog-content table td:last-child {
    border-right: none;
}

.blog-content table tbody tr:nth-child(even) {
    background: var(--gray-100);
}

.blog-content table tbody tr:hover {
    background: rgba(232, 160, 180, .06);
}

.blog-content img {
    width: 100% !important;
    height: auto !important;
    border-radius: var(--radius-lg);
    margin: 2rem auto;
    display: block;
    box-shadow: var(--shadow);
    object-fit: cover;
    max-height: 450px;
}

.blog-content a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-content a:hover {
    color: var(--accent);
}

.blog-content strong {
    color: var(--dark);
}

.blog-content hr {
    border: none;
    height: 1px;
    background: var(--gray-300);
    margin: 2.5rem 0;
}

/* Article footer */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: .8rem;
    font-size: 1.8rem;
    position: relative;
}

.cta-banner p {
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
}

.cta-buttons .btn-primary:hover {
    background: var(--secondary);
    color: var(--dark);
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, .5);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, .15);
    border-color: var(--white);
    color: var(--white);
}

/* Legacy CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: .8rem;
    font-size: 1.8rem;
}

.cta-section p {
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === FOOTER === */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .8);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    font-size: .9rem;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: .5rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, .7);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    opacity: .7;
}

.footer-social {
    display: flex;
    gap: .6rem;
    margin-top: .5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.2rem 0;
    text-align: center;
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .55);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* === STICKY CTA (mobile phone button) === */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary-dark);
    color: var(--white);
    padding: .9rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .2);
    text-decoration: none;
}

.sticky-cta:hover {
    color: var(--white);
    background: var(--accent);
}

.sticky-cta svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: .4rem;
    fill: currentColor;
}

/* Legacy sticky call */
.sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--primary-dark);
    color: var(--white);
    padding: .9rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .2);
}

.sticky-call:hover {
    color: var(--white);
    background: var(--accent);
}

.sticky-call svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: .4rem;
    fill: currentColor;
}

/* === 404 PAGE === */
.page-404 {
    text-align: center;
    padding: 5rem 2rem;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-404 h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: .5rem;
    line-height: 1;
}

.page-404 h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.page-404 p {
    color: var(--gray-500);
    max-width: 450px;
    margin: 0 auto 2rem;
}

/* === SERVICE DETAIL PAGE === */
.service-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-300);
}

.service-section:last-of-type {
    border-bottom: none;
}

.service-section h2 {
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.price-range {
    display: inline-block;
    background: rgba(232, 160, 180, .12);
    color: var(--primary-dark);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    margin: .8rem 0 1rem;
}

.service-cta {
    margin-top: 1.5rem;
}

/* === TARIFS TABLE === */
.tarifs-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tarifs-table thead {
    background: var(--primary-dark);
    color: var(--white);
}

.tarifs-table th {
    padding: 1rem 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: .95rem;
}

.tarifs-table td {
    padding: .9rem 1.2rem;
    border-bottom: 1px solid var(--gray-300);
    font-size: .95rem;
}

.tarifs-table tbody tr:hover {
    background: rgba(232, 160, 180, .05);
}

.tarifs-table tbody tr:nth-child(even) {
    background: var(--gray-100);
}

.tarifs-table tbody tr:nth-child(even):hover {
    background: rgba(232, 160, 180, .08);
}

.tarifs-note {
    background: var(--primary-light);
    border-left: 4px solid var(--primary-dark);
    padding: 1.2rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
}

/* === ZONE DETAIL === */
.arrondissement {
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-300);
}

.arrondissement:last-child {
    border-bottom: none;
}

.arrondissement h2 {
    font-size: 1.4rem;
}

.arrondissement h2 a {
    color: var(--dark);
}

.banlieue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .6rem;
    margin-top: 1.5rem;
}

.banlieue-tag {
    padding: .5rem 1rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: .9rem;
    text-align: center;
}

/* === ABOUT === */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-img-placeholder {
    background: var(--primary-light);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-lg);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: .95rem;
    text-align: center;
    padding: 2rem;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.value-item {
    display: flex;
    gap: .8rem;
    align-items: start;
}

.value-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(232, 160, 180, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.certifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.certif-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.certif-card .icon {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.certif-card strong {
    display: block;
    margin-bottom: .3rem;
}

/* === DEVIS (legacy contact layout) === */
.devis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-urgence {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: .3rem;
}

.form-urgence label {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-weight: 400;
    cursor: pointer;
}

.form-urgence input[type="radio"] {
    accent-color: var(--primary-dark);
}

.contact-info-card {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    margin-bottom: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: .8rem;
    margin-bottom: 1rem;
}

.contact-item .icon {
    font-size: 1.3rem;
    color: var(--primary-dark);
    min-width: 24px;
    text-align: center;
}

.contact-item strong {
    display: block;
    font-size: .92rem;
    color: var(--dark);
}

.contact-item span {
    font-size: .9rem;
    color: var(--gray-700);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* === SCROLL ANIMATIONS === */
.fade-in {
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE: 1200px === */
@media (max-width: 1200px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        max-width: none;
    }

    .hero p {
        max-width: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        flex: 0 0 auto;
        max-width: 400px;
    }

    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === RESPONSIVE: 992px === */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .devis-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:nth-child(2) {
        transform: none;
    }

    .pricing-card:nth-child(2):hover {
        transform: translateY(-5px);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-title {
        font-size: 1.8rem;
    }

    .hero-image {
        display: none;
    }
}

/* === RESPONSIVE: 768px === */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .service-hero .container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .sticky-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
    }

    .sticky-call {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
    }

    body {
        padding-bottom: 55px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }

    .article-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .blog-content h2 {
        font-size: 1.3rem;
    }

    .blog-content table {
        font-size: .82rem;
    }

    .blog-content table th,
    .blog-content table td {
        padding: .6rem .8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-stat {
        min-width: 80px;
    }

    .cta-banner {
        padding: 2.5rem 0;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .zones-links {
        justify-content: center;
    }
}

/* === RESPONSIVE: 480px === */
@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .blog-card-image {
        height: 180px;
    }

    .article-featured-img img {
        max-height: 350px;
    }

    .themes-grid {
        grid-template-columns: 1fr;
    }

    .service-steps {
        grid-template-columns: 1fr;
    }

    .page-404 h1 {
        font-size: 3.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* === PRINT === */
@media print {
    .site-header,
    .sticky-cta,
    .sticky-call,
    .cta-banner,
    .cta-section,
    .hamburger {
        display: none !important;
    }

    body {
        padding-bottom: 0;
    }

    .hero {
        background: var(--primary-light) !important;
        color: var(--dark) !important;
        padding: 1.5rem 0;
    }

    .hero h1 {
        color: var(--dark) !important;
    }
}

/* === GALLERY GRID === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }
    .gallery-item img {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        aspect-ratio: 4 / 5;
    }
    .theme-card {
        min-height: 200px;
    }
}

/* === COMING SOON === */
.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--primary-light);
}

.coming-soon h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.coming-soon p {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon .badge-new {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: .3rem .8rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* === SERVICE HERO IMAGE (real photos) === */
.service-hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
    max-height: 450px;
}

/* === INCLUDES LIST (theme forfait) === */
.includes-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.includes-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.includes-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.includes-check {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.includes-item span {
    font-weight: 500;
    color: var(--text);
    font-size: .95rem;
}

/* === GRID HELPERS (responsive, remplace les inline styles) === */
.grid-2-cols { grid-template-columns: repeat(2, 1fr); }
.grid-3-cols { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
    .grid-2-cols,
    .grid-3-cols {
        grid-template-columns: 1fr;
    }
}

/* === LEGAL PAGES === */
.legal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition);
}
.legal-card:hover {
    box-shadow: var(--shadow-sm);
}
.legal-card-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.legal-card-header h2 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text);
}
.legal-card-body {
    padding: 1.25rem 1.5rem;
}
.legal-card-body p {
    color: var(--text-light);
    margin: .4rem 0;
    line-height: 1.7;
}
.legal-card-body p:first-child {
    margin-top: 0;
}
.legal-card-body p:last-child {
    margin-bottom: 0;
}
.legal-card-body a {
    color: var(--primary-dark);
    font-weight: 500;
}

/* === ACCESSIBILITY === */

/* Focus visible pour navigation clavier */
a:focus-visible,
.btn:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

/* Dropdown accessible au clavier */
.nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in, .fade-in-left, .fade-in-right, .slide-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================
   LIGHTBOX — Affichage plein écran des images
   ============================================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    cursor: zoom-out;
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,.5);
}
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
}
img[data-lightbox] {
    cursor: zoom-in;
}
