:root {
  --bg: #faf7f2;
  --ink: #2b1f17;
  --muted: #6b5d52;
  --accent: #8b4513;
  --rule: #e8e0d4;
  --max-width: 720px;
  --font: ui-serif, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--ink);
  font-family: var(--font); font-size: 17px; line-height: 1.55;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto;
  padding: 24px 24px 0;
  font-family: var(--sans); font-size: 14px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 600; letter-spacing: 0.02em;
}
.brand img { border-radius: 50%; display: block; }

.site-header nav a { margin-left: 20px; color: var(--muted); }
.site-header nav a:hover { color: var(--ink); }

.hero { text-align: center; padding: 64px 24px 48px; }
.hero-logo {
  border-radius: 50%; margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(43, 31, 23, 0.08);
}
.hero h1 {
  font-size: 36px; font-weight: 500; margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.hero .tagline { color: var(--muted); font-style: italic; margin: 0; }

section {
  max-width: var(--max-width); margin: 0 auto;
  padding: 32px 24px;
  border-top: 1px solid var(--rule);
}

section h2 {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin: 0 0 24px;
}

.drink-list { list-style: none; padding: 0; margin: 0; }
.drink-list li {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px dotted var(--rule);
}
.drink-list li:last-child { border-bottom: none; }

.about p, .visit p { margin: 0 0 16px; }

footer {
  max-width: var(--max-width); margin: 48px auto 0;
  padding: 24px; border-top: 1px solid var(--rule);
  font-family: var(--sans); font-size: 13px; color: var(--muted);
  text-align: center;
}
