/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gw-gold: #D4AF37;
    --gw-jade-900: #003F3C;
    --gw-jade-700: #0A6460;
    --gw-parchment: #F8F5EA;
    --gw-umber: #654321;
    --gw-charcoal: #2F2F2F;
    --gw-ribbon: #C73D36;
    --gw-leaf: #77A746;
    --gw-white: #FFFFFF;
    --gw-alert: #D22C2C;
    --secondary-color: #8B0000;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    
    /* Mobile-first spacing system */
    --gw-gap-lg: 16px;
    --gw-gap-md: 12px;
    --gw-gap-sm: 8px;
}

html {
    font-size: 62.5%; /* 1 rem = 10 px */
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--gw-charcoal);
    background: var(--gw-parchment);
    line-height: 1.4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content Layout for Sticky Footer */
.main-content {
    flex: 1;
}

/* Mobile-first Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    color: var(--gw-umber);
    text-transform: uppercase;
    letter-spacing: .04em;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.6rem; }

p, li { 
    font-size: 1.4rem; 
    line-height: 1.4; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gw-gap-lg);
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Sections with performance optimization */
.section {
    content-visibility: auto;
}

/* Header and Navigation - Mobile First */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 63, 60, 0.95); /* Semi-transparent background for better visibility */
    backdrop-filter: blur(10px); /* Modern blur effect */
    z-index: 1000;
    transition: all .3s ease;
}

.header.scrolled {
    background: var(--gw-jade-900);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
    height: 56px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gw-gap-lg);
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--gw-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    color: var(--gw-gold);
    text-decoration: none;
    transform: scale(1.05);
}

.logo:visited,
.logo:link {
    color: var(--gw-gold);
    text-decoration: none;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.logo:hover i {
    transform: rotate(180deg);
}

/* Mobile Navigation */
.nav-menu {
    position: fixed;
    top: 56px;
    right: 0;
    width: 75vw;
    max-width: 300px;
    height: calc(100vh - 56px);
    background: var(--gw-white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem 0;
    box-shadow: var(--shadow);
    list-style: none;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-item {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--gw-charcoal);
    font-weight: 500;
    font-size: 1.6rem;
    transition: var(--transition);
    position: relative;
    display: block;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gw-gold);
    background: var(--gw-parchment);
}

/* Mobile hamburger button */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--gw-white);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Legacy hamburger class for backward compatibility */
.hamburger {
    display: none;
}

/* Dropdown Menu Styles - Mobile First */
.dropdown {
    position: relative;
}

/* Disable hover effects on touch devices */
@media (hover: none) and (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
    
    .dropdown:hover .dropdown-toggle i {
        transform: none;
    }
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i,
.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: static;
    background: var(--gw-parchment);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
    width: 100%;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 1rem 2.5rem;
    color: var(--gw-charcoal);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.dropdown-link:hover,
.dropdown-link.active {
    background: var(--gw-gold);
    color: var(--gw-white);
}

.dropdown-link:last-child {
    border-bottom: none;
}

/* Mobile-specific dropdown overrides */
@media (max-width: 767px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: var(--gw-parchment) !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        min-width: auto !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        width: 100% !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-link {
        padding: 1rem 2.5rem !important;
        font-size: 1.4rem !important;
        border-bottom: 1px solid rgba(0,0,0,0.1) !important;
    }
    
    .dropdown::before {
        display: none !important;
    }
}

/* Hero Section - Mobile First */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 72px 0 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--gw-jade-900), var(--gw-jade-700));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/willow-branch.svg'), url('/assets/willow-branch.svg');
    background-repeat: no-repeat;
    background-position: top left, top right;
    background-size: 200px 200px;
    opacity: 0.1;
    z-index: 1;
}

/* Hide willow branches on very small screens */
@media (max-width: 374px) {
    .hero::before {
        display: none;
    }
}

