/* ========== FONTS LOCALES ========== */
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-VariableFont_wght.ttf') format('truetype-variations'),
         url('../fonts/Quicksand-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pacifico';
    src: url('../fonts/Pacifico-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --brun: #663300;
    --brun-clair: #8B5A2B;
    --brun-fonce: #3D1F00;
    --creme: #FAF6F1;
    --creme-fonce: #EDE4D9;
    --or: #D4A853;
    --or-clair: #F0DEB4;
    --noir: #1a1a1a;
    --blanc: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    background-color: var(--creme);
    color: var(--noir);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Classe utilitaire pour le script Pacifico */
.script {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
    padding: 0.5rem 4%;
    background: rgba(250, 246, 241, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(102, 51, 0, 0.1);
}

nav.scrolled .logo img {
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    /* Caché par défaut : le hero affiche déjà un grand logo */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

nav.scrolled .logo img {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    /* Logo brun sur fond clair quand scrollé */
    filter: brightness(0) saturate(100%) invert(15%) sepia(80%) saturate(1200%) hue-rotate(15deg) brightness(90%);
}

/* Logo footer toujours clair, plus grand */
footer .logo img {
    height: 110px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

footer .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--blanc);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

nav.scrolled .nav-links a {
    text-shadow: none;
    color: var(--brun);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--or);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--or) !important;
    color: var(--brun-fonce) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
}

.nav-cta::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--blanc);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

nav.scrolled .menu-toggle span {
    background: var(--brun);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--brun-fonce);
    z-index: 998;
    display: flex;
    flex-direction: column;
    padding: 7rem 2rem 2rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0s linear 0.5s;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0s linear 0s;
}

.mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
}

.mobile-menu-links a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--creme);
    text-decoration: none;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--or);
}

.mobile-menu.active .mobile-menu-links a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links a:nth-child(5) { transition-delay: 0.3s; }

/* Bloc contact toujours en bas du menu mobile */
.mobile-menu-contact {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}

.mobile-menu.active .mobile-menu-contact {
    opacity: 1;
    transform: translateY(0);
}

.mm-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--creme);
}

.mm-item i {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--or);
    flex-shrink: 0;
}

.mm-item span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mm-item strong {
    font-size: 1rem;
    line-height: 1.3;
    color: var(--creme);
    font-weight: 600;
}

.mm-item a {
    color: var(--creme);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mm-item a:hover {
    color: var(--or);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.1s linear;
    will-change: transform;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(61, 31, 0, 0.9) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 6% 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Ligne du bas : description + info côte à côte */
.hero-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: end;
}

.hero-main {
    max-width: 720px;
}

/* Ligne logo + titre côte à côte */
.hero-head {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.75rem;
}

.hero-logo {
    display: block;
    width: clamp(160px, 18vw, 260px);
    height: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
    animation: heroLogoFade 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
    transform: scale(0.9);
}

@keyframes heroLogoFade {
    to { opacity: 1; transform: scale(1); }
}

.hero h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    font-weight: 700;
    color: var(--creme);
    line-height: 1.05;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.hero h1 .line {
    display: block;
}

.hero h1 .word {
    display: inline-block;
    transform: translateY(110%) rotate(6deg);
    opacity: 0;
    animation: heroSlideUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: transform, opacity;
}

.hero h1 .line:nth-child(2) .word { animation-delay: 0.1s; }
.hero h1 .line:nth-child(3) .word { animation-delay: 0.2s; }

@keyframes heroSlideUp {
    to {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
}

.hero h1 em {
    font-family: 'Pacifico', cursive;
    font-style: normal;
    font-weight: 400;
    color: var(--or);
    display: inline-block;
    transform: rotate(-2deg);
    letter-spacing: 0;
    padding: 0 0.1em;
}

.hero-description {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.7s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.4s ease,
                color 0.4s ease,
                box-shadow 0.4s ease;
    border: none;
    cursor: pointer;
    will-change: transform;
}

.btn-primary {
    background: var(--or);
    color: var(--brun-fonce);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 168, 83, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--creme);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: var(--creme);
    color: var(--brun-fonce);
    border-color: var(--creme);
}

/* Bouton magnétique (réutilise transition .btn) */
.nav-cta,
.pack-cta {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.4s ease,
                color 0.4s ease,
                box-shadow 0.4s ease;
    will-change: transform;
}

/* Bloc info à droite du hero-body */
.hero-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
    min-width: 220px;
}

