/* ================================
   COOKOR - STYLE PRINCIPAL PREMIUM
   ================================ */

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    background: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ================================
   NAVBAR
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: background .4s, padding .4s, box-shadow .4s;
    background: transparent;
}
.navbar.scrolled {
    background: var(--color-navbar-bg);
    padding: .65rem 0;
    box-shadow: 0 4px 32px var(--color-navbar-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-logo img {
    height: 72px;
    width: auto;
    transition: height .3s;
}
/* Light mode: dark logo by default, light logo on homepage hero */
.navbar-logo .logo-light { display: none; }
.navbar-logo .logo-dark { display: block; }
.page-home .navbar:not(.scrolled) .navbar-logo .logo-light,
.hero-dark .navbar:not(.scrolled) .navbar-logo .logo-light { display: block; }
.page-home .navbar:not(.scrolled) .navbar-logo .logo-dark,
.hero-dark .navbar:not(.scrolled) .navbar-logo .logo-dark { display: none; }
/* Dark mode: always light logo */
[data-theme="dark"] .navbar-logo .logo-light { display: block; }
[data-theme="dark"] .navbar-logo .logo-dark { display: none; }
.navbar.scrolled .navbar-logo img {
    height: 52px;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}
.navbar-links a {
    font-family: var(--font-secondary);
    font-size: .88rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    transition: color .25s;
    position: relative;
    letter-spacing: .02em;
}
/* Navbar over dark hero (homepage + all pages with hero bg image) - force light text */
.page-home .navbar:not(.scrolled) .navbar-links a,
.hero-dark .navbar:not(.scrolled) .navbar-links a { color: #fff; }
.page-home .navbar:not(.scrolled) .burger span,
.hero-dark .navbar:not(.scrolled) .burger span { background: #fff; }
.page-home .navbar:not(.scrolled) .theme-toggle,
.hero-dark .navbar:not(.scrolled) .theme-toggle { color: #fff; border-color: rgba(255,255,255,.2); }
.navbar-links a:not(.btn):not(.btn-cta)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width .35s, left .35s;
}
.navbar-links a:not(.btn):not(.btn-cta):hover { color: var(--color-accent); }
.navbar-links a:not(.btn):not(.btn-cta):hover::after { width: 100%; left: 0; }
.navbar-links a:not(.btn):not(.btn-cta).active { color: var(--color-accent); }
.navbar-links a:not(.btn):not(.btn-cta).active::after { width: 100%; left: 0; }
.navbar-links .btn:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-text-on-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--color-shadow-accent);
}

/* --- Boutons --- */
.btn, .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.8rem;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: .88rem;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, background .25s, border-color .25s, color .25s;
    text-decoration: none;
    letter-spacing: .01em;
    background: transparent;
    color: var(--color-text);
}
.btn-accent, .btn-cta {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    border-color: var(--color-accent);
}
.btn-accent:hover, .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-shadow-accent);
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-text-on-accent);
}
.btn:active, .btn-cta:active { transform: translateY(-1px); }
.btn-outline, .btn-cta.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}
.btn-outline:hover, .btn-cta.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
}
.btn-lg {
    padding: 1rem 2.2rem;
    font-size: .95rem;
    border-radius: 12px;
}
.btn-white {
    background: #fff;
    color: #111;
    border-color: #fff;
}
.btn-white:hover {
    background: #f5f0eb;
    box-shadow: 0 10px 30px rgba(255, 255, 255, .15);
}

/* --- Burger mobile --- */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    z-index: 1001;
}
.burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform .35s, opacity .35s;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: none;
    height: 100vh;
    background-color: var(--color-background);
    background: var(--color-mobile-nav-bg);
    z-index: 1002;
    padding: 5rem 1.5rem 2rem;
    transition: right .4s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    border-left: 1px solid var(--color-mobile-nav-border);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
    display: block;
    padding: .7rem 0;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    border-bottom: 1px solid var(--color-faq-border);
    transition: color .25s, padding-left .25s;
}
.mobile-nav a:hover {
    color: var(--color-accent);
    padding-left: .5rem;
}
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-overlay);
    z-index: 998;
    opacity: 0;
    transition: opacity .35s;
    backdrop-filter: blur(4px);
    pointer-events: none;
}
.nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 1024px) {
    .navbar-links { display: none; }
    .burger { display: flex; }
    .mobile-nav { display: block; }
    .nav-overlay { display: block; }
}

/* ================================
   SECTIONS
   ================================ */
.section {
    padding: 6rem 0;
    position: relative;
}
.section-lg { padding: 8rem 0; }
.section-dark { background: var(--color-background); }
.section-surface { background: var(--color-surface); }
.section-alt {
    background: var(--color-section-alt);
}
.section-accent-soft {
    background: var(--color-accent-soft-bg);
}

