/* ============================================
   LE TROQUET - Styles
   Bistrot Chic Normand
   ============================================ */

/* ---------- Variables & Base ---------- */
:root {
    /* Couleurs principales - inspirées du logo */
    --color-green: #2B6E44;
    --color-green-dark: #1E5233;
    --color-green-light: #3D8F5A;
    
    --color-brown: #8B6914;
    --color-brown-dark: #6B5010;
    --color-brown-light: #A6822A;
    
    /* Neutres chauds */
    --color-beige: #E8DCD4;
    --color-beige-light: #F5F0EB;
    --color-cream: #FAF8F5;
    --color-white: #FFFFFF;
    
    /* Sombres */
    --color-slate: #3A3F47;
    --color-charcoal: #2D3139;
    --color-black: #1A1C20;
    
    /* Accents */
    --color-copper: #C8956C;
    --color-copper-light: #D4A574;
    --color-wine: #722F37;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 28, 32, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 28, 32, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 28, 32, 0.16);
    --shadow-glow: 0 0 30px rgba(43, 110, 68, 0.15);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-slate);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 2px;
    background: var(--color-green);
    transform: translateY(-50%);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-slate);
    opacity: 0.8;
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header--light .section-title,
.section-header--light .section-subtitle {
    color: var(--color-white);
}

.section-header--light .section-label {
    color: var(--color-copper-light);
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: var(--color-green);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

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

.btn--secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.header__logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.header.scrolled .header__logo {
    width: 50px;
    height: 50px;
}

.header__logo:hover {
    transform: scale(1.05);
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.header__menu {
    display: flex;
    gap: var(--space-md);
}

.header__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    position: relative;
    padding: 0.25rem 0;
}

.header.scrolled .header__link {
    color: var(--color-slate);
    text-shadow: none;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: width var(--transition-base);
}

.header__link:hover::after {
    width: 100%;
}

.header__cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.header__cta:hover {
    background: var(--color-green-dark);
    transform: translateY(-1px);
}

.header__cta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.header.scrolled .header__burger span {
    background: var(--color-slate);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 50, 55, 0.55);
}

.hero__content {
    position: relative;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    max-width: 800px;
    animation: fadeInUp 1s ease forwards;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero__stars {
    color: #FFD700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero__rating {
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero__title {
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero__title-main {
    display: block;
    font-size: clamp(3rem, 10vw, 5.5rem);
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: 0.02em;
}

.hero__title-sub {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-copper-light);
    margin-top: 0.5rem;
}

.hero__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1s backwards;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---------- About Section ---------- */
.about {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--color-beige-light), transparent);
    pointer-events: none;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about__content {
    position: relative;
    z-index: 1;
}

.about__text {
    margin-bottom: var(--space-lg);
}

.about__text p {
    margin-bottom: var(--space-sm);
    font-size: 1.0625rem;
}

.about__text strong {
    color: var(--color-green);
}

.about__text em {
    font-style: italic;
    color: var(--color-brown);
}

.about__highlights {
    display: flex;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-beige);
}

.about__highlight {
    text-align: center;
}

.about__highlight-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-green);
}

.about__highlight-label {
    font-size: 0.8125rem;
    color: var(--color-slate);
    opacity: 0.8;
}

.about__images {
    position: relative;
    height: 500px;
}

.about__image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about__image:hover img {
    transform: scale(1.05);
}

.about__image--main {
    top: 0;
    left: 0;
    width: 70%;
    height: 65%;
    z-index: 2;
}

.about__image--secondary {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 50%;
    z-index: 1;
}

.about__decor {
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: var(--color-green);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

/* ---------- Spécialités Section ---------- */
.specialites {
    padding: var(--space-2xl) 0;
    background: var(--color-beige-light);
}

.specialites__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.plat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.plat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plat-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.plat-card__image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.plat-card--featured .plat-card__image {
    padding-top: 100%;
}

.plat-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.plat-card:hover .plat-card__image img {
    transform: scale(1.08);
}

.plat-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(26, 28, 32, 0.9), transparent);
    color: var(--color-white);
}

.plat-card__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-copper-light);
    margin-bottom: 0.5rem;
}

.plat-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.plat-card--featured .plat-card__title {
    font-size: 1.75rem;
}

.plat-card__desc {
    font-size: 0.875rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* Desserts */
.specialites__subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--color-charcoal);
}

.desserts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.dessert-card {
    text-align: center;
    transition: transform var(--transition-base);
}

.dessert-card:hover {
    transform: translateY(-3px);
}