.hero-info-item {
    color: var(--creme);
    line-height: 1.3;
}

.hero-info-item span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    color: var(--or);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-info-item strong {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--creme);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-info-item strong a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-info-item strong a:hover {
    color: var(--or);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--creme);
    font-size: 0.8rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========== MARQUEE ========== */
.marquee {
    background: var(--brun);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 3rem;
    color: var(--creme);
    font-size: 0.95rem;
    white-space: nowrap;
}

.marquee-item i {
    color: var(--or);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== SECTIONS ========== */
section {
    padding: 8rem 6%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--or);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--or);
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

[data-reveal]:not(.is-visible) .section-label::before {
    transform: scaleX(0);
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--brun-fonce);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-title .accent {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    color: var(--or);
    letter-spacing: 0;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--brun-clair);
    max-width: 550px;
    line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    will-change: transform;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img-1 {
    width: 60%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 55%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: 20%;
    left: 50%;
    background: var(--or);
    color: var(--brun-fonce);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(212, 168, 83, 0.3);
    opacity: 0;
    transform: translateX(-50%) scale(0);
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-badge.pop {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.about-badge strong {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 3rem;
    display: block;
    line-height: 1;
}

.about-badge span {
    font-size: 0.85rem;
    font-weight: 500;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    margin: 2rem 0;
    color: var(--brun-clair);
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature-icon {
    width: 55px;
    height: 55px;
    background: var(--creme-fonce);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--brun);
    transition: all 0.3s ease;
}

.about-feature:hover .about-feature-icon {
    background: var(--or);
    transform: rotate(10deg);
}

.about-feature span {
    font-weight: 600;
    color: var(--brun-fonce);
}

/* ========== SERVICES ========== */
.services {
    background: var(--brun-fonce);
    color: var(--creme);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: 'Services';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Pacifico', cursive;
    font-size: 22vw;
    font-weight: 400;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    pointer-events: none;
}

.services .section-title {
    color: var(--creme);
}

.services .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    gap: 1.5rem;
}

.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--or) 0%, var(--brun) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--or);
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
    animation: floatGentle 4s ease-in-out infinite;
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.2);
    color: var(--creme);
    transform: scale(1.1);
}

.service-card:nth-child(2n) .service-icon { animation-delay: 0.5s; }
.service-card:nth-child(3n) .service-icon { animation-delay: 1s; }
.service-card:nth-child(4n) .service-icon { animation-delay: 1.5s; }