/* --- Titres de section --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}
.section-header .overline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-secondary);
    font-size: .78rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 1rem;
}
.section-header .overline::before,
.section-header .overline::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--color-accent);
    opacity: .4;
}
.section-header h2 {
    font-size: clamp(1.8rem, 2.5vw + .8rem, 2.8rem);
    color: var(--color-text);
    margin-bottom: .75rem;
    letter-spacing: -.02em;
}
.section-header p {
    color: var(--color-text-light);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: var(--line-height-relaxed);
}

/* --- Decorative line --- */
.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), rgba(212, 165, 51, .3));
    border-radius: 2px;
    margin: 1.5rem auto;
}

/* ================================
   HERO (Homepage)
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 5rem;
    background: var(--color-hero-gradient);
}
/* --- Hero background slideshow --- */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
}
.hero-slide.active img {
    animation: hero-slide-zoom 8s ease-out forwards;
}
@keyframes hero-slide-zoom {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
/* Dark overlay on slideshow so text stays readable */
.hero-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(10, 10, 10, .82) 0%,
        rgba(15, 15, 15, .75) 35%,
        rgba(17, 17, 17, .68) 60%,
        rgba(10, 10, 10, .8) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(212, 165, 51, .06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--color-background), transparent);
    pointer-events: none;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}
.hero-content {
    color: var(--color-text-on-dark);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem 1.2rem;
    background: rgba(212, 165, 51, .1);
    border: 1px solid rgba(212, 165, 51, .2);
    border-radius: 50px;
    font-size: .82rem;
    color: var(--color-accent);
    font-weight: var(--font-weight-medium);
    margin-bottom: 2rem;
    letter-spacing: .02em;
}
.hero h1 {
    font-size: clamp(2.4rem, 4.5vw + 1rem, 4rem);
    color: var(--color-text-on-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -.03em;
    line-height: 1.1;
}
.hero h1 .accent {
    color: var(--color-accent);
    position: relative;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(245, 240, 235, .75);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(245, 240, 235, .65);
}
.trust-item i {
    color: var(--color-accent);
    font-size: 1.15rem;
}
.hero-visual {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 480px;
    z-index: 3;
}
.hero-visual-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-inner::before {
    content: '';
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 51, .08) 0%, transparent 70%);
}
.hero-visual-inner::after {
    content: '';
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 51, .08);
}
.hero-visual img {
    position: relative;
    z-index: 2;
    width: 65%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
}

@media (max-width: 860px) {
    .hero-visual { display: none; }
    .hero { min-height: 90vh; }
}

/* ================================
   PAGE HERO (sous-pages)
   ================================ */
.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: var(--color-page-hero-gradient);
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(10, 10, 10, .85) 0%,
        rgba(15, 15, 15, .78) 40%,
        rgba(17, 17, 17, .72) 70%,
        rgba(10, 10, 10, .85) 100%);
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 165, 51, .06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--color-background), transparent);
    pointer-events: none;
    z-index: 1;
}
.page-hero h1 {
    font-size: clamp(2rem, 3vw + .8rem, 3.2rem);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
    position: relative;
}
.page-hero h1 .accent { color: var(--color-accent); }
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}
.page-hero .breadcrumb {
    margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a,
.page-hero .breadcrumb .sep {
    color: rgba(255, 255, 255, .5);
}
.page-hero .breadcrumb a:hover {
    color: var(--color-accent);
}
.page-hero .breadcrumb .current {
    color: var(--color-accent);
}
.page-hero .overline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 1.25rem;
    position: relative;
}

/* ================================
   CARDS PREMIUM
   ================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
@media (max-width: 860px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .cards-grid { grid-template-columns: 1fr; }
}
.card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 2.25rem;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s;
    border: 1px solid var(--color-card-border);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px var(--color-card-shadow);
}
.card:hover::before { opacity: 1; }
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 165, 51, .12), rgba(212, 165, 51, .04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: var(--color-accent);
    border: 1px solid rgba(212, 165, 51, .1);
}
.card h3 {
    font-size: var(--text-lg);
    margin-bottom: .75rem;
    color: var(--color-text);
}
.card p {
    color: var(--color-text-light);
    font-size: .95rem;
    line-height: var(--line-height-relaxed);
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.25rem;
    font-size: .88rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-accent);
    transition: gap .25s;
}
.card-link:hover { gap: .7rem; }

/* --- Feature cards (prestation items with image) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 860px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    transition: transform .35s, box-shadow .35s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--color-card-shadow);
}
.feature-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.feature-card:hover .feature-card-img img {
    transform: scale(1.06);
}
.feature-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
}
.feature-card-body h4 {
    font-size: .95rem;
    color: var(--color-text);
    margin-bottom: .4rem;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}
.feature-card-body h4 i {
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
}
.feature-card-body p {
    font-size: .82rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* --- Cards avec image --- */
.card-img {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
a.card-img,
a.card {
    display: flex;
    text-decoration: none;
    color: inherit;
}
.card-img .card-body {
    padding: 1.75rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-img .card-body p { flex-grow: 1; }
.card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.card-img:hover .card-img-wrap img {
    transform: scale(1.06);
}
.card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--color-surface), transparent);
    pointer-events: none;
    pointer-events: none;
}

