:root {
    --cream: #fbf3e9;
    --cream-2: #f4e6d4;
    --blush: #f3dcc6;
    --cocoa: #3a2419;
    --cocoa-soft: #5a3d2e;
    --caramel: #b5743f;
    --caramel-dark: #8a5326;
    --gold: #c79a5b;
    --line: rgba(58, 36, 25, 0.12);
    --shadow-sm: 0 4px 16px rgba(58, 36, 25, 0.08);
    --shadow-lg: 0 18px 50px rgba(58, 36, 25, 0.16);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', 'Segoe UI', system-ui, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--cocoa);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed; inset: 0 0 auto 0; z-index: 1000;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 14px 0;
}
.navbar.scrolled {
    background: rgba(251, 243, 233, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(58, 36, 25, 0.08);
    padding: 8px 0;
}
.nav-container {
    max-width: 1140px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: var(--serif); font-size: 1.9rem; font-weight: 700;
    letter-spacing: 0.5px; color: var(--cream);
    transition: color 0.4s var(--ease);
}
.nav-logo span { color: var(--gold); }
.navbar.scrolled .nav-logo { color: var(--cocoa); }

.nav-menu { display: flex; gap: 34px; list-style: none; }
.nav-link {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--cream); position: relative; padding: 6px 0; transition: color 0.3s var(--ease);
}
.navbar.scrolled .nav-link { color: var(--cocoa); }
.nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
    background: var(--caramel); transition: width 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--caramel); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: 0.3s var(--ease); }
.navbar.scrolled .nav-toggle span { background: var(--cocoa); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(125deg, rgba(58,36,25,0.72), rgba(138,83,38,0.55)),
        url('https://images.unsplash.com/photo-1558961363-fa8fdf82db35?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(199,154,91,0.25), transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 24px; text-align: center; color: var(--cream); }
.hero-eyebrow {
    display: inline-block; font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
    border: 1px solid rgba(199,154,91,0.5); border-radius: 50px; padding: 7px 20px;
}
.hero-title {
    font-family: var(--serif); font-weight: 700; font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 1.05; margin-bottom: 22px; text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 300; color: rgba(251,243,233,0.92); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; color: var(--cream); font-size: 1.2rem; animation: bounce 2s infinite var(--ease); }
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 15px 34px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-primary { background: var(--caramel); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--caramel-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--cream); border: 2px solid rgba(251,243,233,0.6); }
.btn-ghost:hover { background: var(--cream); color: var(--cocoa); transform: translateY(-3px); }

/* ---------- BADGES ---------- */
.badges { background: var(--cocoa); color: var(--cream); padding: 30px 0; }
.badges-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge { display: flex; align-items: center; gap: 14px; }
.badge i { font-size: 1.6rem; color: var(--gold); }
.badge strong { display: block; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px; }
.badge span { font-size: 0.78rem; color: rgba(251,243,233,0.65); }

/* ---------- SECTION SHARED ---------- */
section { padding: 100px 0; }
.section-eyebrow { font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--caramel); font-weight: 600; display: block; margin-bottom: 12px; }
.section-eyebrow.center { text-align: center; }
.section-title { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 14px; }
.section-title.center { text-align: center; }
.section-title.left { text-align: left; }
.section-subtitle { color: var(--cocoa-soft); font-size: 1.05rem; margin-bottom: 44px; }
.section-subtitle.left { text-align: left; }

