/* Basic reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color: #1b1b1b; background: #fffaf8; }

/* Containers */
.container { width: min(1100px, 92vw); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.logo { width: 44px; height: 44px; object-fit: contain; }
.brand-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; letter-spacing: .2px; }

.nav { display: none; gap: 20px; align-items: center; }
.nav a { text-decoration: none; color: #1b1b1b; font-weight: 500; }
.nav a.cta { padding: 10px 16px; border-radius: 999px; border: 1px solid #1b1b1b; }
.nav a.cta:hover { background: #1b1b1b; color: #fff; }

.nav-toggle { display: inline-flex; background: transparent; border: 1px solid #e6e6e6; padding: 8px 12px; border-radius: 8px; }
@media (min-width: 860px) {
  .nav { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Hero */
.hero { background: url('assets/hero.jpg') center/cover no-repeat, linear-gradient(180deg, #fffaf8 0%, #fff2ea 100%); }
.hero-inner { padding: 96px 0 72px; text-align: center; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 12px; }
.hero p { margin: 0 auto 24px; max-width: 700px; font-size: 1.1rem; opacity: .9; }
.actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn { display: inline-block; text-decoration: none; padding: 12px 18px; border-radius: 999px; font-weight: 600; border: 1px solid #1b1b1b; }
.btn.primary { background: #1b1b1b; color: #fff; }
.btn.ghost { background: transparent; color: #1b1b1b; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.06); }

/* Sections */
section { padding: 72px 0; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin: 0 0 24px; }

/* Cards */
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: 1fr; }
@media (min-width: 860px) {
  .grid.three { grid-template-columns: repeat(3, 1fr); }
}
.card { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 18px; overflow: hidden; }
.card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.card h3 { margin: 16px; font-size: 1.2rem; }
.price-list { list-style: none; padding: 0 16px 20px; margin: 0; display: grid; gap: 8px; }
.price-list li { display: flex; justify-content: space-between; gap: 10px; }
.price-list li.muted { color: #666; font-size: .95rem; display: block; }
.menu-cta { text-align: center; margin-top: 18px; }

/* Gallery */
.gallery .masonry { columns: 2; column-gap: 12px; }
.gallery img { width: 100%; margin: 0 0 12px; border-radius: 12px; break-inside: avoid; border: 1px solid rgba(0,0,0,.06); }
@media (min-width: 860px) { .gallery .masonry { columns: 3; } }

/* Visit */
.visit .split { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 980px) {
  .visit .split { grid-template-columns: 1.1fr 1fr; }
}
.address { font-weight: 600; }
.hours ul { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 6px; }
.socials { display: flex; gap: 16px; margin-top: 16px; }
.socials a { text-decoration: none; font-weight: 600; }
.map-embed iframe { width: 100%; height: 360px; border: 0; border-radius: 12px; }

/* About */
.about p { max-width: 800px; }

/* Contact */
.contact .btn { margin-top: 8px; }

/* Footer */
.site-footer { border-top: 1px solid rgba(0,0,0,.06); background: #fff; }
.footer-inner { display: grid; align-items: center; gap: 14px; grid-template-columns: 1fr; padding: 20px 0; }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.brand.small { display: flex; align-items: center; gap: 8px; }
.logo.small { width: 28px; height: 28px; }
.legal { color: #666; margin: 0; }
@media (min-width: 860px) {
  .footer-inner { grid-template-columns: 1fr auto 1fr; }
  .legal { justify-self: end; }
}

/* Utilities */
.muted { opacity: .8; }