/* --- Why items avec image --- */
.why-item-img {
    width: calc(100% + 2rem);
    margin: -1rem -1rem 1rem;
    aspect-ratio: 3/2;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}
.why-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.why-item:hover .why-item-img img {
    transform: scale(1.06);
}

/* ================================
   EVENT CARDS
   ================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 860px) {
    .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .events-grid { grid-template-columns: 1fr; }
}
.event-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-hover) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    transition: transform .35s;
    border: 1px solid var(--color-card-border);
    cursor: default;
}
.event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .1) 50%, transparent 100%);
    z-index: 1;
}
.event-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-accent);
    z-index: 3;
    margin: 0 1.75rem 1.75rem;
    transition: width .35s;
}
.event-card:hover { transform: translateY(-4px); }
.event-card:hover::after { width: 80px; }
.event-card-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 165, 51, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    z-index: 3;
    border: 1px solid rgba(212, 165, 51, .1);
}
.event-card-content {
    position: relative;
    z-index: 2;
}
.event-card h3 {
    font-size: 1.15rem;
    color: var(--color-event-text);
    margin-bottom: .3rem;
}
.event-card p {
    font-size: .85rem;
    color: var(--color-event-text-light);
}

/* ================================
   MENU / CARTE
   ================================ */
.menu-category {
    margin-bottom: 4rem;
}
.menu-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.menu-category-title i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 165, 51, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.menu-category-title h3 {
    font-size: var(--text-xl);
    color: var(--color-accent);
}
.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 1rem;
}
.menu-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1.1rem 1.25rem;
    border-radius: 12px;
    background: var(--color-overlay-light);
    border: 1px solid var(--color-card-border);
    transition: background .25s, border-color .25s, transform .25s;
}
.menu-item:hover {
    background: rgba(212, 165, 51, .06);
    border-color: rgba(212, 165, 51, .12);
    transform: translateX(4px);
}
.menu-item i {
    color: var(--color-accent);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: .9rem;
}
.menu-item span {
    font-size: .95rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* --- Tags --- */
.tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: center;
}
.tag {
    padding: .45rem 1.1rem;
    border-radius: 50px;
    background: rgba(212, 165, 51, .06);
    border: 1px solid rgba(212, 165, 51, .12);
    font-size: .82rem;
    color: var(--color-accent);
    font-weight: var(--font-weight-medium);
    transition: background .2s, transform .2s;
    letter-spacing: .01em;
}
.tag:hover {
    background: rgba(212, 165, 51, .14);
    transform: translateY(-2px);
}

/* ================================
   PATISSERIE SHOWCASE
   ================================ */
.patisserie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    gap: 1.25rem;
}
.patisserie-item {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 165, 51, .04), rgba(212, 165, 51, .01));
    border: 1px solid rgba(212, 165, 51, .08);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.patisserie-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px var(--color-card-shadow);
    border-color: rgba(212, 165, 51, .2);
}
.patisserie-item i {
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
}
.patisserie-item h4 {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: .4rem;
}
.patisserie-item p {
    font-size: .82rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ================================
   FORMULES / PRICING
   ================================ */
.formules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 1.75rem;
}
.formule-card {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-card-border);
    position: relative;
    transition: transform .35s, box-shadow .35s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.formule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(212, 165, 51, .3), transparent);
}
.formule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px var(--color-card-shadow);
}
.formule-card.featured {
    border-color: rgba(212, 165, 51, .3);
    box-shadow: 0 0 0 1px rgba(212, 165, 51, .15), 0 8px 32px rgba(212, 165, 51, .08);
}
.formule-card.featured::before {
    background: linear-gradient(90deg, var(--color-accent), rgba(212, 165, 51, .3));
}
.formule-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    padding: .4rem 1.1rem;
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    font-size: .72rem;
    font-weight: var(--font-weight-bold);
    border-radius: 0 0 10px 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.formule-name {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin-bottom: .4rem;
}
.formule-persons {
    font-size: .85rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-faq-border);
}
.formule-price {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: .25rem;
}
.formule-price small {
    font-size: .82rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-light);
}
.formule-desc {
    font-size: .92rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: var(--line-height-relaxed);
}
.formule-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.formule-list li {
    padding: .5rem 0;
    font-size: .88rem;
    color: var(--color-text);
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}
.formule-list li i {
    color: var(--color-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ================================
   WHY / AVANTAGES
   ================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 1.25rem;
}
.why-item {
    text-align: center;
    padding: 1rem;
    border-radius: 16px;
    transition: transform .3s;
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    overflow: hidden;
}
.why-item:hover { transform: translateY(-4px); }
.why-item-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 165, 51, .1), rgba(212, 165, 51, .03));
    border: 1px solid rgba(212, 165, 51, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--color-accent);
}
.why-item h3 {
    font-size: 1rem;
    margin-bottom: .5rem;
    color: var(--color-text);
    padding: 0 .25rem;
}
.why-item p {
    font-size: .85rem;
    color: var(--color-text-light);
    line-height: 1.5;
    padding: 0 .25rem .5rem;
}