/* ---------- ABOUT ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image-inner {
    aspect-ratio: 4/5; border-radius: 20px; box-shadow: var(--shadow-lg);
    background: linear-gradient(160deg, rgba(199,154,91,0.25), rgba(138,83,38,0.35)),
        url('https://images.unsplash.com/photo-1486427944299-d1955d23e34d?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}
.about-badge {
    position: absolute; bottom: -22px; right: -22px; background: var(--cream); color: var(--cocoa);
    font-family: var(--serif); font-style: italic; font-size: 1.2rem; font-weight: 600;
    padding: 16px 26px; border-radius: 14px; box-shadow: var(--shadow-lg);
}
.about-text .lead { font-size: 1.2rem; color: var(--cocoa-soft); margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; color: var(--cocoa-soft); }
.about-list { list-style: none; margin: 26px 0 32px; display: grid; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--cocoa); }
.about-list i { color: var(--caramel); font-size: 0.9rem; }

/* ---------- MENU ---------- */
.menu { background: var(--cream-2); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.menu-card {
    background: var(--cream); border-radius: 18px; padding: 40px 28px; text-align: center;
    border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.menu-card::before {
    content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, var(--blush), transparent 55%);
    opacity: 0; transition: opacity 0.4s var(--ease);
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.menu-card:hover::before { opacity: 1; }
.menu-icon {
    position: relative; width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; background: var(--cream-2);
    color: var(--caramel); font-size: 1.7rem; transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.menu-card:hover .menu-icon { background: var(--caramel); color: var(--cream); }
.menu-card h3 { position: relative; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.menu-card p { position: relative; color: var(--cocoa-soft); font-size: 0.95rem; }

/* ---------- LOCATION ---------- */
.location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.location-links { margin-top: 26px; }
.map-wrap { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border: 8px solid var(--cream); }
.map-wrap iframe { width: 100%; height: 440px; border: 0; display: block; }
.map-fallback {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px; background: var(--cream-2); color: var(--caramel-dark);
    font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px;
}
.map-fallback:hover { background: var(--blush); }

/* ---------- CONTACT ---------- */
.contact { background: linear-gradient(160deg, var(--cocoa), var(--caramel-dark)); color: var(--cream); }
.contact-inner { text-align: center; }
.contact .section-eyebrow { color: var(--gold); }
.contact .section-title { color: var(--cream); }
.contact .section-subtitle { color: rgba(251,243,233,0.8); }
.social-links { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 36px; }
.social-link {
    display: flex; align-items: center; gap: 12px; padding: 16px 38px; border-radius: 50px;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem;
    color: var(--cream); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.social-link i { font-size: 1.3rem; }
.social-link.facebook { background: rgba(24,119,242,0.9); }
.social-link.facebook:hover { background: #1877f2; transform: translateY(-4px); box-shadow: 0 12px 30px rgba(24,119,242,0.45); }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.instagram:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(220,39,67,0.45); }

/* ---------- FOOTER ---------- */
.footer { background: var(--cocoa); color: var(--cream); padding: 60px 0 40px; }
.footer-inner { text-align: center; }
.footer-logo { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--cream); }
.footer-logo span { color: var(--gold); }
.footer-tag { color: rgba(251,243,233,0.7); margin: 10px 0 22px; font-size: 0.95rem; }
.footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 26px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(251,243,233,0.1); color: var(--cream); transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.footer-social a:hover { background: var(--caramel); transform: translateY(-3px); }
.footer-copy { color: rgba(251,243,233,0.5); font-size: 0.82rem; letter-spacing: 0.5px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
    .badges-inner { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 460px; margin: 0 auto; }
    .location-grid { grid-template-columns: 1fr; gap: 36px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    section { padding: 70px 0; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 64px; left: 0; right: 0; background: rgba(251,243,233,0.97);
        backdrop-filter: blur(14px); flex-direction: column; align-items: center; gap: 22px;
        padding: 34px 0; transform: translateY(-130%); transition: transform 0.4s var(--ease);
        box-shadow: 0 14px 40px rgba(58,36,25,0.12);
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu .nav-link { color: var(--cocoa); }
    .hero-title { font-size: 2.6rem; }
    .badges-inner { grid-template-columns: 1fr; gap: 18px; }
    .badge { justify-content: center; text-align: left; }
}
@media (max-width: 520px) {
    .menu-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
    .about-badge { right: 10px; }
}
