/* 
   REFINED STRICT RECONSTRUCTION - CHEZ EUGÉNIE
   Refined Design System & Visual Rhythm
*/

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Nunito:wght@300;400;600;700&display=swap');

/* FONT FALLBACK FOR LE PETIT COCHON */
@font-face {
    font-family: 'Le Petit Cochon';
    src: local('Georgia'), local('serif');
}

:root {
    --brown: #5e1206;
    --cream: #F6F1EA;
    --rose: #F1D6CE;
    --green: #7F8330;
    --sand: #D1C791;
    --sand-light: #f1efdf;

    --font-titles: 'Le Petit Cochon', Georgia, serif;
    --font-accroches: 'Caveat', cursive;
    --font-body: 'Nunito', sans-serif;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

}

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

html {
    scroll-behavior: smooth;

}

body {
    background-color: var(--cream);
    color: var(--brown);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.narrow-container {
    max-width: 800px;
}

.section {
    padding: 120px 0;
}

.bg-cream {
    background-color: var(--cream);
}

h1,
h2,
h3 {
    font-family: var(--font-titles);
    line-height: 1.2;
}

.accent-font {
    font-family: var(--font-accroches);
}

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(246, 241, 234, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(94, 18, 6, 0.05);

}

.logo-image {
    height: 48px;
    /* ajuste à ton goût */
    width: auto;
    display: block;
}

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

.logo {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--brown);
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--brown);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--green);
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: url('img/hero.jpg') center/cover no-repeat;
    filter: blur(4px) brightness(0.6);
    /* Added blur and slight darkening */
    animation: zoomSlow 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Increased overlay opacity */
}

.hero-content {
    color: white;
    animation: fadeInDown 1.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Force the logo to be white for the hero background */
}

.hero h1 {
    font-size: 6rem;
    margin-bottom: 5px;
    color: white;
}

.hero-motto {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--rose);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    display: inline-block;
}

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

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(94, 18, 6, 0.2);
}

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

.btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* KPI BANDEAU */
.kpi-band {
    background-color: transparent;
    padding: 60px 0;
    border-top: 1px solid rgba(94, 18, 6, 0.05);
    border-bottom: 1px solid rgba(94, 18, 6, 0.05);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.kpi-item {
    text-align: center;
    border-right: 1px solid rgba(94, 18, 6, 0.1);
}

.kpi-item:last-child {
    border-right: none;
}

.kpi-icon {
    color: var(--green);
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.kpi-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5px;
}

.kpi-item p {
    font-weight: 600;
    font-size: 0.95rem;
}

/* MENU & FORMULAS */
.small-header {
    margin-bottom: 80px;
    text-align: left;
}

.small-header h2 {
    font-size: 2rem;
    opacity: 0.6;
    margin-bottom: 5px;
}

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

.formula-slate {
    background: var(--sand);
    padding: 50px 60px;
    border-radius: 20px 60px 20px 50px;
    /* Irregular */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.formula-main-content {
    width: 100%;
}

.formula-slate h3 {
    font-size: 2.22rem;
    margin-bottom: 30px;
    color: var(--brown);
    text-align: center;
    font-family: var(--font-titles);
}

.option-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(94, 18, 6, 0.1);
}

.option-list li:last-child {
    border-bottom: none;
}

.option-info {
    text-align: left;
    flex: 1;
}

.option-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--brown);
}

.option-name span {
    font-family: var(--font-accroches);
    font-size: 1.3rem;
    color: var(--green);
    margin: 0 5px;
}

.option-details {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.4;
}

.option-price {
    font-family: var(--font-titles);
    font-size: 1.4rem;
    color: var(--brown);
    white-space: nowrap;
}

.featured-formula {
    background: var(--sand-light);
    border: 2px solid var(--green);
    z-index: 1;
}

.featured-formula .option-name {
    color: var(--brown);
}

