/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --espresso:   #2C1810;
    --brown:      #8B5E3C;
    --caramel:    #C8956C;
    --cream:      #F5EDD8;
    --light:      #FBF7F0;
    --white:      #FFFFFF;
    --dark:       #1A1A1A;
    --grey:       #6B6B6B;
    --ff-heading: 'Playfair Display', Georgia, serif;
    --ff-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;
    --transition: 0.3s ease;
    --radius:     12px;
    --shadow:     0 8px 32px rgba(44,24,16,0.12);
    --shadow-lg:  0 16px 48px rgba(44,24,16,0.22);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--ff-heading); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem);   font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 0.9rem;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { color: var(--grey); font-size: 1.1rem; margin-top: 0.5rem; }

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all var(--transition);
    cursor: pointer;
}
.btn-primary { background: var(--caramel); color: var(--white); }
.btn-primary:hover {
    background: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,149,108,0.4);
}
.btn-outline { border: 2px solid rgba(255,255,255,0.75); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(44,24,16,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.9rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-img--footer {
    height: 90px;
    border-radius: 6px;
    opacity: 0.92;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,0.82);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--caramel);
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1920&q=85&fit=crop') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,24,16,0.88) 0%, rgba(44,24,16,0.52) 60%, rgba(44,24,16,0.35) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 820px;
    padding: 0 2rem;
    animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 1.5rem;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-content h1 em { color: var(--caramel); font-style: italic; }
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

/* === ABOUT === */
.about {
    padding: 7rem 0;
    background: var(--light);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
    height: 560px;
}
.about-image-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--espresso);
    color: var(--white);
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.badge-number {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    color: var(--caramel);
    line-height: 1;
}
.badge-text {
    display: block;
    font-size: 0.72rem;
    line-height: 1.5;
    margin-top: 0.3rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
}
.about-content { padding-left: 1rem; }
.about-content h2 { color: var(--espresso); margin-bottom: 1.5rem; }
.about-content p  { color: var(--grey); margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.75; }
.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(44,24,16,0.1);
}
.stat-number {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--espresso);
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--grey);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === MENU === */
.menu { padding: 7rem 0; background: var(--white); }
.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}
.menu-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card.featured {
    background: var(--espresso);
    color: var(--white);
}
.menu-card.featured:hover { transform: translateY(-6px); }
.menu-card-image { height: 220px; overflow: hidden; }
.menu-card-image img { transition: transform 0.55s ease; }
.menu-card:hover .menu-card-image img { transform: scale(1.06); }
.menu-card-body { padding: 1.8rem; }
.menu-card h3 { margin-bottom: 0.75rem; color: var(--espresso); }
.menu-card.featured h3 { color: var(--caramel); }
.menu-card p {
    font-size: 0.95rem;
    color: var(--grey);
    margin-bottom: 1.4rem;
    line-height: 1.75;
}
.menu-card.featured p { color: rgba(255,255,255,0.72); }
.menu-items { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.menu-items li {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(44,24,16,0.07);
    color: var(--brown);
}
.menu-card.featured .menu-items li {
    background: rgba(255,255,255,0.1);
    color: var(--caramel);
}

/* === BANNER === */
.banner {
    background: var(--caramel);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.banner-inner { position: relative; z-index: 1; }
.banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
.banner p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 1.75rem; }
.banner .btn-outline { border-color: var(--white); }

/* === GALLERY === */
.gallery {
    padding: 7rem 0;
    background: var(--espresso);
}
.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}
.gallery-header h2 { color: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 360px 280px;
    gap: 0.75rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: #3a2218;
}
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,24,16,0.82) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white);
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-style: italic;
}

/* === VISIT === */
.visit { padding: 7rem 0; background: var(--cream); }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.visit-info h2 { color: var(--espresso); margin-bottom: 2.5rem; }
.info-blocks    { display: flex; flex-direction: column; gap: 2rem; }
.info-block     { display: flex; gap: 1.25rem; align-items: flex-start; }
.info-icon      { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-block h4  {
    font-family: var(--ff-heading);
    font-size: 1rem;
    color: var(--espresso);
    margin-bottom: 0.4rem;
}
.info-block p   { color: var(--grey); line-height: 1.75; }
.info-block small { color: var(--caramel); font-size: 0.85rem; }
.info-block a   { color: var(--brown); font-weight: 600; }
.info-block a:hover { color: var(--espresso); }

.hours-table { border-collapse: collapse; }
.hours-table td {
    padding: 0.3rem 1.5rem 0.3rem 0;
    font-size: 0.95rem;
    color: var(--grey);
}
.hours-table td:first-child { font-weight: 600; color: var(--dark); min-width: 160px; }

.visit-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 420px;
    background: #e8dcc8;
}
.visit-map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* === FOOTER === */
.footer {
    background: var(--espresso);
    color: rgba(255,255,255,0.78);
    padding: 4.5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo-text { font-size: 2rem; }
.footer-brand p {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.7;
    max-width: 300px;
    line-height: 1.75;
}
.footer-col h4 {
    color: var(--white);
    font-family: var(--ff-heading);
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--caramel); }

.social-links { display: flex; flex-direction: column; gap: 0.6rem; }
.social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    transition: color var(--transition);
}
.social-link:hover { color: var(--caramel); }
.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background var(--transition);
}
.social-link:hover .social-icon { background: rgba(200,149,108,0.25); }

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.75rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    opacity: 0.45;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-badge { right: 0.5rem; }
    .menu-categories {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .menu-card.featured { transform: scale(1); }
    .menu-card.featured:hover { transform: translateY(-6px); }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item { grid-column: auto !important; grid-row: auto !important; height: 240px; }
    .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { height: 360px; }
    .about-badge { right: 1rem; bottom: 1rem; }
    .about-content { padding-left: 0; }
    .about-stats  { gap: 1.5rem; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(44,24,16,0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 220px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .footer-grid  { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
