/* ============================================
   BRASSERIE LA FONTAINE - Design System & Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-cream: #FAF6F0;
    --color-warm-white: #FFFDF9;
    --color-olive: #5C6B4F;
    --color-olive-dark: #3E4A35;
    --color-terracotta: #C4734F;
    --color-terracotta-light: #E8A88A;
    --color-gold: #C9A84C;
    --color-stone: #8B8178;
    --color-charcoal: #2C2C2C;
    --color-sand: #E8E0D4;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;

    --fs-hero: clamp(2.8rem, 7vw, 5.5rem);
    --fs-h1: clamp(2rem, 4vw, 3rem);
    --fs-h2: clamp(1.6rem, 3vw, 2.4rem);
    --fs-h3: clamp(1.1rem, 2vw, 1.4rem);
    --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
    --fs-small: 0.875rem;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 50px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-stone);
    background-color: var(--color-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-charcoal);
    line-height: 1.2;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

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

.section {
    padding: clamp(64px, 10vw, 120px) 0;
}

.section-heading {
    font-size: var(--fs-h2);
    text-align: center;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.section-divider {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.section-divider span {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-stone);
    font-size: var(--fs-body);
    margin-top: -32px;
    margin-bottom: 40px;
}

/* ---------- Navigation ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.header--scrolled {
    background-color: rgba(250, 246, 240, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 44px;
    width: auto;
}

/* Light logo visible par défaut (header transparent), dark caché */
.nav-logo-dark {
    display: none;
}

/* Au scroll (header blanc) : on switch */
.header--scrolled .nav-logo-light {
    display: none;
}

.header--scrolled .nav-logo-dark {
    display: block;
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);

    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header--scrolled .nav-links a {
    color: var(--color-stone);
}

.header--scrolled .nav-links a:hover {
    color: var(--color-charcoal);
}

.nav-cta {
    background: var(--color-terracotta) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700 !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-olive) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.4s ease;
}

.header--scrolled .nav-toggle span {
    background: var(--color-charcoal);
}

/* Mobile nav open state */
.header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3E4A35 0%, #5C6B4F 30%, #8B7355 60%, #C4734F 100%);
    background-image: url('https://lh3.googleusercontent.com/p/AF1QipMesNTmIX9sB0amCoBM9Cys7KV3Yja3hPJlPlDn=s1600');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.15), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(196, 115, 79, 0.2), transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 700;

    letter-spacing: 0.5px;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.hero-stars .star {
    fill: var(--color-gold);
}

.hero-rating {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    margin-left: 8px;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-terracotta);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-olive);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* ---------- About Section ---------- */
.section-about {
    background: var(--color-warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--color-charcoal);
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-quote {
    border-left: 3px solid var(--color-terracotta);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(196, 115, 79, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-charcoal);
    margin-bottom: 0;
}

.about-photo {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.image-placeholder {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-cream) 100%);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-stone);
}

.image-placeholder svg {
    fill: var(--color-stone);
    opacity: 0.4;
}

.image-placeholder span {
    font-size: var(--fs-small);
    opacity: 0.5;

    letter-spacing: 0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-olive), var(--color-olive-dark));
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-icon svg {
    fill: #fff;
}

.feature-card h3 {
    font-size: var(--fs-h3);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: var(--fs-small);
    color: var(--color-stone);
}

/* ---------- Menu Section ---------- */
.section-menu {
    background: var(--color-cream);
}

.menu-simple {
    max-width: 700px;
    margin: 0 auto 48px;
}

.menu-intro {
    text-align: center;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-stone);
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.8;
}

.menu-extras {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--color-sand);
    text-align: center;
}

.menu-extra-item {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-stone);
    margin-bottom: 8px;
}

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

.menu-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-sand);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 600;
    color: var(--color-charcoal);
    white-space: nowrap;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 2px dotted var(--color-sand);
    min-width: 20px;
    margin-bottom: 6px;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: var(--fs-small);
    color: var(--color-stone);
    margin-top: 4px;
}

.menu-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.menu-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-gallery img {
    cursor: pointer;
}

.menu-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-img {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    z-index: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 16px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.menu-note {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-stone);
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-sand);
}

/* ---------- Reviews Section ---------- */
.section-reviews {
    background: var(--color-warm-white);
}