/* ================================
   STATS BAND
   ================================ */
.stats-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3.5rem 2rem;
    background: var(--color-surface);
    border-radius: 20px;
    border: 1px solid var(--color-card-border);
    margin-top: 3rem;
}
.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--color-card-border);
}
.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3vw, var(--text-3xl));
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin-bottom: .5rem;
    line-height: 1;
}
.stat-label {
    font-size: .88rem;
    color: var(--color-text-light);
    letter-spacing: .02em;
    line-height: 1.4;
}
@media (max-width: 600px) {
    .stats-band {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 0;
    }
    .stat-item { padding: 1.25rem 1rem; }
    .stat-item:not(:last-child)::after {
        right: 15%;
        top: auto;
        bottom: 0;
        height: 1px;
        width: 70%;
    }
}

/* ================================
   TENDANCES
   ================================ */
.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 1.75rem;
}
.trend-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    transition: transform .35s, box-shadow .35s;
}
.trend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px var(--color-card-shadow);
}
.trend-visual {
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 165, 51, .08), rgba(212, 165, 51, .02));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.trend-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    opacity: .3;
}
.trend-visual i {
    font-size: 3.5rem;
    color: var(--color-accent);
    opacity: .5;
}
.trend-body {
    padding: 1.75rem;
}
.trend-body h3 {
    font-size: 1.1rem;
    margin-bottom: .6rem;
    color: var(--color-text);
}
.trend-body p {
    font-size: .9rem;
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

/* ================================
   ZONE
   ================================ */
.zone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
    gap: 1.5rem;
}
.zone-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 165, 51, .04), rgba(212, 165, 51, .01));
    border: 1px solid rgba(212, 165, 51, .08);
    transition: transform .3s, border-color .3s;
}
.zone-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 165, 51, .2);
}
.zone-card i {
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}
.zone-card h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: .6rem;
}
.zone-card p {
    font-size: .88rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ================================
   STEPS / PROCESSUS
   ================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
}
.step-item {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}
.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 165, 51, .12), rgba(212, 165, 51, .04));
    border: 2px solid rgba(212, 165, 51, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
}
.step-item h3 {
    font-size: 1.05rem;
    margin-bottom: .6rem;
    color: var(--color-text);
}
.step-item p {
    font-size: .9rem;
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

/* ================================
   FAQ
   ================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--color-faq-border);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.4rem 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: color .25s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-question i {
    font-size: 1.25rem;
    transition: transform .35s;
    flex-shrink: 0;
    color: var(--color-accent);
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .4s;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 1.5rem;
}
.faq-answer p {
    color: var(--color-text-light);
    font-size: .95rem;
    line-height: var(--line-height-relaxed);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    position: relative;
    text-align: center;
    padding: 6rem 1.5rem;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 165, 51, .06) 0%, transparent 40%, rgba(212, 165, 51, .04) 100%);
    pointer-events: none;
}
.cta-section h2 {
    font-size: clamp(1.8rem, 2.5vw + .8rem, 2.8rem);
    color: var(--color-text);
    margin-bottom: 1rem;
    position: relative;
}
.cta-section p {
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: var(--line-height-relaxed);
    font-size: 1.05rem;
    position: relative;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}
.cta-note {
    font-size: .82rem;
    color: var(--color-text-light);
    opacity: .7;
    letter-spacing: .01em;
}
.cta-section .btn-cta { position: relative; }

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--color-footer-bg);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--color-footer-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}
.footer-brand img {
    height: 68px;
    width: auto;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: .88rem;
    color: var(--color-footer-text);
    line-height: 1.65;
    max-width: 300px;
}
.footer h4 {
    font-size: .82rem;
    color: var(--color-footer-heading);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: var(--font-weight-bold);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .7rem; }
.footer-links a {
    font-size: .86rem;
    color: var(--color-footer-text);
    transition: color .25s, padding-left .25s;
}
.footer-links a:hover {
    color: var(--color-accent);
    padding-left: .3rem;
}
.footer-bottom {
    border-top: 1px solid var(--color-footer-border);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: .8rem;
    color: var(--color-footer-text);
}
.footer-seo {
    font-size: .72rem;
    color: rgba(176, 168, 158, .3);
    /* Footer always dark - keep hardcoded */
    max-width: 700px;
    line-height: 1.6;
    margin-top: 1.75rem;
}

