:root {
  --lc-bg: #0a0f0d;
  --lc-bg-soft: #111916;
  --lc-panel: #101814;
  --lc-panel-2: #17231e;
  --lc-border: rgba(68, 120, 84, 0.28);
  --lc-border-strong: rgba(92, 160, 112, 0.52);
  --lc-border-glow: rgba(124, 201, 145, 0.14);
  --lc-text: #f4efe4;
  --lc-text-soft: #d3c8b4;
  --lc-text-muted: #a99f8f;
  --lc-gold: #d1ab62;
  --lc-gold-deep: #a67b35;
  --lc-green: #5f9d72;
  --lc-green-deep: #2f5c42;
  --lc-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --lc-shell: 1200px;
  --lc-radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(209,171,98,0.15), transparent 28%),
    linear-gradient(180deg, #08100c, #0e1512 45%, #0a0f0d 100%);
  color: var(--lc-text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.95em;
}

.sr-only,
.focusable-skip-link {
  position: absolute;
  left: -9999px;
}

.focusable-skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}

.lc-shell {
  width: min(calc(100% - 32px), var(--lc-shell));
  margin: 0 auto;
}

.lc-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(10, 15, 13, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lc-site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.lc-brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #16110a;
  background: linear-gradient(180deg, #ebd6a5, #c6974b);
}

.lc-brand__text {
  color: var(--lc-text);
}

.lc-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.lc-nav-list a {
  color: var(--lc-text-soft);
  font-size: 14px;
}

.lc-nav-list a:hover,
.lc-nav-list .current-menu-item > a,
.lc-nav-list .current_page_item > a {
  color: var(--lc-text);
}

#main-content,
.lc-home,
.lc-admin-page,
.lc-customer-panel {
  display: block;
}

.lc-home {
  overflow: clip;
}

.lc-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
}

.lc-hero__media {
  position: absolute;
  inset: 0;
}

.lc-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,10,8,0.30), rgba(7,10,8,0.75) 55%, #0a0f0d 100%);
}

.lc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lc-hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 72px;
}

.lc-eyebrow,
.lc-panel-label {
  margin: 0 0 12px;
  color: var(--lc-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.lc-hero h1,
.lc-section h2,
.lc-admin-page h1,
.lc-admin-page h2 {
  margin: 0;
  line-height: 0.98;
  font-family: Georgia, serif;
}

.lc-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.lc-lead {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--lc-text-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.lc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lc-hero__meta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--lc-text-muted);
  font-size: 14px;
}

.lc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.lc-btn--primary {
  background: linear-gradient(180deg, #e2c27f, #be8d45);
  color: #181109;
}

.lc-btn--secondary {
  background: rgba(255,255,255,0.04);
  border-color: var(--lc-border);
  color: var(--lc-text);
}

.lc-btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.14);
  color: var(--lc-text-soft);
}

.lc-section {
  padding: 88px 0;
}

.lc-section__intro {
  max-width: 64ch;
  margin-bottom: 32px;
}

.lc-section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 14px;
}

.lc-section p {
  color: var(--lc-text-soft);
}

.lc-hours-grid,
.lc-beer-grid,
.lc-feature-split__grid,
.lc-community__grid,
.lc-signup__wrap,
.lc-footer-grid {
  display: grid;
  gap: 24px;
}

.lc-hours-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.lc-hours-card,
.lc-note-card,
.lc-admin-card,
.lc-signup__wrap {
  background: linear-gradient(180deg, rgba(24,35,31,0.94), rgba(17,24,21,0.98));
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius);
  box-shadow: var(--lc-shadow);
}

.lc-hours-card {
  padding: 28px;
}

.lc-hours-card h3,
.lc-note-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.lc-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lc-hours-list li:last-child {
  border-bottom: 0;
}

.lc-feature-split__grid,
.lc-beer-grid,
.lc-community__grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.lc-feature-split__image img,
.lc-beer-grid__image img {
  min-height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--lc-radius);
  border: 1px solid var(--lc-border);
  box-shadow: var(--lc-shadow);
}

.lc-community {
  background: linear-gradient(180deg, rgba(20,29,25,0.55), rgba(10,15,13,0));
}

.lc-community__cards {
  display: grid;
  gap: 16px;
}

.lc-note-card {
  padding: 22px;
}

.lc-note-card p {
  margin: 0;
}

.lc-signup__wrap {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 28px;
}

