@font-face {
  font-family: "Bebas Neue";
  src: url("fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #000;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.15);
  --text: #fff;
  --text-dim: rgba(255, 255, 255, 0.6);
  --text-dimmer: rgba(255, 255, 255, 0.4);
  --accent: #fff;
  --radius: 16px;
  --max-width: 1080px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3,
.nav-logo,
.btn,
.beer-name,
.beer-index,
.about-hook {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 1.25rem;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--card-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open {
    max-height: 400px;
  }
  .nav-links li {
    border-top: 1px solid var(--card-border);
  }
  .nav-links a {
    display: block;
    padding: 16px 24px;
  }
  .nav-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 72px 24px 64px;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero img.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 12px;
  font-weight: 400;
}

.hero p.tagline {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  margin: 0 0 8px;
}

.hero p.description {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1.05rem;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn:active {
  transform: scale(0.97);
}

.btn-solid {
  background: var(--accent);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--card-border);
}

/* Sections */
section {
  padding: 64px 24px;
  border-top: 1px solid var(--card-border);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  margin: 0 0 10px;
  font-weight: 400;
}

.section-head p {
  color: var(--text-dim);
  margin: 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-grid p {
  color: var(--text-dim);
}

.about-grid .about-subhead {
  color: var(--text);
  font-weight: 600;
  margin-top: 1.5em;
}

.about-grid .about-hook {
  color: var(--text);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.6em;
}

.about-grid .about-logo {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-grid .about-logo {
    order: -1;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px dashed var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dimmer);
  font-size: 0.85rem;
  text-align: center;
  padding: 12px;
  overflow: hidden;
}

.gallery-item.has-media {
  border-style: solid;
  padding: 0;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Taps */
.taps-list {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  border-top: 1px solid var(--card-border);
}

.beer-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--card-border);
}

.beer-index {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.18);
  width: 44px;
}

.beer-info {
  min-width: 0;
}

.beer-name-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.beer-row .beer-name {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
}

.beer-style-tag {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  white-space: nowrap;
}

.beer-exclusive-tag {
  background: #fff;
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  white-space: nowrap;
}

.beer-row .beer-brewery {
  margin: 6px 0 0;
  font-size: 0.95rem;
  color: var(--text-dim);
}

@media (max-width: 480px) {
  .beer-row {
    gap: 14px;
  }
  .beer-index {
    font-size: 1.4rem;
    width: 32px;
  }
}

/* Order */
.order-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.order-card p {
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* Pricing */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--card-border);
  max-width: var(--max-width);
  margin: 0 auto 56px;
  border: 1px solid var(--card-border);
}

.pricing-tier {
  background: var(--bg);
  padding: 28px 20px;
  text-align: center;
}

.pricing-name {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-size: 1.1rem;
  margin: 0 0 10px;
}

.pricing-rate {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-size: 2rem;
  margin: 0;
  color: var(--text);
}

.pricing-rate span {
  font-size: 1rem;
  color: var(--text-dim);
}

.pricing-detail {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  margin: 4px 0 14px;
}

.pricing-blurb {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}

.pricing-included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto 56px;
  text-align: left;
}

.pricing-included h3 {
  font-size: 1.3rem;
  margin: 0 0 18px;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checklist li span:last-child {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-top: 2px;
}

.checklist-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-icon svg {
  width: 14px;
  height: 14px;
}

.included-icon {
  background: #fff;
}

.included-icon svg {
  stroke: #000;
}

.info-icon {
  border: 1px solid var(--card-border);
  background: transparent;
}

.info-icon svg {
  stroke: var(--text-dimmer);
}

@media (max-width: 720px) {
  .pricing-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-included {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Forms */
form.card-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.field input,
.field select,
.field textarea {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dimmer);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

form.card-form button {
  margin-top: 8px;
}

/* Contact / Footer */
footer {
  padding: 56px 24px 40px;
  border-top: 1px solid var(--card-border);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 56px;
  row-gap: 32px;
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: left;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  stroke: #000;
}

.contact-row .label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0 0 3px;
}

.contact-row .value {
  margin: 0;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  line-height: 1.4;
}

.contact-row a.value:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .contact-list {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  text-align: center;
  color: var(--text-dimmer);
  font-size: 0.85rem;
}

.footer-bottom a {
  text-decoration: underline;
}