@media (max-width: 860px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ================================
   MOBILE SMALL (< 400px)
   ================================ */
/* ================================
   MOBILE MEDIUM (< 600px)
   ================================ */
@media (max-width: 600px) {
    .section { padding: 3.5rem 0; }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: 1.4rem; }
    .section-header p { font-size: .9rem; }
    .hero { padding: 6rem 0 3rem; min-height: 85vh; }
    .hero h1 { font-size: 1.8rem; }
    .hero-sub { font-size: .95rem; margin-bottom: 1.5rem; }
    .hero-buttons { flex-direction: column; gap: .75rem; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-trust { gap: .75rem 1.25rem; }
    .hero-badge { font-size: .75rem; }
    .page-hero { padding: 6.5rem 0 2.5rem; }
    .page-hero h1 { font-size: 1.5rem; }
    .page-hero p { font-size: .9rem; }
    .cards-grid { gap: 1rem; }
    .card { padding: 1.25rem; }
    .card-img .card-body { padding: 1rem; }
    .card-img .card-body h3 { font-size: 1rem; }
    .card-img .card-body p { font-size: .85rem; }
    .features-grid { gap: 1rem; }
    .feature-card-body { padding: 1rem; }
    .feature-card-body h4 { font-size: .88rem; }
    .feature-card-body p { font-size: .78rem; }
    .events-grid { gap: 1rem; }
    .event-card { padding: 1.25rem; aspect-ratio: 3/2; }
    .event-card h3 { font-size: 1rem; }
    .formules-grid { gap: 1rem; }
    .formule-card { padding: 1.5rem 1.25rem; }
    .formule-name { font-size: 1rem; }
    .formule-price { font-size: var(--text-lg); }
    .formule-desc { font-size: .85rem; }
    .formule-list li { font-size: .82rem; padding: .35rem 0; }
    .why-grid { gap: 1rem; }
    .why-item { padding: .75rem; }
    .why-item h3 { font-size: .95rem; }
    .why-item p { font-size: .82rem; }
    .why-item-img { width: calc(100% + 1.5rem); margin: -.75rem -.75rem .75rem; }
    .why-item-icon { width: 56px; height: 56px; font-size: 1.4rem; margin-bottom: 1rem; }
    .zone-grid { gap: 1rem; }
    .zone-card { padding: 1.5rem 1rem; }
    .zone-card h3 { font-size: 1rem; }
    .zone-card p { font-size: .82rem; }
    .steps-grid { gap: 1rem; }
    .step-item { padding: 1.25rem .75rem; }
    .step-number { width: 50px; height: 50px; font-size: 1rem; margin-bottom: 1rem; }
    .trends-grid { gap: 1rem; }
    .trend-visual { height: 140px; }
    .trend-body { padding: 1.25rem; }
    .trend-body h3 { font-size: 1rem; }
    .trend-body p { font-size: .82rem; }
    .stats-band { gap: 1.5rem 2.5rem; padding: 2rem 0; }
    .stat-number { font-size: var(--text-xl); }
    .stat-label { font-size: .78rem; }
    .faq-question { font-size: .88rem; padding: 1rem 0; gap: 1rem; }
    .faq-answer p { font-size: .88rem; }
    .cta-section { padding: 3rem 1rem; }
    .cta-section h2 { font-size: 1.3rem; }
    .cta-section p { font-size: .9rem; margin-bottom: 1.5rem; }
    .contact-grid { gap: 1rem; }
    .contact-info-card { padding: 1rem; border-radius: 12px; }
    .contact-info-item { gap: .6rem; margin-bottom: .85rem; }
    .contact-info-item i { width: 36px; height: 36px; font-size: 1rem; border-radius: 8px; }
    .contact-info-item h4 { font-size: .82rem; }
    .contact-info-item p { font-size: .78rem; line-height: 1.4; }
    .form-title { font-size: 1rem; }
    .form-subtitle { font-size: .82rem; margin-bottom: 1rem; }
    .form-row { grid-template-columns: 1fr; gap: .6rem; }
    .contact-form { gap: .6rem; }
    .form-group label { font-size: .75rem; }
    .form-group input, .form-group select, .form-group textarea { padding: .6rem .75rem; font-size: .82rem; }
    .content-block h3 { font-size: .95rem; margin: 1.25rem 0 .6rem; }
    .menu-item { padding: .85rem 1rem; }
    .menu-item span { font-size: .88rem; }
    .tags-wrap { gap: .5rem; }
    .tag { padding: .35rem .85rem; font-size: .78rem; }
    .planche-block { padding: 1.25rem; }
    .planche-block h3 { font-size: 1rem; }
    .planche-block p { font-size: .85rem; }
    .content-block p { font-size: .9rem; margin-bottom: 1rem; }
    .content-block h3 { font-size: 1.05rem; margin: 1.75rem 0 .75rem; }
    .breadcrumb { font-size: .75rem; margin-bottom: 1rem; }
    .btn-lg { padding: .85rem 1.5rem; font-size: .88rem; }
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-grid { gap: 1.5rem; margin-bottom: 2rem; }
    .footer-brand p { font-size: .82rem; }
    .footer h4 { font-size: .78rem; margin-bottom: .75rem; }
    .footer-links a { font-size: .82rem; }
    .footer-seo { font-size: .68rem; }
    .usp-band::before,
    .usp-band::after { width: 30px; }
    .patisserie-grid { gap: .75rem; }
    .patisserie-item { padding: 1.25rem .75rem; }
    .patisserie-item i { font-size: 1.8rem; }
    .patisserie-item h4 { font-size: .88rem; }
    .patisserie-item p { font-size: .75rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { padding: .65rem .85rem; font-size: .85rem; }
}

/* ================================
   MOBILE SMALL (< 400px)
   ================================ */
@media (max-width: 400px) {
    .container { padding: 0 .85rem; }
    .section { padding: 2.5rem 0; }
    .hero { padding: 5.5rem 0 2.5rem; }
    .hero h1 { font-size: 1.5rem; }
    .page-hero { padding: 6rem 0 2rem; }
    .page-hero h1 { font-size: 1.35rem; }
    .section-header { margin-bottom: 1.5rem; }
    .section-header h2 { font-size: 1.25rem; }
    .card { padding: 1rem; }
    .card-img .card-body { padding: .85rem; }
    .feature-card-body { padding: .85rem; }
    .formule-card { padding: 1.25rem 1rem; }
    .why-item { padding: .6rem; }
    .why-item-img { width: calc(100% + 1.2rem); margin: -.6rem -.6rem .6rem; }
    .zone-card { padding: 1.25rem .85rem; }
    .contact-info-card { padding: .85rem; border-radius: 10px; }
    .contact-info-item { gap: .5rem; margin-bottom: .7rem; }
    .contact-info-item i { width: 32px; height: 32px; font-size: .9rem; border-radius: 8px; }
    .contact-info-item h4 { font-size: .78rem; }
    .contact-info-item p { font-size: .75rem; }
    .cta-section { padding: 2.5rem .85rem; }
    .footer { padding: 2rem 0 1rem; }
}

/* ================================
   USP BAND - MARQUEE INFINITE
   ================================ */
.usp-band {
    background: var(--color-accent);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}
.usp-band::before,
.usp-band::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.usp-band::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-accent), transparent);
}
.usp-band::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-accent), transparent);
}
.marquee {
    width: 100%;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}
