*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --rose: #b76e79; --cream: #fdf6f0; --dark: #3d2c2e; --text: #5c4a4d; --light: #faf4ef; }
html { scroll-behavior: smooth; }
body { font-family: Georgia, 'Times New Roman', serif; color: var(--text); background: var(--cream); line-height: 1.7; }

/* Navigation */
header { background: var(--dark); padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
nav { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.4rem; color: var(--cream); text-decoration: none; letter-spacing: 1px; }
.logo span { color: var(--rose); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(253,246,240,.8); text-decoration: none; font-size: .95rem; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.menu-toggle { display: none; background: none; border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(rgba(61,44,46,.7), rgba(61,44,46,.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23b76e79" width="1200" height="600"/><circle cx="200" cy="200" r="80" fill="%23d4959f" opacity=".4"/><circle cx="600" cy="120" r="120" fill="%23d4959f" opacity=".3"/><circle cx="900" cy="300" r="90" fill="%23d4959f" opacity=".5"/><circle cx="400" cy="450" r="100" fill="%23d4959f" opacity=".2"/><circle cx="1000" cy="100" r="60" fill="%23d4959f" opacity=".4"/></svg>') center/cover; color: var(--cream); padding: 6rem 2rem; text-align: center; }
.hero h1 { font-size: 2.8rem; font-weight: normal; margin-bottom: 1rem; letter-spacing: 2px; }
.hero p { font-size: 1.15rem; opacity: .85; max-width: 600px; margin: 0 auto 2rem; }
.btn { display: inline-block; background: var(--rose); color: #fff; padding: .75rem 2rem; text-decoration: none; border-radius: 4px; font-size: .95rem; transition: background .2s; border: none; cursor: pointer; }
.btn:hover { background: #9d5d66; }

/* Sections */
.container { max-width: 1000px; margin: 0 auto; padding: 4rem 1.5rem; }
h2 { font-size: 1.8rem; font-weight: normal; color: var(--dark); margin-bottom: 1.5rem; text-align: center; }
h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--rose); margin: .75rem auto 0; }

/* Cards grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(61,44,46,.08); }
.card-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.card-body { padding: 1.5rem; }
.card-body h3 { color: var(--dark); margin-bottom: .5rem; font-weight: normal; }
.card-body p { font-size: .9rem; color: var(--text); }

/* Menu table */
.menu-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.menu-table th { background: var(--dark); color: var(--cream); padding: .75rem; text-align: left; font-weight: normal; font-size: .9rem; }
.menu-table td { padding: .75rem; border-bottom: 1px solid #e8ddd5; font-size: .9rem; }
.menu-table tr:hover td { background: var(--light); }
.menu-category { color: var(--rose); font-weight: bold; padding-top: 1.5rem !important; font-size: 1rem !important; }

/* Form */
.form { max-width: 500px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: .35rem; color: var(--dark); font-size: .9rem; }
.form-group input, .form-group textarea { width: 100%; padding: .65rem; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: .9rem; background: var(--light); }
.form-group textarea { height: 120px; resize: vertical; }
.success-msg { display: none; background: #e8f5e9; color: #2e7d32; padding: 1rem; border-radius: 4px; text-align: center; margin-top: 1rem; }

/* Footer */
footer { background: var(--dark); color: rgba(253,246,240,.6); padding: 2rem 1.5rem; text-align: center; font-size: .85rem; }
footer a { color: rgba(253,246,240,.6); text-decoration: none; }
footer a:hover { color: var(--rose); }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: .5rem; }
.footer-copy { opacity: .5; }

/* Privacy + sitemap pages */
.content-page { max-width: 700px; }
.content-page h3 { color: var(--dark); font-weight: normal; margin: 1.5rem 0 .5rem; }

/* Breadcrumb */
.breadcrumb { max-width: 1000px; margin: 0 auto; padding: 1rem 1.5rem 0; font-size: .85rem; color: #aaa; }
.breadcrumb a { color: var(--rose); text-decoration: none; }

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 1rem; gap: .75rem; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 2rem; }
}

/* Cookie consent */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); color: var(--cream); padding: 1rem 1.5rem; z-index: 1000; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; font-size: .85rem; }
.cookie-banner p { max-width: 500px; }
.cookie-banner button { background: var(--rose); color: #fff; border: none; padding: .5rem 1.5rem; border-radius: 4px; cursor: pointer; font-family: inherit; font-size: .85rem; }
.cookie-banner button:hover { background: #9d5d66; }
.cookie-hidden { display: none; }
