/* ==========================================================================
   CSS Custom Properties & Reset
   ========================================================================== */
:root {
    /* Color System */
    --clr-primary: #2C1810;
    --clr-secondary: #5C3D2E;
    --clr-accent: #D4A373;
    --clr-bg: #FAF7F2;
    --clr-bg-alt: #EAE3D6;
    --clr-text: #1A1A1A;
    --clr-text-light: #FDFBF8;
    --clr-text-muted: #666666;
    --clr-border: rgba(44, 24, 16, 0.1);
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-max: 1200px;
    --section-py: clamp(4rem, 8vw, 6.25rem);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    word-wrap: break-word;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--clr-primary);
}

.section-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 600;
    color: var(--clr-accent);
    display: block;
    margin-bottom: 0.5rem;
}

.text-center { text-align: center; }
.text-light { color: var(--clr-text-light); }
.text-light-muted { color: rgba(253, 251, 248, 0.7); }
.mt-4 { margin-top: clamp(1rem, 3vw, 1.5rem); }
.mb-6 { margin-bottom: clamp(2rem, 5vw, 3rem); }
.accent { color: var(--clr-accent); }
.relative { position: relative; }

.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section {
    padding: var(--section-py) 0;
}

.section-light {
    background-color: #fff;
}

.section-dark {
    background-color: var(--clr-primary);
    color: var(--clr-text-light);
}

.grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2rem);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 2px;
    min-height: 48px;
    text-align: center;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--clr-primary);
}

.btn-outline {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: #fff;
}

.btn-outline-light {
    border-color: var(--clr-text-light);
    color: var(--clr-text-light);
}

.btn-outline-light:hover {
    background-color: var(--clr-text-light);
    color: var(--clr-primary);
}

.btn-full { width: 100%; text-align: center; }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--clr-primary);
    border-bottom: 1px solid var(--clr-accent);
    padding-bottom: 0.2rem;
    margin-top: 1.5rem;
    min-height: 44px;
}

.btn-link:hover {
    gap: 1rem;
    color: var(--clr-accent);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: clamp(1rem, 3vw, 1.5rem) 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 var(--clr-border);
}

.nav-container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--clr-text-light);
    z-index: 1001;
}

.navbar.scrolled .brand-logo { color: var(--clr-primary); }

.nav-links {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--clr-text-light);
    position: relative;
    padding: 0.5rem 0;
}

.navbar.scrolled .nav-links a { color: var(--clr-text); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-accent);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
    border-color: var(--clr-text-light);
    color: var(--clr-text-light);
    padding: 0.6rem 1.2rem;
    min-height: 44px;
}

.navbar.scrolled .nav-cta {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.mobile-menu-btn {
    display: none !important;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text-light);
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.scrolled .mobile-menu-btn { color: var(--clr-primary); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.6), rgba(44, 24, 16, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--clr-text-light);
    width: 90%;
    max-width: 800px;
    padding: 0 clamp(10px, 4vw, 20px);
}