.usp-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--color-usp-text);
    font-weight: var(--font-weight-bold);
    font-size: .88rem;
    letter-spacing: .01em;
    white-space: nowrap;
    flex-shrink: 0;
}
.usp-item i { font-size: 1.3rem; }
.usp-item-sep {
    color: var(--color-usp-sep);
    font-size: 1.2rem;
    flex-shrink: 0;
    user-select: none;
}

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

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* ================================
   HERO ANIMATIONS
   ================================ */

/* --- Staggered entrance --- */
.hero-anim {
    opacity: 0;
    transform: translateY(40px);
    animation: hero-fade-up .9s cubic-bezier(.16, 1, .3, 1) forwards;
}
.hero-anim[data-anim-delay="0"] { animation-delay: .15s; }
.hero-anim[data-anim-delay="1"] { animation-delay: .35s; }
.hero-anim[data-anim-delay="2"] { animation-delay: .55s; }
.hero-anim[data-anim-delay="3"] { animation-delay: .75s; }
.hero-anim[data-anim-delay="4"] { animation-delay: .95s; }

@keyframes hero-fade-up {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Hero badge pulse dot --- */
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    display: inline-block;
    animation: badge-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(212, 165, 51, .5);
}
@keyframes badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.7); }
}

/* --- Hero accent shimmer --- */
.hero h1 .accent {
    position: relative;
    background: linear-gradient(90deg, var(--color-accent), #f0c95a, var(--color-accent));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 4s ease-in-out infinite;
}
@keyframes shimmer-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* --- Hero visual float --- */
.hero-visual-inner img {
    animation: hero-float 5s ease-in-out infinite;
}
@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* --- Hero glow ring --- */
.hero-glow-ring {
    position: absolute;
    inset: -5%;
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 51, .12);
    animation: glow-ring-rotate 12s linear infinite;
}
.hero-glow-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 20px;
    height: 4px;
    border-radius: 4px;
    background: var(--color-accent);
    box-shadow: 0 0 16px rgba(212, 165, 51, .6);
    transform: translateX(-50%);
}
@keyframes glow-ring-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Floating particles --- */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-particle);
    animation: particle-float linear infinite;
}
.particle-1 {
    width: 6px; height: 6px;
    top: 20%; left: 15%;
    animation-duration: 8s;
    animation-delay: 0s;
}
.particle-2 {
    width: 4px; height: 4px;
    top: 60%; left: 80%;
    animation-duration: 10s;
    animation-delay: 1s;
}
.particle-3 {
    width: 8px; height: 8px;
    top: 75%; left: 25%;
    animation-duration: 12s;
    animation-delay: 2s;
    background: var(--color-particle-soft);
}
.particle-4 {
    width: 5px; height: 5px;
    top: 30%; left: 70%;
    animation-duration: 9s;
    animation-delay: .5s;
}
.particle-5 {
    width: 3px; height: 3px;
    top: 45%; left: 50%;
    animation-duration: 11s;
    animation-delay: 3s;
    background: var(--color-particle);
}
@keyframes particle-float {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(-60px) translateX(30px) scale(1.3); }
    90% { opacity: 1; }
    100% { transform: translateY(-120px) translateX(-20px) scale(.8); opacity: 0; }
}

