/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --brown-dark: #2A1A0E;
    --brown: #3B2314;
    --brown-mid: #5C3A1E;
    --brown-light: #8B6F55;
    --orange: #E8870E;
    --orange-light: #F4A83D;
    --cream: #FAF6F1;
    --white: #FFFFFF;
    --text: #2A1A0E;
    --text-light: #BFA68A;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===================== SKIP LINK (a11y) ===================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    background: var(--orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ===================== NAVIGATION ===================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(42, 26, 14, 0.95);
    backdrop-filter: blur(10px);
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar__logo img {
    height: 55px;
    width: auto;
}

.navbar__links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar__links a {
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.navbar__links a:hover { color: var(--orange); }
.navbar__links a:hover::after { width: 100%; }

.navbar__cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600 !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.navbar__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 135, 14, 0.4);
}

.navbar__cta::after { display: none !important; }

/* Burger menu mobile */
.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.navbar__burger span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: transform 0.3s, opacity 0.3s;
}

.navbar__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Navbar back link (mentions legales) */
.navbar__back {
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__back:hover { color: var(--orange); }

.navbar__back svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(42, 26, 14, 0.7), rgba(42, 26, 14, 0.8)), url('../img/hero-franchyz-burgers.webp') center/cover no-repeat fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid rgba(232, 135, 14, 0.15);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(232, 135, 14, 0.1);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero__logo {
    width: 220px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease;
}

.hero__tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero__tagline span {
    color: var(--orange);
    font-family: 'Dancing Script', cursive;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 135, 14, 0.35);
}

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

.btn--outline:hover {
    background: var(--white);
    color: var(--brown);
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero__scroll svg {
    width: 28px;
    height: 28px;
    stroke: var(--orange);
}

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

/* ===================== SECTION STYLES ===================== */
.section {
    padding: 100px 0;
}

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

.section--brown {
    background: linear-gradient(rgba(59, 35, 20, 0.85), rgba(42, 26, 14, 0.9)), url('../img/franchyz-carte-produits.webp') center/cover no-repeat fixed;
    color: var(--cream);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.section__divider {
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 20px auto 0;
    border-radius: 3px;
}

/* ===================== LA CARTE ===================== */
.carte__categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.carte__tab {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid var(--brown-light);
    background: transparent;
    color: var(--brown);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.carte__tab:hover,
.carte__tab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.carte__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.carte__item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(42, 26, 14, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: none;
}

.carte__item.visible {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.carte__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(42, 26, 14, 0.15);
}

.carte__img {
    height: 200px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carte__img img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

.carte__item:hover .carte__img img {
    transform: scale(1.1);
}

.carte__img-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carte__body {
    padding: 24px;
}

.carte__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.carte__desc {
    font-size: 0.9rem;
    color: var(--brown-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.carte__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.carte__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}

.carte__price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--brown-light);
    display: block;
}

.carte__menu-info {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(42, 26, 14, 0.08);
    max-width: 700px;
    margin: 0 auto 40px;
}

.carte__menu-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.carte__menu-info p {
    color: var(--brown-light);
    font-size: 0.95rem;
}

.carte__menu-info .price-highlight {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.1rem;
}

.carte__cta {
    text-align: center;
}

/* ===================== CONCEPT ===================== */
.concept__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.concept__visual {
    position: relative;
}

.concept__visual-circle {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brown-mid), var(--brown));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.concept__visual-circle::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    opacity: 0.4;
}

.concept__visual-circle img {
    width: 65%;
}

.concept__text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.concept__text h2 span {
    color: var(--orange);
}

.concept__text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.85;
}

.concept__pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.concept__pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.concept__pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232, 135, 14, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
}

.concept__pillar-icon svg {
    stroke: var(--orange);
}

.section--dark .concept__pillar-icon {
    background: rgba(232, 135, 14, 0.2);
}

.concept__pillar h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.concept__pillar p {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* ===================== FRANCHISE ===================== */
.franchise__img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.franchise__img img {
    width: 100%;
    display: block;
}

.franchise__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.franchise__content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.85;
}

.franchise__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.franchise__feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 135, 14, 0.15);
    transition: transform 0.3s, border-color 0.3s;
}

.franchise__feature:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
}

.franchise__feature-icon {
    margin-bottom: 16px;
}

.franchise__feature-icon svg {
    stroke: var(--orange);
}

.franchise__feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.franchise__feature p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.franchise__cta-box {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 20px;
    padding: 50px 40px;
    margin-top: 50px;
}

.franchise__cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
}

.franchise__cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.btn--white {
    background: var(--white);
    color: var(--brown);
}

.btn--white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ===================== HISTOIRE ===================== */
.histoire__timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.histoire__timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--brown-light));
}

.histoire__step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.histoire__step:last-child { margin-bottom: 0; }