.dessert-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xs);
    box-shadow: var(--shadow-sm);
}

.dessert-card span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

/* ---------- Ambiance Section ---------- */
.ambiance {
    padding: var(--space-2xl) 0;
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

.ambiance::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 110, 68, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ambiance__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.ambiance__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ambiance__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.ambiance__item:hover img {
    transform: scale(1.05);
}

.ambiance__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.ambiance__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--color-white);
    font-size: 0.9375rem;
    font-style: italic;
}

.ambiance__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
}

.feature__icon {
    font-size: 1.5rem;
}

.feature__text {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* ---------- Horaires Section ---------- */
.horaires {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-beige-light) 100%);
    position: relative;
}

.horaires__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.horaires__header .section-label {
    padding-left: 0;
}

.horaires__header .section-label::before {
    display: none;
}

.horaires__note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-slate);
    font-size: 1rem;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-brown);
}

.horaires__note-icon {
    width: 20px;
    height: 20px;
    color: var(--color-brown);
    flex-shrink: 0;
}

.horaires__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.horaires__single {
    display: flex;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
}

.horaires__single .horaires__card {
    width: 100%;
}

.horaires__card {
    background: var(--color-green);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.horaires__card--bar {
    background: var(--color-brown);
}

.horaires__card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.1);
}

.horaires__card-icon {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.horaires__card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.horaires__card .horaires__table {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-sm);
}

.horaire-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.horaire-row:last-child {
    border-bottom: none;
}

.horaire-day {
    font-weight: 500;
    font-size: 0.9375rem;
}

.horaire-time {
    font-size: 0.875rem;
    opacity: 0.95;
    text-align: right;
}

.horaire-separator {
    margin: 0 0.35rem;
    opacity: 0.5;
}

.horaire-row--closed {
    opacity: 0.5;
}

.horaire-row--closed .horaire-time {
    font-style: italic;
}

.horaire-row--highlight {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    margin: 0.25rem 0;
}

/* ---------- Contact Section ---------- */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact__details {
    margin: var(--space-lg) 0;
}

.contact__item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact__item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--color-green);
    margin-bottom: 0.25rem;
}

.contact__item p {
    font-size: 1rem;
    line-height: 1.5;
}

.contact__item a {
    color: var(--color-charcoal);
    font-weight: 500;
}

.contact__item a:hover {
    color: var(--color-green);
}

.contact__social {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-beige);
    border-radius: 50%;
    color: var(--color-slate);
    transition: all var(--transition-base);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-2px);
}

.contact__map {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
}

/* ---------- Footer ---------- */
.footer {
    padding: var(--space-lg) 0;
    background: var(--color-charcoal);
    color: var(--color-white);
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer__logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer__tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-copper-light);
}

.footer__info {
    text-align: center;
}

.footer__info p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.footer__info a {
    color: var(--color-white);
}

.footer__info a:hover {
    color: var(--color-copper-light);
}

.footer__legal {
    text-align: right;
}

.footer__legal p {
    font-size: 0.8125rem;
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.footer__credit a {
    color: var(--color-green-light);
}

.footer__credit a:hover {
    text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about__images {
        height: 400px;
        order: -1;
    }
    
    .specialites__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plat-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .desserts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ambiance__gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    
    .ambiance__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .horaires__wrapper {
        grid-template-columns: 1fr;
    }
    
    .horaires__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__map {
        order: -1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-xl);
        transition: right var(--transition-base);
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    
    .header__nav.active {
        right: 0;
    }
    
    .header__menu {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .header__link {
        color: var(--color-slate);
        font-size: 1.25rem;
        text-shadow: none;
    }
    
    .header__cta {
        margin-top: var(--space-md);
    }
    
    .header__burger {
        display: flex;
    }
    
    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .about__highlights {
        flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }
    
    .specialites__grid {
        grid-template-columns: 1fr;
    }
    
    .plat-card--featured {
        grid-column: span 1;
    }
    
    .ambiance__gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .ambiance__item--large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .ambiance__item {
        height: 200px;
    }
    
    .ambiance__features {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .footer__content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__legal {
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }
    
    .about__images {
        height: 300px;
    }
    
    .about__image--main {
        width: 80%;
        height: 70%;
    }
    
    .about__image--secondary {
        width: 50%;
        height: 45%;
    }
    
    .desserts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .contact__map {
        height: 250px;
    }
}

/* ---------- Print ---------- */
@media print {
    .header,
    .hero__scroll,
    .btn,
    .contact__map {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero__bg {
        display: none;
    }
    
    .hero__content {
        color: black;
    }
}