/* --- Button glow pulse --- */
.btn-glow {
    position: relative;
    overflow: hidden;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,.2), transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    animation: btn-glow-pulse 3s ease-in-out infinite;
}
@keyframes btn-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* ================================
   SCROLL REVEAL ANIMATIONS
   ================================ */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Variantes directionnelles --- */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(.85);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Stagger delays for grids --- */
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

/* --- Card hover micro-interactions --- */
.card:hover .card-icon {
    transform: scale(1.1) rotate(-3deg);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.card-icon {
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.card:hover .card-link {
    gap: .8rem;
}

/* --- Section title underline animation --- */
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: .75rem auto 0;
    background: linear-gradient(90deg, var(--color-accent), rgba(212, 165, 51, .3));
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .6s cubic-bezier(.16, 1, .3, 1) .3s;
}
.reveal.visible h2::after,
.section-header.visible h2::after {
    transform: scaleX(1);
}

/* --- Why items icon hover --- */
.why-item:hover .why-item-icon {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(212, 165, 51, .15);
    border-color: rgba(212, 165, 51, .25);
}
.why-item-icon {
    transition: transform .35s, box-shadow .35s, border-color .35s;
}

/* --- Step number hover --- */
.step-number {
    transition: transform .35s, box-shadow .35s;
}
.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 165, 51, .2);
}

/* --- Zone card shimmer on hover --- */
.zone-card {
    position: relative;
    overflow: hidden;
}
.zone-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 51, .06), transparent);
    transition: none;
}
.zone-card:hover::after {
    animation: card-shimmer .6s ease forwards;
}
@keyframes card-shimmer {
    0% { left: -100%; }
    100% { left: 150%; }
}

/* --- Formule card glow on hover --- */
.formule-card.featured {
    animation: featured-glow 3s ease-in-out infinite;
}
@keyframes featured-glow {
    0%, 100% { box-shadow: 0 0 0 1px rgba(212, 165, 51, .15), 0 8px 32px rgba(212, 165, 51, .06); }
    50% { box-shadow: 0 0 0 1px rgba(212, 165, 51, .3), 0 8px 40px rgba(212, 165, 51, .12); }
}

/* --- FAQ answer smooth --- */
.faq-item {
    transition: background .3s;
}
.faq-item.open {
    background: var(--color-faq-open-bg);
    border-radius: 12px;
    padding: 0 1rem;
    margin: 0 -1rem;
}