.histoire__dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    z-index: 1;
}

.histoire__step-content {
    padding-top: 10px;
}

.histoire__step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--brown);
}

.histoire__step-content p {
    font-size: 0.95rem;
    color: var(--brown-light);
    line-height: 1.7;
}

/* ===================== GLACE ===================== */
.glace__preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glace__visual {
    text-align: center;
}

.glace__steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.glace__step {
    text-align: center;
}

.glace__step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 8px;
}

.glace__step span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cream);
}

.glace__text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--cream);
    margin-bottom: 20px;
}

.glace__text h2 span {
    color: var(--orange);
    font-family: 'Dancing Script', cursive;
}

.glace__text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.glace__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 135, 14, 0.15);
    border: 1px solid rgba(232, 135, 14, 0.3);
    padding: 12px 24px;
    border-radius: 12px;
    color: var(--orange-light);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer__brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 300px;
}

.footer h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--orange);
}

.footer__links a {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer__links a:hover { color: var(--orange); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--brown-light);
}

.footer__bottom a {
    color: var(--orange);
    transition: opacity 0.3s;
}

.footer__bottom a:hover {
    opacity: 0.8;
}

/* ===================== CONTACT ===================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.contact__block {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(42, 26, 14, 0.08);
    transition: transform 0.3s;
}

.contact__block:hover {
    transform: translateY(-4px);
}

.contact__block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--brown);
}

.contact__block h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--orange);
    margin-top: 10px;
}

.contact__line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--brown-light);
}

.contact__line svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
    flex-shrink: 0;
}

.contact__line a {
    color: var(--brown-light);
    transition: color 0.3s;
}

.contact__line a:hover {
    color: var(--orange);
}

.contact__horaires-table {
    width: 100%;
    font-size: 0.9rem;
    color: var(--brown-light);
}

.contact__horaires-table tr td {
    padding: 6px 0;
}

.contact__horaires-table tr td:first-child {
    font-weight: 600;
    color: var(--brown);
}

.contact__horaires-table tr td:last-child {
    text-align: right;
}

.contact__social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact__social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(232, 135, 14, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.contact__social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.contact__social a svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    transition: stroke 0.3s;
}

.contact__social a:hover svg {
    stroke: var(--white);
}

/* ===================== BURGER ANIMATION ===================== */
.burger-anim {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 50%, var(--brown-mid) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.burger-anim__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.burger-anim__stack {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -10px;
    width: 300px;
}

.burger-anim__layer {
    opacity: 0;
    transform: translateY(-60px);
    width: 100%;
    margin-top: -20px;
}

.burger-anim__layer:first-child {
    margin-top: 0;
}

.burger-anim__layer img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.35));
}

@keyframes dropLayer {
    0%   { opacity: 0; transform: translateY(-80px) scale(0.95); }
    60%  { opacity: 1; transform: translateY(6px) scale(1); }
    80%  { transform: translateY(-3px) scale(1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.burger-anim.animate .burger-anim__layer[data-layer="1"] {
    animation: dropLayer 0.65s ease-out 0.1s forwards;
}
.burger-anim.animate .burger-anim__layer[data-layer="2"] {
    animation: dropLayer 0.6s ease-out 0.45s forwards;
}
.burger-anim.animate .burger-anim__layer[data-layer="3"] {
    animation: dropLayer 0.6s ease-out 0.8s forwards;
}
.burger-anim.animate .burger-anim__layer[data-layer="4"] {
    animation: dropLayer 0.65s ease-out 1.15s forwards;
}
.burger-anim.animate .burger-anim__layer[data-layer="5"] {
    animation: dropLayer 0.7s ease-out 1.5s forwards;
}

.burger-anim__text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.burger-anim.animate .burger-anim__text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2s;
}

.burger-anim__text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 12px;
}

.burger-anim__text h2 span {
    color: var(--orange);
    font-family: 'Dancing Script', cursive;
}

.burger-anim__text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 350px;
}

.burger-anim__text .btn {
    margin-top: 24px;
}

/* ===================== PULSE CTA ===================== */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(232, 135, 14, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(232, 135, 14, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 135, 14, 0); }
}

.navbar__cta {
    animation: pulse 2.5s infinite;
}

.hero__buttons .btn--primary {
    animation: pulse 2.5s infinite 1s;
}

/* ===================== STAGGERED CARDS ===================== */
.carte__item.visible {
    animation: fadeIn 0.5s ease both;
}

