:root {
    --bg-color: #FDFDFD;
    --text-color: #333333;
    --accent-color: #C0A062;
    --font-primary: 'Garamond', serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-color); color: var(--text-color); font-family: var(--font-primary); cursor: none; }
.cursor-dot, .cursor-outline { pointer-events: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9999; opacity: 0; transition: opacity 0.3s, transform 0.2s; }
.cursor-dot { width: 8px; height: 8px; background-color: var(--accent-color); }
.cursor-outline { width: 40px; height: 40px; background-color: rgba(192, 160, 98, 0.2); }
body:hover .cursor-dot, body:hover .cursor-outline { opacity: 1; }
.cursor-interact { transform: translate(-50%, -50%) scale(1.5); }
header { padding: 1rem 5%; }
.back-link { color: var(--accent-color); font-weight: bold; }
.hero { height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: #fff; }
h1 { font-size: 4rem; font-weight: 300; }
.hero p { font-size: 1.2rem; }
.content-section { max-width: 1200px; margin: auto; padding: 5rem 5%; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.content-section.visible { opacity: 1; transform: translateY(0); }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; font-weight: 300; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.menu-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; }
.menu-item h3 { text-align: center; margin-top: 1rem; font-size: 1.2rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 4px; }
footer { background: #F5F5F5; padding: 4rem 5%; text-align: center; }
footer p { margin-bottom: 1rem; }
.map iframe { max-width: 100%; border-radius: 4px; margin-top: 2rem; }