:root {
  --red: #b80000;
  --red-2: #e00000;
  --black: #070707;
  --cream: #f3eee6;
  --muted: #b8b1a7;
  --line: rgba(255,255,255,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  letter-spacing: .02em;
}
p, input, textarea, button, a, span { font-family: Arial, Helvetica, sans-serif; letter-spacing: 0; }
a { color: inherit; }
.site-header {
  min-height: 94vh;
  background:
    radial-gradient(circle at 70% 10%, rgba(184,0,0,.34), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.65)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 12px);
  position: relative;
  overflow: hidden;
}
.site-header::after {
  content: "B";
  position: absolute;
  right: -4vw;
  bottom: -14vh;
  font-size: 44vw;
  color: rgba(184,0,0,.13);
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; min-width: 0; }
.brand-mark { width: 54px; height: auto; flex: 0 0 auto; }
.brand-logo { width: min(260px, 48vw); height: auto; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.menu { display: flex; gap: 26px; align-items: center; }
.menu a { text-decoration: none; font-weight: 800; text-transform: uppercase; font-size: 13px; color: #fff; }
.menu-toggle { display: none; }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: rgba(0,0,0,.45); }
.lang-btn { border: 0; color: #fff; background: transparent; padding: 8px 10px; border-radius: 999px; font-weight: 900; cursor: pointer; }
.lang-btn.active { background: var(--red); }
.hero {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 11vw, 150px) clamp(20px, 6vw, 86px);
  max-width: 950px;
}
.eyebrow { color: var(--red-2); text-transform: uppercase; font-weight: 900; font-size: 13px; margin: 0 0 14px; }
h1, h2, h3 { margin: 0; text-transform: uppercase; line-height: .92; }
h1 { font-size: clamp(54px, 10vw, 132px); max-width: 900px; }
h2 { font-size: clamp(38px, 6vw, 82px); }
h3 { font-size: 28px; color: #fff; }
.hero-text, .section-copy p, .reservation-panel p, .hours p { max-width: 680px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.hero-actions, .location-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 14px 22px; border-radius: 999px; text-decoration: none; border: 1px solid transparent; font-weight: 900; text-transform: uppercase; font-size: 13px; cursor: pointer; }
.btn-primary { background: var(--red); color: #fff; }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.26); }
.text-link { color: #fff; font-weight: 900; text-decoration-color: var(--red); text-underline-offset: 5px; }
.strip { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); background: #0d0d0d; }
.strip div { padding: 26px clamp(16px, 3vw, 38px); border-right: 1px solid var(--line); }
.strip strong { display: block; font-size: clamp(30px, 5vw, 58px); color: #fff; line-height: 1; }
.strip span { color: var(--muted); font-weight: 700; }
.section { padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 86px); }
.beer, .bar, .location { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.cards { display: grid; gap: 16px; }
.cards article { padding: 28px; background: linear-gradient(135deg, #151515, #0b0b0b); border: 1px solid var(--line); border-left: 7px solid var(--red); }
.cards p { color: var(--muted); line-height: 1.5; }
.reserve { background: linear-gradient(135deg, var(--red), #230000); }
.reservation-panel { max-width: 980px; margin: auto; background: rgba(0,0,0,.78); border: 1px solid rgba(255,255,255,.18); padding: clamp(26px, 5vw, 56px); box-shadow: 0 24px 70px rgba(0,0,0,.35); }
.booking-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.booking-form label { font-family: Arial, Helvetica, sans-serif; font-weight: 900; color: #fff; }
.booking-form input, .booking-form textarea { width: 100%; margin-top: 8px; border: 1px solid rgba(255,255,255,.18); background: #090909; color: #fff; border-radius: 12px; padding: 14px; font: 16px Arial, Helvetica, sans-serif; }
.full { grid-column: 1 / -1; }
.small { font-size: 14px !important; }
.logo-card { min-height: 360px; display: grid; place-items: center; background: radial-gradient(circle, rgba(184,0,0,.2), #111 62%); border: 1px solid var(--line); padding: 46px; }
.logo-card img { width: min(420px, 100%); }
.hours { display: flex; justify-content: space-between; gap: 24px; align-items: end; background: #111; border-block: 1px solid var(--line); }
.location iframe { width: 100%; height: 420px; border: 0; filter: grayscale(1) invert(.88) contrast(.9); border-radius: 22px; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 10; background: var(--red); color: #fff; padding: 14px 18px; border-radius: 999px; text-decoration: none; font-weight: 900; text-transform: uppercase; box-shadow: 0 14px 38px rgba(0,0,0,.38); }
.footer { text-align: center; padding: 42px 20px 76px; border-top: 1px solid var(--line); color: var(--muted); }
.footer img { width: 58px; }
.footer a { color: #fff; }
@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; background: #111; color: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-weight: 900; }
  .menu { display: none; position: absolute; left: 20px; right: 20px; top: 86px; padding: 18px; background: #111; border: 1px solid var(--line); flex-direction: column; align-items: flex-start; }
  .menu.open { display: flex; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .beer, .bar, .location { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .hours { display: block; }
  .hours .btn { margin-top: 18px; }
}
@media (max-width: 560px) {
  .brand-logo { display: none; }
  .strip { grid-template-columns: 1fr; }
  h1 { font-size: 52px; }
  .hero-actions .btn, .location-actions .btn { width: 100%; }
  .nav { padding-inline: 16px; }
}

.google-proof{text-align:center;margin-top:1.5rem}.google-proof .stars{color:#f5c542;font-size:1.4rem;letter-spacing:2px} .hero h1{line-height:1.2;letter-spacing:.02em}