.menu-categories {
    font-family: var(--font-body);
    font-size: 1.1rem;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.menu-categories p {
    white-space: nowrap;
}

/* INTERSECTION DIVIDER */
.intersection-divider {
    height: 80px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 40px 0;
}

.divider-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.divider-content p {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.divider-social {
    display: flex;
    gap: 20px;
    color: var(--brown);
}

.divider-social a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.divider-social svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5px;
}

.divider-social a:hover {
    transform: translateY(-5px);
    color: var(--green);
}

.pt-0 {
    padding-top: 0 !important;
}

/* LA CARTE */
.carte-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.carte-category {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(94, 18, 6, 0.05);
}

.carte-category h3 {
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carte-category h3 svg {
    width: 20px;
    height: 20px;
}

.carte-category h4 {
    margin: 25px 0 10px;
    font-family: var(--font-titles);
    color: var(--green);
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(127, 131, 48, 0.1);
    padding-bottom: 5px;
}

.carte-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carte-items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.05rem;
    color: var(--brown);
    position: relative;
}

.carte-items li span:first-child {
    font-weight: 600;
}

.price-wrapper {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
}

.sticker-badge {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 35px;
    height: 35px;
    pointer-events: none;
    z-index: 2;
    transition: var(--transition);
}

.sticker-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.carte-items li:hover .sticker-badge img {
    transform: rotate(15deg) scale(1.1);
}

.option-price {
    font-family: var(--font-titles);
    font-size: 1.2rem;
}

.more-items {
    font-style: italic;
    opacity: 0.6;
    font-size: 0.95rem !important;
    margin-top: 10px;
}

.item-details {
    font-size: 0.9rem !important;
    opacity: 0.7;
    margin-top: -10px;
    font-weight: 400 !important;
}

.carte-items li.long-item {
    margin-bottom: 0;
}

.carte-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed rgba(94, 18, 6, 0.1);
}

.carte-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--brown);
    opacity: 0.8;
}

.carte-legend img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.carte-discovery {
    font-size: 1rem;
    font-style: italic;
    color: var(--brown);
    opacity: 0.6;
}

