@charset "UTF-8";

:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --cream: #efe8d8;
  --cream-2: #e7dec9;
  --text: #e8e6e0;
  --muted: #a9a59a;
  --accent: #e8a23a;
  --accent-2: #c98724;
  --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 32px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
  width: 56px; height: 56px;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 22px;
  color: #fff;
}
.brand-sub {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.4em;
  font-size: 11px;
  color: #fff;
  margin-top: 4px;
}
.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 13px;
  text-transform: uppercase;
}
.nav a { color: #fff; opacity: 0.85; transition: color .2s; }
.nav a:hover { color: var(--accent); opacity: 1; }
.nav a.active { color: var(--accent); opacity: 1; }
.socials { display: flex; gap: 10px; }
.social {
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  transition: background .2s, color .2s;
}
.social:hover { background: var(--accent); border-color: var(--accent); color: #000; }

/* Hero */
.hero {
  position: relative;
  background: #000;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('photo/%D0%B8%D0%BC%D0%B4%D0%B6%201.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: saturate(0.95);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.25) 100%),
    linear-gradient(180deg, rgba(10,12,20,0.55) 0%, rgba(10,12,20,0.25) 40%, rgba(10,12,20,0.85) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 80px 32px 100px;
  align-items: center;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  color: #fff;
  text-transform: uppercase;
}
.hero-tag {
  font-family: 'Oswald', sans-serif;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 36px;
  text-transform: uppercase;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 16px 28px;
  border: 2px solid #fff;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: #fff; color: #000; }
.hero-right {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}
.hero-right p { margin: 0 0 14px; }
.hero-brand {
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 15px;
}

/* Beers (flagships) */
.beers {
  background: #0a0a0c;
  padding: 70px 0 80px;
  border-top: 1px solid var(--line);
}
.beers-title { text-align: center; margin-bottom: 12px; }
.beers-lead { text-align: center; margin: 0 auto 48px; max-width: 640px; }
.beers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.beer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.beer-can-img {
  width: 170px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.6));
  transition: transform .3s ease;
}
.beer-can-img:hover { transform: translateY(-4px); }
.beer-can-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.beer-can-img img.missing {
  width: 150px;
  height: 200px;
  background: repeating-linear-gradient(45deg, #1a1a1f, #1a1a1f 10px, #15151a 10px, #15151a 20px);
  border: 1px dashed #444;
  display: block;
  border-radius: 12px;
}
.beer-info { display: flex; flex-direction: column; align-items: center; }
.beer-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
  color: #fff;
}
.beer-style {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.beer-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.55;
}
.beer-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.beer-stats li { display: flex; gap: 10px; align-items: center; justify-content: flex-start; }
.beer-info > * { width: 100%; max-width: 280px; }
.beer-stats span { color: var(--accent); width: 14px; display: inline-block; }

/* Features */
.features {
  background: var(--cream);
  color: #1a1a1a;
  padding: 28px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.1fr;
  gap: 28px;
  align-items: center;
}
.feature { display: flex; gap: 12px; align-items: center; }
.feature-icon {
  font-size: 30px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #1a1a1a;
}
.feature h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  margin: 0 0 4px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.feature p { margin: 0; font-size: 12px; color: #444; line-height: 1.4; }
.newsletter {
  border: 1px solid #c5bca7;
  padding: 16px 18px;
  background: var(--cream-2);
}
.newsletter h4 {
  font-family: 'Oswald', sans-serif;
  margin: 0 0 4px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.newsletter p { margin: 0 0 10px; font-size: 11px; color: #555; line-height: 1.4; }
.newsletter-row { display: flex; }
.tg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}
.tg-btn:hover { background: var(--accent-2); }

/* Lineup grid */
.lineup { padding: 70px 0 80px; background: var(--bg-2); }
.lineup .section-title { text-align: center; }
.lineup .section-lead { text-align: center; margin: 0 auto 36px; max-width: 720px; }
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #15151a;
  border: 1px solid var(--line);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}
.badge {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  background: var(--accent);
  color: #000;
  padding: 4px 8px;
  text-transform: uppercase;
}
.card-style {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0;
  text-transform: uppercase;
}
.card-desc { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; flex: 1; }
.card-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 12px;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
}
.card-stats li { color: var(--text); display: inline-flex; align-items: center; }
.card-stats li + li::before {
  content: "\2022";
  color: var(--accent);
  margin-right: 14px;
  font-size: 14px;
  line-height: 1;
}

/* Untappd */
.untappd { padding: 70px 0 80px; background: #0a0a0c; border-top: 1px solid var(--line); }
.untappd-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.untappd-head .section-title { margin-bottom: 8px; }
.untappd-head .section-lead { margin: 0; }
.untappd-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 48px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(232,162,58,0.06), rgba(232,162,58,0.01));
  border: 1px solid rgba(232,162,58,0.25);
}
.untappd-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.untappd-stats strong {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.untappd-stats span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.untappd-sub {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.18em;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 28px;
}
.untappd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.utap {
  background: #15151a;
  border: 1px solid var(--line);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s, transform .2s;
}
.utap:hover { border-color: var(--accent); transform: translateY(-2px); }
.utap-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.utap-head h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.04em;
}
.utap-rating {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.utap-style {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0;
  text-transform: uppercase;
}
.utap-meta {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 0;
}
.utap-desc {
  font-size: 12.5px;
  color: var(--muted);
  margin: 4px 0 0;
  line-height: 1.5;
}

/* Generic sections */
.section { padding: 70px 0; }
.section.dark { background: #0c0c10; }
.section-title {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  font-size: 32px;
  margin: 0 0 16px;
  color: #fff;
}
.section-lead { color: var(--muted); max-width: 760px; }

/* Taproom */
.taproom-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.taproom-photo img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
}
.info-list a { color: var(--accent); }
.info-list strong { color: #fff; font-family: 'Oswald', sans-serif; letter-spacing: 0.06em; margin-right: 6px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-grid p { margin: 0 0 14px; color: var(--text); font-size: 15px; line-height: 1.7; }
.about-photo img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 4px;
}

/* Events */
.events-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.events-list li {
  border-left: 2px solid var(--accent);
  padding: 10px 16px;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}
.events-list time { color: var(--accent); font-family: 'Oswald', sans-serif; margin-right: 12px; letter-spacing: 0.04em; }

/* Footer */
.site-footer {
  background: #000;
  color: var(--muted);
  padding: 36px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-grid p { margin: 0 0 6px; font-size: 13px; }
.footer-grid strong { color: #fff; }
.footer-grid a { color: var(--accent); }
.footer-grid .brand-title { margin-bottom: 8px; }
.copy { grid-column: 1 / -1; font-size: 12px; opacity: 0.6; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 60px 32px; }
  .beers-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .untappd-grid { grid-template-columns: repeat(2, 1fr); }
  .untappd-stats { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .taproom-grid, .about-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 640px) {
  .header-inner { gap: 12px; padding: 12px 18px; }
  .container { padding: 0 18px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .beers-grid { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: 1fr; }
  .untappd-grid { grid-template-columns: 1fr; }
  .untappd-stats { grid-template-columns: repeat(2, 1fr); }
  .untappd-head { flex-direction: column; align-items: flex-start; }
  .section { padding: 50px 0; }
  .section-title { font-size: 26px; }
}