/* --- Trust items fade in one by one --- */
.hero-trust .trust-item {
    opacity: 0;
    animation: trust-pop .5s cubic-bezier(.16, 1, .3, 1) forwards;
}
.hero-trust .trust-item:nth-child(1) { animation-delay: 1.1s; }
.hero-trust .trust-item:nth-child(2) { animation-delay: 1.25s; }
.hero-trust .trust-item:nth-child(3) { animation-delay: 1.4s; }
.hero-trust .trust-item:nth-child(4) { animation-delay: 1.55s; }
@keyframes trust-pop {
    0% { opacity: 0; transform: translateY(12px) scale(.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Patisserie item rotate icon on hover --- */
.patisserie-item:hover i {
    transform: rotate(-10deg) scale(1.15);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.patisserie-item i {
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

/* --- Tag hover scale --- */
.tag {
    transition: background .25s, transform .25s, box-shadow .25s;
}
.tag:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 16px rgba(212, 165, 51, .12);
}

/* --- Event card icon spin on hover --- */
.event-card:hover .event-card-icon {
    transform: rotate(8deg) scale(1.08);
}
.event-card-icon {
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

@media (prefers-reduced-motion: reduce) {
    .hero-anim { opacity: 1; transform: none; animation: none; }
    .hero-visual-inner img { animation: none; }
    .hero-glow-ring { animation: none; }
    .particle { animation: none; display: none; }
    .hero-badge-dot { animation: none; }
    .hero h1 .accent {
        background: none;
        -webkit-text-fill-color: var(--color-accent);
        animation: none;
    }
    .btn-glow::after { animation: none; display: none; }
    .hero-trust .trust-item { opacity: 1; animation: none; }
    .formule-card.featured { animation: none; }
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1; transform: none; transition: none;
    }
    .card, .event-card, .trend-card, .formule-card, .btn, .btn-cta,
    .patisserie-item, .zone-card, .why-item, .menu-item, .tag,
    .card-icon, .why-item-icon, .step-number, .event-card-icon,
    .patisserie-item i { transition: none; }
}

/* ================================
   CONTENT SECTIONS
   ================================ */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}
.content-block p {
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.content-block h3 {
    color: var(--color-text);
    font-size: var(--text-lg);
    margin: 2.5rem 0 1rem;
}

/* --- Planche block --- */
.planche-block {
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 165, 51, .06), rgba(212, 165, 51, .02));
    border: 1px solid rgba(212, 165, 51, .1);
    text-align: center;
    margin: 2rem 0;
}
.planche-block h3 {
    color: var(--color-accent);
    font-size: var(--text-lg);
    margin-bottom: .75rem;
}
.planche-block p {
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Contact form area --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-card {
    padding: 2.5rem;
    border-radius: 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 165, 51, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 51, .08);
}
.contact-info-item h4 {
    font-size: .95rem;
    color: var(--color-text);
    margin-bottom: .3rem;
}
.contact-info-item p {
    font-size: .9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
    .contact-info-card { padding: 1.25rem; border-radius: 12px; }
    .contact-info-item { gap: .75rem; margin-bottom: 1rem; }
    .contact-info-item i { width: 40px; height: 40px; font-size: 1.1rem; }
    .contact-info-item h4 { font-size: .88rem; }
    .contact-info-item p { font-size: .82rem; }
    .form-title { font-size: 1rem; }
    .form-subtitle { font-size: .85rem; margin-bottom: 1rem; }
    .form-row { grid-template-columns: 1fr; gap: .75rem; }
    .contact-form { gap: .75rem; }
    .form-group input, .form-group select, .form-group textarea { padding: .65rem .85rem; font-size: .85rem; }
}

/* --- Contact form --- */
.form-title {
    font-size: 1.15rem;
    color: var(--color-accent);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.form-subtitle {
    font-size: .9rem;
    color: var(--color-text-light);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.form-group label {
    font-size: .82rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-light);
    letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--color-input-border);
    background: var(--color-input-bg);
    color: var(--color-text);
    font-family: var(--font-secondary);
    font-size: .9rem;
    transition: border-color .25s, background .25s, box-shadow .25s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-input-placeholder);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(212, 165, 51, .4);
    background: rgba(212, 165, 51, .04);
    box-shadow: 0 0 0 3px rgba(212, 165, 51, .08);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b0a89e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-group select option {
    background: var(--color-select-option-bg);
    color: var(--color-text);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-note {
    font-size: .78rem;
    color: var(--color-text-light);
    opacity: .6;
    text-align: center;
    margin-top: .25rem;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 400px) {
    .form-row { grid-template-columns: 1fr; }
}

/* --- Breadcrumb --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    position: relative;
    justify-content: center;
}
.breadcrumb a {
    color: var(--color-text-light);
    transition: color .2s;
}
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .sep { color: var(--color-input-placeholder); }
.breadcrumb .current { color: var(--color-accent); }

/* --- Tarte au citron override --- */
span#tarteaucitronDisclaimerAlert {
    overflow: auto;
}

/* ================================
   THEME TOGGLE
   ================================ */
.theme-toggle {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: .5rem;
    cursor: pointer;
    color: var(--color-text);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background .25s, color .25s, border-color .25s;
}
.theme-toggle:hover {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    border-color: var(--color-accent);
}
/* Show sun in light, moon in dark */
.theme-toggle .ri-moon-line { display: none; }
[data-theme="dark"] .theme-toggle .ri-sun-line { display: none; }
[data-theme="dark"] .theme-toggle .ri-moon-line { display: inline-block; }

/* ================================
   LIGHTBOX / MODAL GALLERY
   ================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.lightbox.open {
    display: flex;
    opacity: 1;
}
.lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    animation: lightbox-zoom-in .3s cubic-bezier(.16, 1, .3, 1);
}
@keyframes lightbox-zoom-in {
    0% { transform: scale(.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background .25s, transform .25s;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, .2);
    transform: scale(1.1);
}
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background .25s, transform .25s;
}
.lightbox-arrow:hover {
    background: rgba(212, 165, 51, .3);
    border-color: rgba(212, 165, 51, .4);
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    font-family: var(--font-secondary);
    background: rgba(0, 0, 0, .4);
    padding: .4rem 1rem;
    border-radius: 50px;
    z-index: 10;
}
.lightbox-caption {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    font-family: var(--font-secondary);
    text-align: center;
    max-width: 80%;
    z-index: 10;
}

/* Make image cards look clickable */
.feature-card-img,
.card-img-wrap,
.why-item-img {
    cursor: zoom-in;
}

@media (max-width: 600px) {
    .lightbox-img-wrap img {
        max-width: 95vw;
        max-height: 75vh;
        border-radius: 8px;
    }
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: .5rem; }
    .lightbox-next { right: .5rem; }
    .lightbox-close {
        top: .75rem;
        right: .75rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lightbox-img-wrap img { animation: none; }
    .lightbox { transition: none; }
}