@media (max-width: 767px) {
    .carte-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* PRESENTATION */
.presentation-stack {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* .presentation-grid.mirror { Order handled in HTML } */

.presentation-content {
    max-width: 600px;
}

.large-title {
    font-size: 4rem;
    margin-bottom: 30px;
}

.presentation-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.interior-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
    display: block;
}

.team-image {
    width: 100%;
    height: 600px;
    /* Increased to accommodate portrait format */
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
    display: block;
}

/* HOURS */
.hours-band {
    background-color: var(--sand-light);
    padding: 100px 0;
    border-top: 1px solid rgba(94, 18, 6, 0.05);
}

.section-title {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 50px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(94, 18, 6, 0.1);
    font-size: 1.1rem;
}

.hours-list li span:last-child {
    font-weight: 700;
}

.hours-list li.today {
    color: var(--green);
    font-weight: 700;
    border-bottom-style: solid;
}

/* FIND US */
.find-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

.map-wrapper {
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.location-image-wrapper {
    position: relative;
    padding-top: 80px;
    text-align: center;
}

.find-us-pointer {
    position: absolute;
    top: -10px;
    left: -60px;
    width: 180px;
    height: 130px;
    z-index: 5;
}

.curved-arrow {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.label-ici {
    font-size: 2.22rem;
    fill: var(--brown);
}

.facade-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    display: block;
    margin-bottom: 30px;
}

/* CONTACT */
.contact-form {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.03);
    margin-top: 50px;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(94, 18, 6, 0.1);
    background: var(--cream);
    font-family: inherit;
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 5px rgba(127, 131, 48, 0.1);
}

/* FOOTER */
.main-footer {
    background-color: var(--brown);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-logo {
    font-family: var(--font-titles);
    font-size: 2.5rem;
    margin-bottom: 5px;
}


.footer-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 12px;
    display: block;
}

.footer-col p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.footer-bottom {
    margin-top: 30px;
}

.footer-line {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.copyright {
    opacity: 0.4;
    font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes zoomSlow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.footer-sticker-small {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(77, 33, 33, 0.08);
    transition: all 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(101, 82, 64, 0.796);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: #F1D6CE;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 8px 0 18px 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-phone {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}



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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero-motto {
        font-size: 2.5rem;
    }

    .formula-slate {
        padding: 30px 40px;
    }

    .carte-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .presentation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

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

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .formula-grid {
        gap: 20px;
    }

    .formula-slate {
        padding: 30px 20px;
    }

    .formula-slate h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .carte-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carte-category {
        padding: 30px;
    }

    .menu-categories {
        display: none;
    }

    .large-title {
        font-size: 2.8rem;
    }

    .find-grid {
        gap: 40px;
    }

    .map-wrapper {
        height: 350px;
        order: 1;
    }

    .location-image-wrapper {
        order: 2;
        padding-top: 40px;
    }

    .find-us-pointer {
        left: 0;
        top: -40px;
        scale: 0.8;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* LUNCH IDENTITY - MARKET FRESH STYLE */
#lunch {
    background-color: var(--sand-light);
    position: relative;
    overflow: hidden;
}

#lunch::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--green);
    opacity: 0.03;
    border-radius: 50%;
}

.lunch-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.lunch-card {
    background: white;
    padding: 40px;
    border-radius: 40px 10px 40px 10px;
    box-shadow: 10px 10px 0px rgba(127, 131, 48, 0.05);
    border: 1px solid rgba(127, 131, 48, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lunch-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px rgba(127, 131, 48, 0.1);
    border-color: var(--green);
}

.lunch-card h3 {
    font-size: 1.8rem;
    color: var(--brown);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lunch-card h3 svg {
    color: var(--green);
    width: 28px;
    height: 28px;
}

.lunch-card h4 {
    margin: 30px 0 15px;
    color: var(--green);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(127, 131, 48, 0.2);
    padding-bottom: 8px;
}

/* Bento Sizing */
.card-wide {
    grid-column: span 8;
}

.card-narrow {
    grid-column: span 4;
}

.card-medium {
    grid-column: span 6;
}

.lunch-stacked-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.card-full {
    grid-column: span 12;
}

@media (max-width: 991px) {

    .card-wide,
    .card-narrow,
    .card-medium {
        grid-column: span 6;
    }
}

@media (max-width: 767px) {

    .card-wide,
    .card-narrow,
    .card-medium,
    .card-full {
        grid-column: span 12;
    }

    .lunch-card {
        padding: 30px;
    }
}

/* Standardized Lunch Item */
.lunch-items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lunch-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lunch-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
}

.lunch-item-name {
    font-family: var(--font-titles);
    font-size: 1.35rem;
    color: var(--brown);
    line-height: 1.2;
}

.lunch-item-spacer {
    flex: 1;
    border-bottom: 1px dotted rgba(94, 18, 6, 0.1);
    margin-bottom: 4px;
}

.price-tag {
    background: var(--green);
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-family: var(--font-titles);
    font-size: 1rem;
    white-space: nowrap;
}

.lunch-item-description {
    font-size: 0.95rem;
    color: var(--brown);
    opacity: 0.7;
    font-style: italic;
    line-height: 1.4;
    padding-right: 20px;
}

.lunch-card .more-items {
    font-weight: 700;
    color: var(--green);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* =====================================
   HAMBURGER & MOBILE NAV
   ===================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    z-index: 1100;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    transform-origin: center;
}

.hamburger.open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }
}

/* OVERLAY — display:none par défaut, géré par JS */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 950;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 100px 40px 50px;
    opacity: 0;
    transition: opacity 0.35s ease;
    overflow: hidden;
}

/* Cercles décoratifs dans l'ADN du site */
.mobile-nav-overlay::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: var(--brown);
    opacity: 0.04;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.mobile-nav-overlay::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: var(--green);
    opacity: 0.05;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.mobile-nav-overlay.open {
    opacity: 1;
}

/* Logo dans l'overlay */
.mobile-nav-header {
    width: 100%;
    text-align: center;
    z-index: 1;
}

.mobile-nav-logo {
    height: 32px;
    width: auto;
    opacity: 0.35;
}

/* Navigation */
.mobile-nav {
    z-index: 1;
    width: 100%;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Stagger animation — rapide à la fermeture, échelonné à l'ouverture */
.mobile-nav ul li {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav-overlay.open .mobile-nav ul li {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.open .mobile-nav ul li:nth-child(1) { transition-delay: 0.06s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(2) { transition-delay: 0.11s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(3) { transition-delay: 0.16s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(4) { transition-delay: 0.21s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(5) { transition-delay: 0.26s; }
.mobile-nav-overlay.open .mobile-nav ul li:nth-child(6) { transition-delay: 0.31s; }

.mobile-nav-link {
    font-family: var(--font-titles);
    font-size: 2.6rem;
    color: var(--brown);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: color 0.2s ease, letter-spacing 0.3s ease;
    line-height: 1.2;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--green);
    letter-spacing: 0.04em;
}

/* Séparateur dashed entre chaque lien */
.mobile-nav ul li:not(:last-child)::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(94, 18, 6, 0.12);
    margin: 0 auto;
}

/* Footer du menu (téléphone + réseaux) */
.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 1;
}

.mobile-nav-phone {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brown);
    text-decoration: none;
    opacity: 0.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-nav-social {
    display: flex;
    gap: 16px;
}

.mobile-nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(94, 18, 6, 0.06);
    color: var(--brown);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav-social a:hover {
    background: rgba(94, 18, 6, 0.12);
    transform: translateY(-2px);
}

.mobile-nav-social svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5px;
}

/* =====================================
   FOOTER REDESIGN
   ===================================== */
.main-footer {
    padding: 0 0 30px;
}

.footer-band {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 70px;
}

.footer-band-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-tagline {
    font-family: var(--font-titles);
    font-size: 2.4rem;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.footer-cta-btn {
    background: white;
    color: var(--brown);
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-cta-btn:hover {
    background: var(--cream);
    color: var(--brown);
    transform: translateY(-3px);
}

.footer-desc {
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 0;
    max-width: 260px;
}

@media (min-width: 1025px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.2fr;
    }
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 5px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    text-decoration: none;
    color: white;
    opacity: 0.45;
    font-size: 0.85rem;
    transition: opacity 0.2s ease;
}

.footer-legal-links a:hover {
    opacity: 1;
}

.made-by {
    font-size: 0.85rem;
    opacity: 0.45;
    margin: 0;
}

.made-by a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    opacity: 1;
}

.made-by a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer-band-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-tagline {
        font-size: 1.8rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .footer-desc {
        max-width: 100%;
        text-align: center;
    }
}

/* =====================================
   LEGAL PAGES
   ===================================== */
.legal-page {
    padding-top: 160px;
}

.legal-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--brown);
}

.legal-subtitle {
    font-size: 0.9rem;
    opacity: 0.45;
    margin-bottom: 60px;
    display: block;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin: 50px 0 15px;
    color: var(--brown);
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(94, 18, 6, 0.15);
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
    opacity: 0.8;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-content a {
    color: var(--green);
    text-decoration: underline;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    font-weight: 700;
    color: var(--brown);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.legal-back:hover {
    opacity: 1;
}

/* =====================================
   SPACING FIXES
   ===================================== */
@media (max-width: 767px) {
    .section {
        padding: 70px 0;
    }

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

    .map-wrapper {
        height: 300px;
    }

    .location-image-wrapper {
        padding-top: 20px;
    }

    .find-us-pointer {
        display: none;
    }

    .facade-image {
        height: 220px;
    }

    .presentation-grid {
        gap: 40px;
    }
}

/* =====================================
   KPI BAND MOBILE
   ===================================== */
@media (max-width: 767px) {
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .kpi-item {
        border-right: none;
        border-bottom: 1px solid rgba(94, 18, 6, 0.08);
        padding-bottom: 20px;
    }

    .kpi-item:nth-child(3),
    .kpi-item:nth-child(4) {
        border-bottom: none;
    }
}

/* =====================================
   HOURS — HIGHLIGHT DU JOUR
   ===================================== */
.hours-list li.today {
    color: var(--green);
    font-weight: 700;
    background: rgba(127, 131, 48, 0.07);
    border-radius: 10px;
    padding: 15px 14px;
    margin: 2px -14px;
    border-bottom: 1px solid rgba(127, 131, 48, 0.2);
    position: relative;
}