/* --- Variables & Reset --- */
:root {
    --color-primary: #1F3A24; /* Deep Forest Green */
    --color-primary-light: #2C4F32;
    --color-accent: #D4A373; /* Warm Sand/Gold */
    --color-bg: #FDFCF8; /* Off-white/Cream */
    --color-bg-alt: #F2F0E9;
    --color-text: #2D3436;
    --color-text-light: #636e72;
    --color-white: #ffffff;
    
    --font-display: 'Fraunces', serif;
    --font-body: 'Work Sans', sans-serif;
    
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 10px 40px -10px rgba(31, 58, 36, 0.1);
    --shadow-hover: 0 20px 50px -10px rgba(31, 58, 36, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--color-primary); }

p { margin-bottom: 16px; color: var(--color-text-light); }

.lead {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 32px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 252, 248, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(31, 58, 36, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
}

.dot { color: var(--color-accent); }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--color-primary); }

.nav-links .btn {
    padding: 10px 24px;
}

.mobile-toggle, .close-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    margin: 6px 0;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #e8f5e9 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(31, 58, 36, 0.1);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: var(--color-white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.detail-card {
    bottom: 40px;
    left: -30px;
    z-index: 2;
}

.floating-card.desktop-only {
    top: 40px;
    right: -20px;
    z-index: 1;
    background: var(--color-primary);
    color: var(--color-white);
}

.floating-card.desktop-only .stat { color: var(--color-white); }
.floating-card.desktop-only .stat span { color: var(--color-white); }
.floating-card.desktop-only .stat-divider { background: rgba(255,255,255,0.2); }

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
}

.stat-icon { font-size: 1.5rem; }
.stat strong { display: block; font-size: 1.25rem; }
.stat span { font-size: 0.875rem; opacity: 0.8; }

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(31, 58, 36, 0.1);
}

.thumb {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.details {
    display: flex;
    flex-direction: column;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.bg-blob-1 {
    width: 300px;
    height: 300px;
    background: rgba(212, 163, 115, 0.3);
    top: -50px;
    right: -50px;
}

.bg-blob-2 {
    width: 200px;
    height: 200px;
    background: rgba(31, 58, 36, 0.2);
    bottom: 20px;
    left: -50px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Sections General --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(31, 58, 36, 0.05);
    transition: var(--transition);
}

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

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(31, 58, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 24px;
}

/* --- Menu --- */
.menu-section {
    background: var(--color-bg-alt);
}

.menu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.menu-text h2 { text-align: left; }
.menu-text p { text-align: left; margin-bottom: 40px; }

.menu-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.category ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(31, 58, 36, 0.2);
    padding-bottom: 8px;
}

.category li span {
    font-weight: 500;
    color: var(--color-text);
}

.menu-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}

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

.link-arrow {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.link-arrow:hover { border-color: var(--color-primary); }

/* --- Vibe / Gallery --- */
.vibe-section {
    text-align: center;
}

.vibe-header {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item.tall {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item.wide {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.gallery-item.square {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

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

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

/* --- Location --- */
.location-section {
    background: var(--color-primary);
    color: var(--color-white);
}

.location-section h2, .location-section h4 {
    color: var(--color-white);
}

.location-section p {
    color: rgba(255, 255, 255, 0.8);
}

.location-section .lead {
    color: var(--color-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block a {
    color: var(--color-accent);
    transition: var(--transition);
}

.info-block a:hover {
    color: var(--color-white);
}

.map-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-placeholder {
    text-align: center;
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    color: var(--color-text);
    width: 100%;
}

.map-pin {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* --- Footer --- */
.footer {
    background: #152618;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .logo {
    color: var(--color-white);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: var(--color-white);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--color-primary);
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--color-primary);
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .hero-grid, .menu-layout, .location-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        min-height: 400px;
    }
    
    .main-img {
        height: 400px;
    }
    
    .floating-card.desktop-only {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.tall, .gallery-item.wide, .gallery-item.square {
        grid-column: auto;
        grid-row: auto;
    }
    
    .gallery-item.tall, .gallery-item.wide {
        height: 300px;
    }
    
    .gallery-item.square {
        height: 200px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
}