.hero-logo {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.hero-logo img {
    width: 96px;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gw-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--gw-gold);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.hero-description {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles - Mobile First */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--gw-gap-md);
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.btn {
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.6rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    display: block;
    text-align: center;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(180deg, var(--gw-gold) 0%, #B8912C 100%);
    color: var(--gw-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gw-gold);
    border: 2px solid var(--gw-gold);
}

.btn-secondary:hover {
    background-color: var(--gw-gold);
    color: var(--gw-jade-900);
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--gw-gold);
    border: 2px solid var(--gw-gold);
}

.btn-tertiary:hover {
    background-color: var(--gw-gold);
    color: var(--gw-jade-900);
    transform: translateY(-2px);
}

/* Placeholder images */
.placeholder-image {
    background: linear-gradient(135deg, var(--gw-gold), #B8912C);
    border-radius: var(--border-radius);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gw-white);
    text-align: center;
    box-shadow: var(--shadow);
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.placeholder-image p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-restaurant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-restaurant-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Features Section - Mobile First */
.features {
    padding: 4rem 0;
    background-color: var(--gw-parchment);
}

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

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.6rem;
    color: var(--gw-charcoal);
    max-width: 90%;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--gw-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gw-jade-700), var(--gw-jade-900));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gw-white);
    font-size: 2.4rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.4rem;
    color: var(--gw-charcoal);
    line-height: 1.5;
}

/* About Section - Mobile First */
.about {
    padding: 4rem 0;
    background: var(--gw-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--gw-charcoal);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gw-gold);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gw-charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image .placeholder-image {
    height: 300px;
}

/* Specialties Section */
.specialties {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gw-umber);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gw-gold), var(--gw-ribbon));
    border-radius: 2px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: var(--gw-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.specialty-image .placeholder-image {
    height: 250px;
    border-radius: 0;
}

.specialty-content {
    padding: 2rem;
}

.specialty-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.specialty-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gw-gold);
}

/* Reviews Section */
.reviews {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--gw-parchment) 0%, #f0ead6 100%);
    overflow: hidden;
}

.reviews-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: calc(400px * 12 + 24rem); /* 12 cards * 400px + 12 gaps * 2rem */
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 6 - 12rem)); /* Move exactly 6 cards + gaps for seamless loop */
    }
}