.lc-signup__form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lc-signup__form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--lc-text);
}

.lc-admin-page {
  padding: 72px 0;
}

.lc-admin-hero {
  margin-bottom: 24px;
}

.lc-admin-gate {
  display: grid;
  place-items: center;
}

.lc-admin-card {
  width: min(100%, 560px);
  padding: 32px;
}

.lc-login-form-wrap .login-username,
.lc-login-form-wrap .login-password,
.lc-login-form-wrap .login-remember,
.lc-login-form-wrap .login-submit {
  margin-bottom: 14px;
}

.lc-login-form-wrap input[type="text"],
.lc-login-form-wrap input[type="password"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--lc-text);
}

.lc-login-form-wrap input[type="submit"] {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, #e2c27f, #be8d45);
  color: #181109;
  font-weight: 700;
  cursor: pointer;
}

.lc-site-footer {
  padding: 36px 0 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lc-footer-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.lc-footer-copy {
  color: var(--lc-text-muted);
  font-size: 14px;
}

.lc-customer-panel {
  padding-bottom: 48px;
}

.lc-customer-hero {
  padding: 42px 0 24px;
}

.lc-customer-hero__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.lc-customer-logo-card,
.lc-customer-card {
  position: relative;
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(13, 21, 17, 0.96), rgba(8, 13, 11, 0.98)) padding-box,
    linear-gradient(145deg, rgba(118, 202, 145, 0.65), rgba(49, 90, 66, 0.9), rgba(186, 228, 196, 0.24)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 0 0 1px rgba(120, 180, 135, 0.08) inset,
    0 18px 60px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.lc-customer-logo-card::before,
.lc-customer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(104, 173, 120, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(209, 171, 98, 0.08), transparent 35%);
  pointer-events: none;
}

.lc-customer-logo-card > *,
.lc-customer-card > * {
  position: relative;
  z-index: 1;
}

.lc-customer-logo-card {
  display: grid;
  place-items: center;
}

.lc-customer-logo-card img {
  width: min(100%, 225px);
  height: auto;
  border-radius: 20px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.lc-customer-hero__copy {
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(209,171,98,0.10), transparent 30%),
    linear-gradient(180deg, rgba(24,35,31,0.94), rgba(17,24,21,0.98));
  border: 1px solid rgba(214, 186, 120, 0.22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lc-customer-hero__copy h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.lc-customer-lead {
  max-width: 52ch;
  margin-top: 18px;
  color: var(--lc-text-soft);
  font-size: 1.05rem;
}

.lc-customer-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--lc-text-muted);
  font-size: 14px;
}

.lc-customer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lc-customer-card {
  padding: 28px;
}

.lc-customer-card h2 {
  margin: 0 0 14px;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.lc-event-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(95, 157, 114, 0.12);
  border: 1px solid rgba(118, 202, 145, 0.28);
  color: #d9f1df;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 0 24px rgba(95, 157, 114, 0.12);
}

.lc-event-copy {
  color: var(--lc-text-soft);
  margin: 0 0 16px;
}

.lc-event-details {
  margin: 0;
  padding-left: 18px;
  color: var(--lc-text-soft);
}

.lc-event-details li + li {
  margin-top: 10px;
}

.lc-flavor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.lc-flavor-chip {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 12px;
  text-align: center;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(118, 202, 145, 0.18);
  color: var(--lc-text);
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12) inset;
}

@media (max-width: 980px) {
  .lc-hours-grid,
  .lc-beer-grid,
  .lc-feature-split__grid,
  .lc-community__grid,
  .lc-signup__wrap,
  .lc-footer-grid,
  .lc-customer-hero__grid,
  .lc-customer-grid {
    grid-template-columns: 1fr;
  }

  .lc-site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .lc-customer-logo-card {
    max-width: 320px;
  }
}

@media (max-width: 720px) {
  .lc-nav-list {
    flex-wrap: wrap;
    gap: 12px;
  }

  .lc-section {
    padding: 64px 0;
  }

  .lc-feature-split__image img,
  .lc-beer-grid__image img {
    min-height: 320px;
  }

  .lc-signup__form {
    flex-direction: column;
    align-items: stretch;
  }

  .lc-hero__content {
    padding: 110px 0 56px;
  }

  .lc-customer-hero__copy,
  .lc-customer-card {
    padding: 22px;
  }

  .lc-flavor-grid {
    grid-template-columns: 1fr;
  }

  .lc-customer-hero__copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}