:root {
    --navy: #0b1026;
    --navy-light: #121836;
    --navy-card: #0f1530;
    --gold: #c9a84c;
    --gold-light: #e0c76a;
    --gold-dim: #8a7233;
    --cream: #f5f0e1;
    --white: #ffffff;
    --text: #d4d0c8;
    --text-dim: #8a8578;
    --border-gold: rgba(201, 168, 76, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dim) var(--navy);
}

body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--navy);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(11, 16, 38, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.6rem 2rem;
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
    transition: height 0.4s ease, width 0.4s ease;
}

.nav.scrolled .nav-logo img {
    height: 40px;
    width: 40px;
}

.nav-logo-text {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-burger span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

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

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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-ornament {
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem 0;
    position: relative;
}

.hero-ornament::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.6rem;
    background: var(--navy);
    padding: 0 12px;
}

.hero-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    animation: fadeInScale 1.2s ease-out;
}

.hero-title {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    color: var(--gold);
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: var(--text);
    letter-spacing: 2px;
    margin-top: 0.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 0.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.9s both;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.85rem 2.5rem;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.hero-info {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 1.1s both;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-info-item {
    text-align: center;
}

.hero-info-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.25rem;
}

.hero-info-value {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--cream);
}

/* ============ SECTIONS COMMON ============ */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    color: var(--gold);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    letter-spacing: 6px;
    text-transform: uppercase;
}

.section-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto 0;
    position: relative;
}

.section-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.5rem;
    background: var(--navy);
    padding: 0 8px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ============ MENU SECTION ============ */
#menu {
    background: var(--navy);
}

.menu-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-dim);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.menu-tab {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-dim);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-tab:hover, .menu-tab.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.menu-category-title {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.menu-card {
    background: var(--navy-card);
    border: 1px solid var(--border-gold);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.menu-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.menu-card-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--gold-dim);
    transition: border-color 0.3s;
}

.menu-card:hover .menu-card-corner { border-color: var(--gold); }

.menu-card-corner.tl { top: 8px; left: 8px; border-top: 1px solid; border-left: 1px solid; }
.menu-card-corner.tr { top: 8px; right: 8px; border-top: 1px solid; border-right: 1px solid; }
.menu-card-corner.bl { bottom: 8px; left: 8px; border-bottom: 1px solid; border-left: 1px solid; }
.menu-card-corner.br { bottom: 8px; right: 8px; border-bottom: 1px solid; border-right: 1px solid; }

.menu-card-name {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.menu-card-desc {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.menu-card-price {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--gold);
    margin-top: 1rem;
}

.menu-list {
    max-width: 600px;
    margin: 0 auto;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px dotted var(--border-gold);
}

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

.menu-list-name {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
}

.menu-list-price {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-list-dots {
    flex: 1;
    margin: 0 0.5rem;
    border-bottom: 1px dotted var(--border-gold);
    min-width: 30px;
    align-self: end;
    margin-bottom: 5px;
}

/* ============ HISTOIRE ============ */
#histoire {
    background: var(--navy-light);
}

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

.histoire-text {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 2;
    color: var(--text);
}

.histoire-text em {
    color: var(--gold);
    font-style: italic;
}

/* ============ GALERIE ============ */
#galerie {
    background: var(--navy);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.galerie-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.galerie-item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

.galerie-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.galerie-item:hover img {
    transform: scale(1.05);
}

/* Gallery "show more" extras */
.galerie-extra {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.galerie-extra.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.galerie-more-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-galerie-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-galerie-more:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-galerie-more svg {
    transition: transform 0.4s ease;
}

.btn-galerie-more.open svg {
    transform: rotate(180deg);
}

/* ============ LIGHTBOX ============ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(11, 16, 38, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid var(--border-gold, #3a3020);
    box-shadow: 0 0 60px rgba(0,0,0,0.7);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    z-index: 9001;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    z-index: 9001;
}

.lightbox-arrow:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.lightbox-arrow.prev { left: 1.25rem; }
.lightbox-arrow.next { right: 1.25rem; }

.lightbox-counter {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold-dim);
    text-transform: uppercase;
    z-index: 9001;
    white-space: nowrap;
}

/* Curseur pointer sur les photos cliquables */
.galerie-item {
    cursor: zoom-in;
}

/* ============ RESERVATION ============ */
#reservation {
    background: var(--navy-light);
}

.resa-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.resa-phone {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--border-gold);
    position: relative;
}

.resa-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    margin-bottom: 1rem;
}

.resa-phone-title {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.resa-phone-number {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    color: var(--cream);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s;
    letter-spacing: 2px;
}

.resa-phone-number:hover { color: var(--gold); }

.resa-phone-note {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-style: italic;
}

.resa-form {
    padding: 3rem 2rem;
    border: 1px solid var(--border-gold);
}

.resa-form-title {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--navy);
    border: 1px solid var(--border-gold);
    color: var(--cream);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

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

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.form-group select option {
    background: white;
    color: #333;
}

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

.btn-submit {
    width: 100%;
    margin-top: 0.5rem;
}

/* ============ CONTACT / FOOTER ============ */
#contact {
    background: var(--navy);
    padding-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    margin-bottom: 0.75rem;
}

.contact-item-label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-item-value {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--cream);
    line-height: 1.6;
}

.contact-item-value a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-value a:hover { color: var(--gold); }

.contact-map {
    max-width: 900px;
    margin: 0 auto 3rem;
    border: 1px solid var(--border-gold);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    filter: grayscale(0.5) brightness(0.7) contrast(1.1);
    transition: filter 0.3s;
}

.contact-map:hover iframe {
    filter: grayscale(0) brightness(0.85) contrast(1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-link {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
    max-width: 900px;
    margin: 0 auto;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* ============ MOBILE MENU ============ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(11, 16, 38, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    color: var(--cream);
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }

    section { padding: 4rem 1.25rem; }

    .hero-logo { width: 130px; height: 130px; }

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

    .resa-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-info { gap: 1.5rem; }

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

    .menu-tabs { gap: 0.3rem; }
    .menu-tab { padding: 0.5rem 1rem; font-size: 0.7rem; }
}