@keyframes floatGentle {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

.service-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.service-card p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-card p strong {
    color: var(--or);
}

/* ========== GALLERY — masonry + lightbox ========== */
.gallery {
    padding: 0;
    overflow: hidden;
}

.gallery-header {
    padding: 6rem 6% 3rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 0.6rem;
    padding: 0 0.6rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border: none;
    padding: 0;
    margin: 0;
    background: var(--brun-fonce);
    border-radius: 8px;
    display: block;
    font: inherit;
    color: inherit;
    grid-row: span 2;
}

.gallery-item.gallery-wide {
    grid-column: span 2;
}

.gallery-item.gallery-tall {
    grid-row: span 3;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 31, 0, 0.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem;
    pointer-events: none;
}

.gallery-item:hover .gallery-item-overlay,
.gallery-item:focus-visible .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay > span {
    color: var(--creme);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-item-overlay i {
    width: 38px;
    height: 38px;
    background: rgba(212, 168, 83, 0.95);
    color: var(--brun-fonce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

.gallery-item:focus-visible {
    outline: 3px solid var(--or);
    outline-offset: 2px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(20, 10, 0, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 5rem;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox[hidden] {
    display: none;
}

.lightbox.is-open {
    opacity: 1;
}

.lightbox-figure {
    position: relative;
    max-width: min(1200px, 90vw);
    max-height: calc(100vh - 12rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.lightbox-img-wrap {
    position: relative;
    max-width: 100%;
    max-height: calc(100vh - 14rem);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 14rem);
    object-fit: contain;
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: scale(0.96);
}

.lightbox-img.is-loaded {
    opacity: 1;
    transform: scale(1);
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--or);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.lightbox-loader.is-loading {
    opacity: 1;
}

.lightbox-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
    color: var(--creme);
    font-size: 0.95rem;
}

.lightbox-caption-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.lightbox-counter {
    font-family: 'Pacifico', cursive;
    color: var(--or);
    font-size: 1.2rem;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--creme);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--or);
    color: var(--brun-fonce);
    transform: scale(1.08);
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-thumbs {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    max-width: 90vw;
    overflow-x: auto;
    padding: 0.5rem;
    scrollbar-width: none;
}

.lightbox-thumbs::-webkit-scrollbar { display: none; }

.lightbox-thumb {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: none;
    padding: 0;
    flex-shrink: 0;
    transition: border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.55;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.lightbox-thumb.is-active {
    border-color: var(--or);
    opacity: 1;
}

body.lightbox-open {
    overflow: hidden;
}

/* ========== PACKS — accordéon mobile / tabs desktop ========== */
.packs {
    background: linear-gradient(180deg, var(--creme-fonce) 0%, var(--creme) 100%);
}

.packs-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.packs-header .section-subtitle {
    margin: 0 auto;
}

.packs-accordion {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* ===== ACCORDÉON MOBILE (par défaut) ===== */
.pack-item {
    background: var(--blanc);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(102, 51, 0, 0.06);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.pack-item:hover {
    box-shadow: 0 14px 34px rgba(102, 51, 0, 0.1);
}

.pack-item.featured {
    box-shadow: 0 12px 30px rgba(212, 168, 83, 0.2);
}

.pack-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    color: var(--brun-fonce);
    text-align: left;
    font-family: inherit;
    transition: background 0.3s ease;
}

.pack-header:hover {
    background: var(--creme);
}

.pack-head-left {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex: 1;
    min-width: 0;
}

.pack-level {
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--or);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    min-width: 2.2em;
}

.pack-item.active .pack-level {
    transform: scale(1.08) rotate(-3deg);
}

.pack-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.pack-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--brun-fonce);
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pack-age {
    font-size: 0.72rem;
    color: var(--brun-clair);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.pack-badge {
    background: var(--or);
    color: var(--brun-fonce);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.18rem 0.6rem;
    border-radius: 100px;
    line-height: 1;
}

.pack-chevron {
    color: var(--brun-clair);
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
}

.pack-item.active .pack-chevron {
    transform: rotate(180deg);
    color: var(--or);
}

.pack-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.pack-item.active .pack-body {
    max-height: 700px;
}

.pack-body-inner {
    padding: 0 1.4rem 1.5rem;
}

.pack-description {
    color: var(--brun-clair);
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    line-height: 1.6;
}

.pack-items {
    list-style: none;
    border-top: 1px dashed var(--creme-fonce);
    padding-top: 1rem;
    margin-bottom: 1.4rem;
}

.pack-items li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 0;
    font-size: 0.92rem;
    color: var(--brun-fonce);
}

.pack-items li i {
    color: var(--or);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pack-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--creme-fonce);
    color: var(--brun);
    padding: 0.85rem 1.6rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.pack-cta:hover {
    background: var(--brun);
    color: var(--creme);
    transform: translateY(-2px);
}

.pack-cta i {
    transition: transform 0.4s ease;
}

.pack-cta:hover i {
    transform: translateX(4px);
}

.pack-item.featured .pack-cta {
    background: var(--or);
    color: var(--brun-fonce);
}

.pack-item.featured .pack-cta:hover {
    background: var(--brun);
    color: var(--creme);
}

/* ===== TABS DESKTOP (≥ 900px) ===== */
@media (min-width: 900px) {
    .packs-accordion {
        position: relative;
        display: grid;
        grid-template-columns: 280px 1fr;
        background: var(--blanc);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 70px rgba(102, 51, 0, 0.1);
        min-height: 520px;
    }

    .pack-item {
        display: contents;
        background: none;
        box-shadow: none;
        border-radius: 0;
    }

    .pack-item:hover { box-shadow: none; }

    .pack-header {
        grid-column: 1;
        padding: 1.1rem 1.4rem 1.1rem 1.6rem;
        border-bottom: 1px solid var(--creme-fonce);
        position: relative;
        background: var(--blanc);
    }

    .pack-item:last-child .pack-header {
        border-bottom: none;
    }

    .pack-header::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--or);
        transform: scaleY(0);
        transform-origin: center;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .pack-item.active .pack-header {
        background: var(--creme);
    }

    .pack-item.active .pack-header::before {
        transform: scaleY(1);
    }

    .pack-header:hover {
        background: #f9f4ec;
    }

    .pack-chevron {
        display: none;
    }

    .pack-body {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: calc(100% - 280px);
        max-height: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background: var(--blanc);
        border-left: 1px solid var(--creme-fonce);
        transition: opacity 0.4s ease;
        overflow: auto;
    }

    .pack-item.active .pack-body {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .pack-body-inner {
        padding: 3rem 3rem;
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .pack-body-inner .pack-description {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }

    .pack-items {
        font-size: 1rem;
        padding-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .pack-items li {
        padding: 0.55rem 0;
        font-size: 0.98rem;
    }

    .pack-cta {
        align-self: flex-start;
        padding: 1rem 2rem;
        margin-top: auto;
    }

    .pack-level {
        font-size: 2rem;
    }
}

/* ========== HORAIRES ========== */
.horaires {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.horaires-image {
    position: relative;
    min-height: 600px;
}

.horaires-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horaires-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 51, 0, 0.9) 0%, rgba(61, 31, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    color: var(--creme);
}

.horaires-image-overlay .section-title {
    color: var(--creme);
}

.horaires-list {
    list-style: none;
    margin-top: 2rem;
}

.horaires-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 1rem;
}

.horaires-list li:last-child {
    border-bottom: none;
}

.jour {
    font-weight: 600;
}

.heures {
    opacity: 0.9;
}

.ferme {
    color: #ff6b6b;
}

.horaires-info {
    background: var(--creme-fonce);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card {
    background: var(--blanc);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(102, 51, 0, 0.08);
}

.contact-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brun-fonce);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-card h3 i {
    color: var(--or);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--creme-fonce);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--creme);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brun);
    font-size: 1rem;
}

.contact-item a {
    color: var(--brun-fonce);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--or);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 15px 40px rgba(102, 51, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== FOOTER ========== */
footer {
    background: var(--brun-fonce);
    color: var(--creme);
    padding: 5rem 6% 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-address {
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(250, 246, 241, 0.7);
}

.footer-address strong {
    display: inline-block;
    font-weight: 700;
    color: var(--creme);
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.footer-address a {
    color: var(--creme);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-address a:hover {
    color: var(--or);
}

.footer-column h4 {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--or);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--creme);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--or);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--creme);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--or);
    color: var(--brun-fonce);
    transform: translateY(-5px);
}

.footer-credits {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.78rem;
    opacity: 0.55;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.footer-credits a {
    color: var(--or);
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--or-clair);
    text-decoration: underline;
}

.swiss-flag {
    display: inline-flex;
    align-items: center;
    width: 14px;
    height: 14px;
    margin-right: 0.15rem;
    vertical-align: middle;
}

.swiss-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========== ANIMATIONS REVEAL UNIVERSELLES ========== */
[data-reveal]:not(.is-visible) {
    opacity: 0;
    will-change: opacity, transform, filter;
}
[data-reveal="up"]:not(.is-visible)      { transform: translateY(60px); }
[data-reveal="down"]:not(.is-visible)    { transform: translateY(-40px); }
[data-reveal="left"]:not(.is-visible)    { transform: translateX(-60px); }
[data-reveal="right"]:not(.is-visible)   { transform: translateX(60px); }
[data-reveal="zoom"]:not(.is-visible)    { transform: scale(0.85); }
[data-reveal="zoom-out"]:not(.is-visible){ transform: scale(1.15); }
[data-reveal="blur"]:not(.is-visible)    { filter: blur(20px); transform: translateY(20px); }
[data-reveal="rotate"]:not(.is-visible)  { transform: rotate(-8deg) translateY(40px); }

@keyframes revealUp       { to { opacity: 1; transform: translateY(0); } }
@keyframes revealDown     { to { opacity: 1; transform: translateY(0); } }
@keyframes revealLeft     { to { opacity: 1; transform: translateX(0); } }
@keyframes revealRight    { to { opacity: 1; transform: translateX(0); } }
@keyframes revealZoom     { to { opacity: 1; transform: scale(1); } }
@keyframes revealZoomOut  { to { opacity: 1; transform: scale(1); } }
@keyframes revealBlur     { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes revealRotate   { to { opacity: 1; transform: rotate(0) translateY(0); } }

[data-reveal="up"].is-visible      { animation: revealUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
[data-reveal="down"].is-visible    { animation: revealDown 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
[data-reveal="left"].is-visible    { animation: revealLeft 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
[data-reveal="right"].is-visible   { animation: revealRight 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
[data-reveal="zoom"].is-visible    { animation: revealZoom 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
[data-reveal="zoom-out"].is-visible{ animation: revealZoomOut 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
[data-reveal="blur"].is-visible    { animation: revealBlur 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
[data-reveal="rotate"].is-visible  { animation: revealRotate 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

/* Tilt 3D des cartes */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.tilt-card-inner {
    transform: translateZ(20px);
}

/* Curseur custom (desktop seulement) */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--or);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 0 12px rgba(212, 168, 83, 0.6);
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--or);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                width 0.3s ease,
                height 0.3s ease,
                opacity 0.3s ease;
    opacity: 0;
}

body.has-custom-cursor {
    cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor .menu-toggle {
    cursor: none;
}

.cursor-ring.hover {
    width: 70px;
    height: 70px;
    border-color: var(--or);
    background: rgba(212, 168, 83, 0.1);
}

.cursor-dot.hover {
    width: 0;
    height: 0;
}

@media (hover: none), (max-width: 968px) {
    .cursor-dot, .cursor-ring { display: none; }
    body.has-custom-cursor { cursor: auto; }
}

/* Respect des préférences — on neutralise seulement les anims décoratives */
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    .hero h1 .word,
    .service-icon,
    .hero-info-icon,
    .about-badge {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        filter: none !important;
        transition: none !important;
    }

    .cursor-dot, .cursor-ring { display: none !important; }
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-item.gallery-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gallery-item.gallery-tall {
        grid-row: span 2;
    }
    .gallery-item.gallery-wide {
        grid-column: span 2;
    }
}

@media (max-width: 968px) {
    nav {
        padding: 0.75rem 5%;
    }

    .logo img,
    nav.scrolled .logo img {
        height: 48px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        align-items: center;
    }

    .hero-content {
        padding: 0;
        gap: 0px;
    }


    .hero-body {
        grid-template-columns: 1fr;
    }

    /* Sur mobile, l'adresse / tél / horaires sont dans le menu */
    .hero-info {
        display: none;
    }

    /* Logo et titre empilés, centrés */
    .hero-head {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        text-align: center;
    }

    .hero-logo {
        width: clamp(160px, 38vw, 240px);
    }

    .hero-main {
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    section {
        padding: 5rem 5%;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-images {
        height: 400px;
    }

    .about-content {
        padding-left: 0;
    }

    /* Mobile : on garde 2 colonnes pour préserver le pairage vertical
       (Librairie/Commande, Fournitures/Matériel, etc.) */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }

    .gallery-item,
    .gallery-item.gallery-wide,
    .gallery-item.gallery-tall,
    .gallery-item.gallery-large {
        grid-column: auto;
        grid-row: span 2;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        z-index: 999;
    }

    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }

    .lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-thumbs { display: none; }

    .horaires {
        grid-template-columns: 1fr;
    }

    .horaires-image {
        min-height: 500px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    /* Petit écran : on garde le pairing 2 colonnes mais on serre */
    .services-grid {
        gap: 0.6rem;
    }

    .service-card {
        padding: 1.1rem;
        border-radius: 16px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-images {
        height: 350px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .pack-header {
        padding: 1rem 1.1rem;
    }

    .pack-level {
        font-size: 1.9rem;
    }

    .pack-title {
        font-size: 0.95rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