.hero-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    margin-bottom: 1rem;
    display: block;
    color: var(--clr-accent);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: rgba(253, 251, 248, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(253, 251, 248, 0.6);
    border-radius: 15px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 6px;
    background: var(--clr-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* ==========================================================================
   Cards (Menu & Desserts)
   ========================================================================== */
.section-header { margin-bottom: clamp(2.5rem, 6vw, 3.5rem); }

.card {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 2px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-dark {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.08);
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-content { 
    padding: clamp(1.5rem, 4vw, 2rem);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 1rem;
    gap: 1rem;
}

.card-dark .card-header { border-color: rgba(255, 255, 255, 0.1); }

.card-header h3 { 
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    word-wrap: break-word;
}

.price {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--clr-primary);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    flex-shrink: 0;
}

.card p { 
    color: var(--clr-text-muted); 
    font-size: 0.95rem; 
    flex-grow: 1; 
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.about-image { position: relative; }

.about-image img {
    border-radius: 2px;
    box-shadow: clamp(-10px, -2vw, -20px) clamp(10px, 2vw, 20px) 0 var(--clr-bg-alt);
    width: 100%;
    height: auto;
}

.about-badge {
    position: absolute;
    bottom: -5%;
    right: -5%;
    background: var(--clr-primary);
    color: var(--clr-text-light);
    width: clamp(90px, 15vw, 120px);
    height: clamp(90px, 15vw, 120px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: clamp(4px, 1vw, 8px) solid var(--clr-bg);
    z-index: 2;
}

.about-badge span { font-size: clamp(0.6rem, 1vw, 0.7rem); letter-spacing: 2px; }
.about-badge strong { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 400; }
.about-text p { margin-bottom: 1.5rem; color: var(--clr-text-muted); }

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid { 
    gap: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 3vw, 2rem); 
}

.feature-item {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: var(--clr-bg);
    border-radius: 2px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
}

.feature-item h3 { margin-bottom: 1rem; font-size: clamp(1.1rem, 2.5vw, 1.3rem); }
.feature-item p { color: var(--clr-text-muted); font-size: 0.95rem; flex-grow: 1; }

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-image: url('https://images.unsplash.com/photo-1442512595331-e89e73853f31?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--clr-text-light);
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.85);
}

.stat-item { 
    padding: clamp(1rem, 3vw, 2rem); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stat-number { font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 600; color: var(--clr-accent); line-height: 1; }
.stat-plus { font-family: var(--font-serif); font-size: clamp(1.5rem, 4vw, 2.5rem); color: var(--clr-accent); vertical-align: top; line-height: 1; margin-left: 2px; }
.stat-label { text-transform: uppercase; letter-spacing: 2px; font-size: clamp(0.7rem, 1.5vw, 0.85rem); margin-top: 0.5rem; text-align: center; }

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(180px, 20vw, 250px);
    gap: clamp(0.5rem, 2vw, 1rem);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
    background: var(--clr-bg);
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars { color: var(--clr-accent); margin-bottom: 1.5rem; font-size: 1.2rem; }
.quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1rem, 2vw, 1.1rem); margin-bottom: 2rem; color: var(--clr-primary); flex-grow: 1; }

.customer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.customer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.customer-info h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; }
.customer-info span { font-size: 0.8rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================================================
   Reservation & Forms
   ========================================================================== */
.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    background: rgba(255, 255, 255, 0.03);
    padding: clamp(2rem, 6vw, 4rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
}

.form-group { margin-bottom: clamp(1rem, 3vw, 1.5rem); }

.form-group label {
    display: block;
    color: var(--clr-text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: var(--clr-text-light);
    padding: 1rem 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--clr-accent);
}

.form-group select option { background: var(--clr-primary); color: #fff; }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--clr-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    min-height: 48px;
    gap: 1rem;
}

.faq-question:hover { color: var(--clr-accent); }

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    align-items: center;
}

