:root {
  --bg: #0c0c0c;
  --panel: #161616;
  --gold: #c6a15b;
  --ink: #f4efe6;
  --muted: #a8a194;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Barlow", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; font-weight: 500; line-height: 1.1; text-wrap: balance; }
p { margin: 0; }
button { cursor: pointer; font-family: inherit; }
.wrap { width: min(1080px, calc(100% - 32px)); margin-inline: auto; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(198,161,91,.25);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 22px; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.75rem; }
.nav-toggle { display: none; background: transparent; color: var(--gold); border: 1px solid var(--gold); min-height: 40px; padding: 0 12px; }

.hero {
  display: grid;
  min-height: 78vh;
}
@media (min-width: 880px) { .hero { grid-template-columns: 1.05fr 0.95fr; } }
.hero-copy {
  padding: 56px 28px;
  display: grid;
  align-content: center;
  gap: 18px;
}
.hero h1 { font-size: clamp(3rem, 7vw, 5.4rem); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; filter: saturate(0.92); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  background: transparent;
}
.btn:hover { background: var(--gold); color: #111; }

.menu { padding: 72px 0; }
.menu h2 { text-align: center; font-size: 2.4rem; margin-bottom: 8px; }
.menu-note { text-align: center; color: var(--muted); margin-bottom: 28px; }
.menu-list { max-width: 560px; margin: 0 auto; }
.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(198,161,91,.35);
  font-size: 1.05rem;
}
.menu-row span:last-child { color: var(--gold); }

.team { padding: 24px 0 72px; }
.team h2 { text-align: center; font-size: 2.4rem; margin-bottom: 28px; }
.team-grid { display: grid; gap: 18px; }
@media (min-width: 800px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.card img { width: 100%; height: 340px; object-fit: cover; filter: grayscale(0.2); }
.card h3 { margin-top: 12px; font-size: 1.4rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

.hours {
  display: grid;
  background: var(--panel);
}
@media (min-width: 800px) { .hours { grid-template-columns: 1fr 1fr; } }
.hours img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.hours-copy { padding: 40px 28px; display: grid; align-content: center; gap: 10px; }
.hours table { width: 100%; border-collapse: collapse; }
.hours td { padding: 8px 0; border-bottom: 1px solid rgba(244,239,230,.1); }

.gallery { display: grid; grid-template-columns: 1fr 1fr; }
.gallery img { width: 100%; height: 240px; object-fit: cover; }
@media (min-width: 800px) { .gallery { grid-template-columns: repeat(4, 1fr); } .gallery img { height: 220px; } }

.book {
  padding: 72px 24px;
  text-align: center;
}
.book h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-style: italic; }
.book p { color: var(--muted); margin: 12px auto 22px; max-width: 40ch; }

.site-footer { padding: 24px; text-align: center; color: var(--muted); font-size: 0.88rem; border-top: 1px solid rgba(198,161,91,.2); }
.sticky-action { background: #0c0c0c; }
.sticky-action a { background: var(--gold); color: #111; font-weight: 700; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    right: 12px; top: 64px;
    background: #161616;
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    z-index: 20;
    border: 1px solid rgba(198,161,91,.3);
  }
  body.nav-open .nav-links { display: flex; }
  .nav { position: relative; }
  .hero { min-height: 0; }
  .hero-copy { padding: 32px 20px 24px; }
  .hero h1 { font-size: 3.1rem; }
}