.carte__item.visible:nth-child(1) { animation-delay: 0s; }
.carte__item.visible:nth-child(2) { animation-delay: 0.1s; }
.carte__item.visible:nth-child(3) { animation-delay: 0.2s; }
.carte__item.visible:nth-child(4) { animation-delay: 0.3s; }
.carte__item.visible:nth-child(5) { animation-delay: 0.4s; }
.carte__item.visible:nth-child(6) { animation-delay: 0.5s; }
.carte__item.visible:nth-child(7) { animation-delay: 0.6s; }
.carte__item.visible:nth-child(8) { animation-delay: 0.7s; }
.carte__item.visible:nth-child(9) { animation-delay: 0.8s; }
.carte__item.visible:nth-child(10) { animation-delay: 0.9s; }

/* ===================== TIMELINE DOTS ===================== */
.histoire__dot {
    transition: background 0.4s, color 0.4s, transform 0.4s;
}

.histoire__step.reveal.visible .histoire__dot {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: scale(1.1);
}

/* ===================== ANIMATIONS ON SCROLL ===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== PAGE HEADER (mentions legales) ===================== */
.page-header {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 50%, var(--brown-mid) 100%);
    padding: 140px 24px 60px;
    text-align: center;
    color: var(--cream);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.legal {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.legal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--brown);
    margin: 40px 0 16px;
}

.legal h2:first-child {
    margin-top: 0;
}

.legal h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--orange);
    margin-top: 8px;
}

.legal p {
    font-size: 0.95rem;
    color: var(--brown-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal strong {
    color: var(--brown);
}

.legal a {
    color: var(--orange);
    transition: opacity 0.3s;
}

.legal a:hover {
    opacity: 0.7;
}

.legal .placeholder {
    background: rgba(232, 135, 14, 0.08);
    border-left: 3px solid var(--orange);
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    color: var(--brown-mid);
    font-size: 0.9rem;
    font-style: italic;
    margin: 12px 0;
}

/* Footer simple (mentions legales) */
.footer--simple {
    padding: 30px 0;
    text-align: center;
}

.footer--simple p {
    font-size: 0.8rem;
    color: var(--brown-light);
}

.footer--simple a {
    color: var(--orange);
    transition: opacity 0.3s;
}

.footer--simple a:hover { opacity: 0.8; }

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--brown-dark);
    border-top: 2px solid var(--orange);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--cream);
    line-height: 1.5;
}

.cookie-banner__text a {
    color: var(--orange);
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.cookie-banner__btn--accept {
    background: var(--orange);
    color: var(--white);
}

.cookie-banner__btn--accept:hover {
    background: var(--orange-light);
}

.cookie-banner__btn--refuse {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--brown-light);
}

.cookie-banner__btn--refuse:hover {
    border-color: var(--cream);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .contact__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .concept__grid,
    .glace__preview {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .concept__visual { max-width: 350px; margin: 0 auto; }

    .franchise__features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto;
    }
}

@media (max-width: 768px) {
    .navbar__links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(42, 26, 14, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
    }

    .navbar__links.open { transform: translateY(0); }
    .navbar__burger { display: flex; }

    .section { padding: 70px 0; }

    .carte__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 50px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .histoire__timeline::before { left: 29px; }

    .glace__preview { text-align: center; }

    .hero,
    .section--brown {
        background-attachment: scroll;
    }

    .hero__logo { width: 160px; }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .franchise__cta-box {
        padding: 30px 20px;
    }

    .franchise__cta-box h3 {
        font-size: 1.4rem;
    }

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

    .histoire__step {
        gap: 20px;
    }

    .histoire__dot {
        width: 50px;
        height: 50px;
        font-size: 0.85rem;
    }

    .glace__steps {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Burger animation responsive */
    .burger-anim { padding: 60px 0; }
    .burger-anim__wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .burger-anim__stack { width: 240px; }
    .burger-anim__text { text-align: center; }
    .burger-anim__text p { margin: 0 auto; }

    /* Mentions legales responsive */
    .page-header { padding: 120px 16px 40px; }
    .legal { padding: 40px 16px 60px; }
    .legal h2 { font-size: 1.2rem; }
    .navbar__back span { display: none; }

    /* Cookie banner responsive */
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 50px 0; }

    .navbar .container { height: 60px; }
    .navbar__logo img { height: 45px; }
    .navbar__links { top: 60px; }

    .hero__logo { width: 130px; }

    .carte__grid {
        max-width: 100%;
    }

    .carte__categories {
        gap: 8px;
    }

    .carte__tab {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    .carte__img { height: 160px; }

    .franchise__features { gap: 16px; }
    .franchise__feature { padding: 20px 16px; }

    /* Burger animation responsive */
    .burger-anim { padding: 40px 0; }
    .burger-anim__stack { width: 200px; }
    .burger-anim__layer { margin-top: -15px; }

    /* Mentions legales responsive */
    .page-header { padding: 100px 16px 30px; }
    .page-header h1 { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
    .burger-anim__layer { opacity: 1 !important; transform: none !important; }
    .burger-anim__text { opacity: 1 !important; transform: none !important; }
}