.reviews-ratings {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.rating-card {
    text-align: center;
    padding: 40px 48px;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.rating-source {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 700;

    letter-spacing: 0.5px;
    color: var(--color-stone);
    margin-bottom: 8px;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1;
    margin-bottom: 12px;
}

.rating-score span {
    font-size: 1.2rem;
    color: var(--color-stone);
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.rating-stars .star,
.star {
    fill: var(--color-gold);
}

.rating-count {
    font-size: var(--fs-small);
    color: var(--color-stone);
}

.reviews-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    transition: opacity 0.4s ease;
}

.testimonial-stars {
    color: #f5a623;
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.testimonial {
    background: var(--color-cream);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-terracotta-light);
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
}

.testimonial p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--fs-body);
    color: var(--color-charcoal);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.testimonial cite {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 700;
    font-size: var(--fs-small);
    color: var(--color-terracotta);
}

.reviews-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}

.reviews-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--color-olive);
    font-weight: 700;
    font-size: var(--fs-small);

    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.reviews-social-link svg {
    fill: var(--color-olive);
    transition: fill 0.3s ease;
    flex-shrink: 0;
}

.reviews-social-link:hover {
    color: var(--color-terracotta);
}

.reviews-social-link:hover svg {
    fill: var(--color-terracotta);
}

/* ---------- Reservation Section ---------- */
.section-reservation {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.section-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-terracotta), var(--color-gold));
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.reservation-intro {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--color-charcoal);
    margin-bottom: 32px;
    line-height: 1.8;
}

.reservation-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--color-olive);
    background: transparent;
    color: var(--color-olive);
    margin-top: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reservation-phone svg {
    fill: var(--color-olive);
    transition: fill 0.3s ease;
    flex-shrink: 0;
}

.reservation-phone:hover {
    background: var(--color-olive);
    color: #fff;
}

.reservation-phone:hover svg {
    fill: #fff;
}

.reservation-form-wrapper {
    background: var(--color-warm-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 700;

    letter-spacing: 1px;
    color: var(--color-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-charcoal);
    background: var(--color-cream);
    border: 2px solid var(--color-sand);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z' fill='%238B8178'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-olive);
    box-shadow: 0 0 0 3px rgba(92, 107, 79, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-stone);
    opacity: 0.5;
}

.form-group select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-hint {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-stone);
    margin-top: 4px;
    opacity: 0.7;
}

.form-hint a {
    color: var(--color-terracotta);
    text-decoration: none;
    font-weight: 700;
}

.dispo-message {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-olive);
    font-weight: 700;
    margin-top: 4px;
}

.dispo-error {
    color: var(--color-terracotta);
}

.reservation-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.reservation-confirmation {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    color: var(--color-olive);
    margin-bottom: 16px;
}

.reservation-confirmation h3 {
    font-size: var(--fs-h3);
    color: var(--color-olive);
    margin-bottom: 16px;
}

.reservation-confirmation p {
    font-size: var(--fs-body);
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.confirmation-note {
    font-style: italic;
    color: var(--color-stone) !important;
    margin-bottom: 24px !important;
}

.btn-secondary {
    border: 2px solid var(--color-olive);
    background: transparent;
    color: var(--color-olive);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-olive);
    color: #fff;
}

/* ---------- Hours & Location ---------- */
.section-hours {
    background: var(--color-cream);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.hours-schedule h3 {
    font-size: var(--fs-h3);
    margin-bottom: 20px;
    color: var(--color-charcoal);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.hours-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-sand);
    font-size: var(--fs-body);
}

.hours-table td:first-child {
    font-weight: 700;
    color: var(--color-charcoal);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--color-olive);
    font-weight: 600;
}

.hours-closed td:last-child {
    color: var(--color-terracotta);
}

.hours-note {
    font-size: var(--fs-small);
    color: var(--color-stone);
    font-style: italic;
}

.hours-address {
    margin-top: 32px;
}

.hours-address address {
    font-style: normal;
    font-size: var(--fs-body);
    color: var(--color-stone);
    line-height: 1.8;
}

.hours-map iframe {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.amenities {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.amenity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--color-warm-white);
    border: 1px solid var(--color-sand);
    border-radius: var(--radius-pill);
    font-size: var(--fs-small);
    color: var(--color-stone);
}

