:root {
  --bg: #16110d;
  --surface: #1f1915;
  --border: #322922;
  --text: #f3ece4;
  --muted: #9a8f85;
  --radius: 12px;

  /* BrewsLee brand stripe */
  --yellow: #FDD700;
  --orange: #F58020;
  --red: #E92836;
  --magenta: #C33269;
  --violet: #472A78;
  --ink: #242224;
}

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.stripe {
  height: 8px;
  width: 100%;
  background: linear-gradient(90deg,
    var(--yellow) 0 20%,
    var(--orange) 20% 40%,
    var(--red) 40% 60%,
    var(--magenta) 60% 80%,
    var(--violet) 80% 100%);
}

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 18px 60px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.lang-switch button {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 6px;
  letter-spacing: 0.02em;
}
.lang-switch button.active { color: var(--yellow); }
.lang-sep { color: var(--border); font-size: 13px; }

.hero {
  text-align: center;
  margin-bottom: 28px;
}
.hero img.logo {
  width: 220px;
  margin: 0 auto 18px;
}
.hero .tagline {
  color: var(--muted);
  font-size: 15px;
}

.hero-photo {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.btn {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.15s;
  margin-bottom: 14px;
}
.btn:hover { opacity: 0.85; }
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}
.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.section {
  margin-top: 36px;
}
.section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.hours-grid {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
}
.hours-row + .hours-row { border-top: 1px solid var(--border); }
.hours-row .day { color: var(--muted); }

.menu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 10px;
}
.menu-cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 15px;
}
.menu-item .price {
  color: var(--muted);
  white-space: nowrap;
}

.route-option {
  font-size: 15px;
  font-weight: 700;
  color: var(--violet);
  margin: 22px 0 10px;
}
.route-option:first-of-type { margin-top: 0; }
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}
.step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.step-text { font-size: 15px; line-height: 1.45; }
.step-photo {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
}