.review-card {
    flex: 0 0 400px;
    background: linear-gradient(145deg, var(--gw-white) 0%, #fdfcf7 100%);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15), 0 4px 16px rgba(0, 63, 60, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gw-gold) 0%, var(--gw-ribbon) 50%, var(--gw-gold) 100%);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.25), 0 8px 24px rgba(0, 63, 60, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-content {
    text-align: center;
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--gw-gold);
    font-size: 1.4rem;
    margin: 0 3px;
    text-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.review-card p {
    color: var(--gw-charcoal);
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding: 0 1.5rem;
}

.review-card p::before {
    content: "\201C";
    font-size: 3.5rem;
    color: var(--gw-gold);
    position: absolute;
    top: -15px;
    left: -5px;
    font-family: 'Playfair Display', serif;
    opacity: 0.8;
}

.review-card p::after {
    content: "\201D";
    font-size: 3.5rem;
    color: var(--gw-gold);
    position: absolute;
    bottom: -35px;
    right: -5px;
    font-family: 'Playfair Display', serif;
    opacity: 0.8;
}

.review-source {
    color: var(--gw-umber);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, var(--gw-gold), var(--gw-ribbon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews {
        padding: 6rem 0;
        position: relative;
    }
    

    
    .reviews-container {
        touch-action: pan-x;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        cursor: grab;
        scroll-behavior: auto; /* Disable smooth scroll for instant repositioning */
        position: relative;
    }
    
    .reviews-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .reviews-container:active {
        cursor: grabbing;
    }
    
    .reviews-track {
        animation: scroll 25s linear infinite;
        width: calc(320px * 12 + 24rem); /* 12 cards * 320px + gaps */
        transition: transform 0.3s ease;
    }
    
    .reviews-track.scrolling {
        animation-play-state: paused;
    }
    
    .review-card {
        flex: 0 0 320px;
        padding: 2rem;
        touch-action: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .review-card p {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .review-card p::before {
        font-size: 3rem;
        top: -12px;
        left: -3px;
    }
    
    .review-card p::after {
        font-size: 3rem;
        bottom: -30px;
        right: -3px;
    }
    
    .stars i {
        font-size: 1.2rem;
        margin: 0 2px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-320px * 6 - 12rem)); /* Move 6 cards for mobile seamless loop */
        }
    }
}

/* CTA Section */
.cta {
    padding: 6rem 0 0 0;
    background: linear-gradient(135deg, var(--secondary-color), #A52A2A);
    color: var(--gw-white);
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cta-content {
    padding-bottom: 6rem;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gw-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--gw-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta .btn-primary {
    background-color: var(--gw-gold);
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* Footer */
.footer {
    background-color: var(--gw-jade-900);
    color: var(--gw-white);
    padding: 4rem 0 2rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gw-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section p {
    color: var(--gw-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--gw-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gw-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gw-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--gw-gold);
    color: var(--gw-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
}

.contact-info p,
.hours p {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0.25rem;
    color: var(--gw-white);
    line-height: 1.5;
}

.contact-info p:last-child,
.hours p:last-child {
    margin-bottom: 0;
}

.contact-info i {
    margin-right: 0.75rem;
    color: var(--gw-gold);
    width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info a,
.hours a {
    color: var(--gw-white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover,
.hours a:hover {
    color: var(--gw-gold);
}

.hours p strong {
    color: var(--gw-gold);
    font-weight: 600;
    margin-right: 0.5rem;
    min-width: 70px;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 2rem;
    text-align: center;
    color: var(--gw-white);
}

.developer-credit {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.developer-credit a {
    color: var(--gw-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: var(--gw-white);
    text-decoration: underline;
}

/* Menu cards - Mobile First */
.menu-card {
    background: var(--gw-parchment);
    border: 2px solid var(--gw-gold);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: var(--gw-gap-sm);
}

.menu-card img {
    width: 100%;
    height: auto;
    order: -1;
    border-radius: var(--border-radius);
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

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

.menu-item-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gw-umber);
}

.menu-item-description {
    font-size: 1.3rem;
    color: var(--gw-charcoal);
    margin-top: 0.5rem;
}

.menu-item-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gw-gold);
    font-family: 'Cinzel', serif;
    margin-top: 4px;
}

/* Form Styles - Mobile First */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gw-charcoal);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E1E5E9;
    border-radius: var(--border-radius);
    font-size: 1.4rem;
    transition: var(--transition);
    background-color: var(--gw-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--gw-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer - Mobile First */
.footer {
    background-color: var(--gw-jade-900);
    color: var(--gw-white);
    padding: 3rem 0 2rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gw-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section p {
    color: var(--gw-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--gw-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gw-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gw-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--gw-gold);
    color: var(--gw-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
}

.contact-info p,
.hours p {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0.25rem;
    color: var(--gw-white);
    text-align: left;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--gw-gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 2rem;
    text-align: center;
    color: var(--gw-white);
}

/* Hide Quick Links section on mobile */
.footer-section:nth-child(2) {
    display: none;
}

/* Animations and Effects */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

.feature-card,
.specialty-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for interactive elements */
.nav-link,
.btn,
.social-links a {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* DESKTOP STYLES - Media Queries for larger screens */
@media (min-width: 768px) {
    /* Update spacing variables for desktop */
    :root {
        --gw-gap-lg: 32px;
        --gw-gap-md: 24px;
        --gw-gap-sm: 16px;
    }
    
    body {
        padding: 0;
        line-height: 1.6;
    }
    
    /* Desktop Typography */
    h1 { font-size: 4rem; }
    h2 { font-size: 3.2rem; }
    h3 { font-size: 2.4rem; }
    p, li { 
        font-size: 1.6rem; 
        line-height: 1.7; 
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Desktop Navigation */
    .navbar {
        padding: 1.5rem 0;
        height: auto;
    }
    
    .logo {
        font-size: 2.4rem;
    }
    
    .logo:hover {
        transform: scale(1.02); /* Smaller scale on desktop for subtlety */
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: static;
        transform: none;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0;
        box-shadow: none;
        display: flex;
        gap: 2rem;
    }
    
    .nav-link {
        color: var(--gw-white);
        padding: 0;
        border-bottom: none;
        font-size: 1.6rem;
        white-space: nowrap;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--gw-gold);
        transition: var(--transition);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: transparent;
    }
    
    .nav-toggle {
        display: none;
    }
    
    /* Desktop Dropdown Menu */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gw-white);
        border: 2px solid var(--gw-gold);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        padding: 1rem 0;
        margin-top: 0.5rem;
        min-width: 220px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-10px);
        transition: all 0.3s ease;
        display: block !important; /* Override mobile display: none */
    }
    
    /* Create a hover bridge to prevent gap issues */
    .dropdown::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 0.5rem;
        background: transparent;
        z-index: 999;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown-link {
        padding: 1rem 1.5rem;
        font-size: 1.4rem;
        color: var(--gw-charcoal);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .dropdown-link:hover,
    .dropdown-link.active {
        background: var(--gw-gold);
        color: var(--gw-white);
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-toggle::after {
        display: none;
    }
    
    /* Desktop Hero */
    .hero {
        min-height: 100vh;
        padding: 100px 2rem 0;
    }
    
    .hero::before {
        background-size: 300px 300px;
    }
    
    .hero-logo {
        margin-bottom: 3rem;
    }
    
    .hero-logo img {
        width: 150px;
    }
    
    .hero-title {
        font-size: 7rem;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
    
    .hero-description {
        font-size: 1.8rem;
        margin-bottom: 4rem;
        line-height: 1.8;
        max-width: 800px;
    }
    
    /* Desktop Buttons */
    .hero-buttons {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        max-width: none;
    }
    
    .btn {
        width: auto;
        min-height: auto;
        padding: .8rem 2.4rem;
        display: inline-block;
    }
    
    /* Desktop Features */
    .features {
        padding: 8rem 0;
    }
    
    .section-header {
        margin-bottom: 6rem;
    }
    
    .section-header h2 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header p {
        font-size: 1.8rem;
        max-width: 700px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 4rem;
    }
    
    .feature-card {
        padding: 4rem 3rem;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 2.5rem;
        font-size: 3rem;
    }
    
    .feature-card h3 {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card p {
        font-size: 1.6rem;
        line-height: 1.7;
    }
    
    /* Desktop About */
    .about {
        padding: 8rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        text-align: left;
        align-items: center;
    }
    
    .about-text h2 {
        font-size: 4rem;
        margin-bottom: 3rem;
    }
    
    .about-text p {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        line-height: 1.8;
    }
    
    .about-stats {
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
    
    .about-image .placeholder-image {
        height: 500px;
    }
    
    /* Desktop Menu Cards */
    .menu-card {
        padding: 2rem;
        flex-direction: row;
        gap: 2rem;
    }
    
    .menu-card img {
        order: 0;
        width: 200px;
        flex-shrink: 0;
    }
    
    .menu-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .menu-item-name {
        font-size: 1.8rem;
    }
    
    .menu-item-description {
        font-size: 1.4rem;
    }
    
    .menu-item-price {
        font-size: 1.8rem;
        margin-top: 0;
    }
    
    /* Desktop Footer */
    .footer {
        padding: 4rem 0 2rem;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        text-align: left;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    /* Show Quick Links section on desktop */
    .footer-section:nth-child(2) {
        display: block;
    }
}