.amenity svg {
    fill: var(--color-olive);
}

/* ---------- Contact Section ---------- */
.section-contact {
    background: var(--color-warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-item svg {
    fill: var(--color-olive);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.contact-label {
    font-size: var(--fs-small);

    letter-spacing: 0.5px;
    color: var(--color-stone);
    margin-bottom: 4px;
}

.contact-value {
    font-family: var(--font-display);
    font-size: var(--fs-body);
    color: var(--color-charcoal);
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-olive-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: block;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: var(--fs-small);
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.5px;
    color: var(--color-gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 4px 16px;
    border-radius: var(--radius-pill);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 700;

    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: var(--fs-small);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: var(--fs-small);
    margin-bottom: 8px;
    line-height: 1.8;
}

.footer-contact a {
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Scroll Animations ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }

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

@media (max-width: 768px) {
    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1001;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        background: #3E4A35;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .header.nav-open .nav-links {
        opacity: 1;
        visibility: visible;
    }

    /* Quand le menu est ouvert : couvrir tout l'écran */
    .header.nav-open {
        background-color: #3E4A35 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        top: 0;
        bottom: 0;
        height: 100vh;
    }

    .header.nav-open .nav-toggle span {
        background: #fff;
    }

    .header.nav-open .nav-logo-light {
        display: block;
    }

    .header.nav-open .nav-logo-dark {
        display: none;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9) !important;
        letter-spacing: 3px;
    }

    .nav-links a::after {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        order: -1;
    }

    .image-placeholder {
        min-height: 250px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 20px;
    }

    /* Menu */
    .menu-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-item-name {
        font-size: 1rem;
        white-space: normal;
    }

    /* Reviews */
    .reviews-testimonials {
        grid-template-columns: 1fr;
    }

    /* Reservation */
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .reservation-info {
        text-align: center;
    }

    .reservation-phone {
        justify-content: center;
    }

    .reservation-form-wrapper {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Hours */
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .hours-map iframe {
        height: 300px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-item {
        padding: 28px 20px;
    }

    /* Reviews social */
    .reviews-social {
        flex-direction: column;
        gap: 12px;
    }

    /* Reservation */
    .reservation-phone {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* About photo */
    .about-photo {
        max-width: 100%;
        height: auto;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-social {
        gap: 16px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social a svg {
        width: 18px;
        height: 18px;
    }
}

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

    .section {
        padding: 48px 0;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 0.75rem;
    }

    .menu-gallery {
        grid-template-columns: 1fr;
    }

    .menu-gallery img {
        height: 160px;
    }

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

    .rating-card {
        width: 100%;
    }

    .reservation-form-wrapper {
        padding: 20px;
    }

    .contact-item {
        padding: 24px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ---------- Footer Social ---------- */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a svg {
    fill: rgba(255, 255, 255, 0.7);
    transition: fill 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-terracotta);
    transform: translateY(-2px);
}

.footer-social a:hover svg {
    fill: #fff;
}

/* ---------- Footer Legal ---------- */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- Legal Modals ---------- */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.legal-modal[hidden] {
    display: none;
}

.legal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.legal-modal-content {
    position: relative;
    background: var(--color-warm-white);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.3s ease;
}

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

.legal-modal-content h2 {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    color: var(--color-charcoal);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-sand);
}

.legal-modal-content h3 {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    color: var(--color-olive);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-modal-content p,
.legal-modal-content ul {
    color: var(--color-stone);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-modal-content ul {
    padding-left: 20px;
}

.legal-modal-content li {
    margin-bottom: 6px;
}

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

.legal-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-stone);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
}

.legal-modal-close:hover {
    background: var(--color-sand);
    color: var(--color-charcoal);
}

.cookie-preferences {
    display: flex;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.cookie-note {
    font-size: var(--fs-small);
    color: var(--color-stone);
    opacity: 0.7;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-olive-dark);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: bannerSlideUp 0.4s ease;
}

.cookie-banner[hidden] {
    display: none;
}

@keyframes bannerSlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-small);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner .btn {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-text {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #fff;
}

/* Body scroll lock when modal open */
body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .legal-modal-content {
        padding: 24px;
        max-height: 90vh;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions {
        justify-content: center;
    }

    .footer-legal {
        gap: 16px;
    }
}