.contact-item {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.contact-item i { font-size: clamp(1.2rem, 3vw, 1.5rem); color: var(--clr-accent); margin-top: 0.2rem; flex-shrink: 0; }
.contact-item h4 { font-family: var(--font-sans); font-size: 1.1rem; margin-bottom: 0.3rem; }
.contact-item p { color: var(--clr-text-muted); }

.map-placeholder { 
    position: relative; 
    height: 100%; 
    min-height: clamp(300px, 40vw, 400px); 
    border-radius: 2px; 
    overflow: hidden; 
}

.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.map-overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.map-placeholder:hover .map-overlay-btn { opacity: 1; }

/* ==========================================================================
   Instagram Section
   ========================================================================== */
.instagram-header { text-align: center; padding: clamp(2rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2rem); background: var(--clr-bg); }
.instagram-header h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
.instagram-header a { color: var(--clr-accent); }

.instagram-grid { display: flex; flex-wrap: wrap; width: 100%; }

.ig-item {
    flex: 1 1 20%;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.ig-overlay i { font-size: clamp(1.5rem, 4vw, 2rem); color: #fff; transform: translateY(20px); transition: var(--transition-smooth); }
.ig-item:hover img { transform: scale(1.1); }
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-item:hover .ig-overlay i { transform: translateY(0); }

/* ==========================================================================
   Final CTA & Footer
   ========================================================================== */
.final-cta {
    background-color: var(--clr-primary);
    padding: clamp(5rem, 12vw, 8rem) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer {
    background-color: var(--clr-primary);
    color: var(--clr-text-light);
    padding: clamp(3rem, 8vw, 5rem) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: clamp(2rem, 6vw, 4rem);
}

.footer-brand h2 { font-size: clamp(1.5rem, 4vw, 2rem); letter-spacing: 2px; margin-bottom: 1rem; color: #fff; }
.footer-brand p { color: var(--clr-text-light-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }

.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.social-links a:hover { background: var(--clr-accent); border-color: var(--clr-accent); }

.footer-links h4, .footer-newsletter h4 { font-size: clamp(1.1rem, 2vw, 1.2rem); margin-bottom: 1.5rem; color: #fff; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--clr-text-light-muted); font-size: 0.95rem; display: inline-block; padding: 0.2rem 0; }
.footer-links a:hover { color: var(--clr-accent); padding-left: 5px; }

.footer-newsletter p { color: var(--clr-text-light-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }

.newsletter-form { display: flex; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 0.5rem; align-items: center; }
.newsletter-form input { background: transparent; border: none; color: #fff; width: 100%; outline: none; font-family: var(--font-sans); padding: 0.5rem 0; border-radius: 0; }
.newsletter-form button { background: none; border: none; color: var(--clr-accent); cursor: pointer; font-size: 1.2rem; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: flex-end; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text-light-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   Animations & Responsive Breakpoints
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }

/* Ultra-Wide Screens (1920px+) */
@media (min-width: 1920px) {
    :root {
        --container-max: 1400px;
    }
    html {
        font-size: 110%;
    }
    .hero {
        background-attachment: scroll; /* Performance tuning for ultra-wide */
    }
}

/* Laptops & Small Desktops (1024px - 1439px) */
@media (max-width: 1439px) {
    .about-badge {
        right: -2%;
        bottom: -2%;
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    
    .about-grid, .reservation-container, .contact-grid { 
        grid-template-columns: 1fr; 
    }
    
    .about-badge { 
        right: 0; 
        bottom: -5%;
    }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .instagram-grid { justify-content: center; }
    .ig-item { flex: 1 1 33.33%; }
}

/* Mobile Phones (320px - 767px) */
@media (max-width: 767px) {
    /* تنسيق زر القائمة */
    .mobile-menu-btn {
        display: flex !important; 
        align-items: center;
        justify-content: center;
    }
    
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .section-stats .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    
    /* تنسيق القائمة الاحترافي (العمودي) */
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color:#D4A373; /* غيّر اللون إذا كنت تستخدم لوناً آخر للقائمة */
        padding: 20px 0;
        gap: 15px;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1); 
        z-index: 1000;
        transition: all 0.3s ease-in-out;
    }

    /* إظهار القائمة وتفعيل تأثير الظهور */
    .nav-links.active {
        display: flex !important;
        animation: fadeIn 0.3s ease-in-out;
    }

    /* تأثير الانزلاق والظهور */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-cta { display: none; } /* إخفاء الـ CTA في الموبايل إذا أردت */
    
    .hero-buttons { flex-direction: column; width: 100%; align-items: stretch; }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(140px, 30vw, 200px); }
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
    .gallery-item.wide { grid-column: span 2; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .ig-item { flex: 1 1 50%; }
    .section-title, .section-subtitle { text-align: center; }
    .card-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .price { align-self: flex-start; }
    .about-text { text-align: center; }
    .contact-info { text-align: center; }
    .contact-item { flex-direction: column; align-items: center; text-align: center; }
    .btn-link { margin: 1.5rem auto 0; }
}

/* Small Mobile Phones (up to 480px) */
@media (max-width: 480px) {
    .gallery-masonry { grid-template-columns: 1fr; }
    .gallery-item.wide { grid-column: span 1; }
    
    .section-stats .grid-4 { grid-template-columns: 1fr; }
    
    .reservation-container { padding: 2rem 1rem; }
    .hero-content { padding: 0 15px; }
    .card-content { padding: 1.5rem; }
    .feature-item { padding: 1.5rem; }
    .testimonial-card { padding: 2rem 1.5rem; }
}