/* ============================================ */
/* AGE VERIFICATION GATE                        */
/* ============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate.hidden {
  display: none;
}

.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
}

.age-gate__modal {
  position: relative;
  z-index: 1;
  background: var(--dark-card, #141414);
  border: 1px solid rgba(217, 171, 103, 0.25);
  border-radius: 8px;
  padding: 60px 48px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  animation: ageGateFadeIn 0.5s ease;
}

@keyframes ageGateFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.age-gate__logo {
  margin-bottom: 32px;
}

.age-gate__logo-img {
  height: 56px;
  width: auto;
  margin: 0 auto;
}

.age-gate__title {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 12px;
}

.age-gate__text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #aaaaaa;
  margin-bottom: 36px;
  line-height: 1.5;
}

.age-gate__form {
  margin-bottom: 24px;
}

.age-gate__dob {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

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

.age-gate__field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.age-gate__field select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-width: 90px;
  text-align: center;
  transition: border-color 0.25s;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.age-gate__field select:focus {
  outline: none;
  border-color: #D9AB67;
}

.age-gate__field select option {
  background: #1a1a1a;
  color: #ffffff;
}

.age-gate__error {
  font-size: 13px;
  color: #ff6b6b;
  min-height: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.age-gate__submit {
  min-width: 200px;
}

.age-gate__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.age-gate__btn {
  min-width: 160px;
}

.age-gate__disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

.age-gate__disclaimer a {
  color: #D9AB67;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.age-gate__disclaimer a:hover {
  color: #e2cfae;
}

/* Denied state */
.age-gate__denied {
  display: none;
}

.age-gate__denied.active {
  display: block;
}

.age-gate__denied p {
  font-size: 16px;
  color: #ff6b6b;
  margin-bottom: 16px;
  font-weight: 600;
}

.age-gate__denied .age-gate__text {
  color: #888888;
  font-size: 13px;
}

/* ============================================ */
/* RESET & BASE                                 */
/* ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #D9AB67;
  --gold-light: #e2cfae;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --dark-card: #141414;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --font-serif: 'Noto Serif', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

.text-gold {
  color: var(--gold);
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================ */
/* HEADER                                       */
/* ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
  pointer-events: none;
}

.header > * {
  pointer-events: auto;
}

.header__logo {
  display: flex;
  flex-direction: column;
}

.header__logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hamburger */
.hamburger {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: background var(--transition), transform 0.2s;
}

.hamburger:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.hamburger__line {
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition: background var(--transition);
}

.hamburger:hover .hamburger__line {
  background: var(--black);
}

/* ============================================ */
/* NAV OVERLAY (Smith & Wollensky Style)        */
/* ============================================ */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 40px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 10;
}

.nav-overlay__close:hover {
  background: var(--black);
  color: var(--gold);
}

.nav-overlay__inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  gap: 60px;
}

/* Left side: Images */
.nav-overlay__images {
  flex: 1;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-image.active {
  opacity: 1;
}

.nav-image__placeholder {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(217, 171, 103, 0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(217, 171, 103, 0.05);
  transition: border-color 0.3s, background 0.3s;
}

.nav-image__placeholder--beers {
  border-color: rgba(232, 163, 23, 0.4);
  background: rgba(232, 163, 23, 0.08);
}

.nav-image__placeholder--spirits {
  border-color: rgba(139, 69, 19, 0.4);
  background: rgba(139, 69, 19, 0.08);
}

.nav-image__placeholder--story {
  border-color: rgba(217, 171, 103, 0.4);
  background: rgba(217, 171, 103, 0.08);
}

.nav-image__placeholder--taproom {
  border-color: rgba(100, 181, 246, 0.4);
  background: rgba(100, 181, 246, 0.08);
}

.nav-image__placeholder--visit {
  border-color: rgba(129, 199, 132, 0.4);
  background: rgba(129, 199, 132, 0.08);
}

.nav-image__icon {
  font-size: 64px;
  margin-bottom: 16px;
  line-height: 1;
}

.nav-image__placeholder p {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gray-light);
}

.nav-image__photo {
  max-width: 450px;
  max-height: 450px;
  object-fit: contain;
}

/* Right side: Links */
.nav-overlay__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
  cursor: pointer;
  line-height: 1.3;
}

.nav-link:hover {
  color: var(--white);
  transform: translateX(8px);
}

.nav-link.unfocus {
  opacity: 0.3;
}

/* Nav Footer */
.nav-overlay__footer {
  padding: 24px 60px 32px;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.nav-overlay__social {
  display: flex;
  gap: 32px;
}

.nav-overlay__social a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  transition: color 0.25s;
}

.nav-overlay__social a:hover {
  color: var(--black);
}

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('el hendo hero section.png') center/cover no-repeat;
  background-color: var(--dark);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll-indicator span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn--small {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 10px 24px;
  font-size: 11px;
}

.btn--small:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================ */
/* SECTION HEADERS                              */
/* ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header__eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  text-transform: uppercase;
}

.section-header--light .section-header__title {
  color: var(--white);
}

/* ============================================ */
/* BEER SECTION (Stone Brewing Style)           */
/* ============================================ */
.beer-section {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beer-section__bg {
  position: absolute;
  inset: 0;
  background-color: var(--dark);
  transition: background-color 0.6s ease;
  z-index: 0;
}

.beer-section__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0,0,0,0.3), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.4), transparent 60%);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

.beer-section__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Beer Carousel */
.beer-carousel {
  position: relative;
}

.beer-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.beer-card {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.beer-card.active {
  opacity: 1;
}

.beer-card__image {
  flex: 0 0 340px;
}

.beer-card__can-placeholder {
  width: 240px;
  height: 360px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.beer-card.active .beer-card__can-placeholder {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.beer-card__can-img {
  width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.beer-card.active .beer-card__can-img {
  transform: translateY(-8px);
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}

.beer-card__can-placeholder span {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.beer-card__info {
  flex: 1;
}

.beer-card__name {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.beer-card__style {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.beer-card__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.beer-card__stat .label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.beer-card__stat .value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.beer-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 420px;
}

/* Carousel Controls */
.beer-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.beer-carousel__btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.beer-carousel__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.beer-carousel__dots {
  display: flex;
  gap: 8px;
}

.beer-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.beer-carousel__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================ */
/* SPIRITS                                      */
/* ============================================ */
.spirits-section {
  padding: 120px 40px;
  background: var(--dark-mid);
}

.spirits-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.spirits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.spirit-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.spirit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 171, 103, 0.3);
}

.spirit-card__image {
  overflow: hidden;
}

.spirit-card__placeholder {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}

.spirit-card:hover .spirit-card__placeholder {
  transform: scale(1.05);
}

.spirit-card__placeholder span {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 900;
  color: rgba(255,255,255,0.8);
  letter-spacing: 4px;
}

.spirit-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  padding: 24px 24px 8px;
}

.spirit-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  padding: 0 24px;
}

.spirit-card__proof {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 24px 24px;
}

/* ============================================ */
/* STORY                                        */
/* ============================================ */
.story-section {
  padding: 120px 40px;
  background: var(--black);
}

.story-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.story-section__text {
  flex: 1;
}

.story-section__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.story-section__body:last-of-type {
  margin-bottom: 32px;
}

.story-section__image {
  flex: 0 0 400px;
}

.story-section__photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ============================================ */
/* TAPROOM                                      */
/* ============================================ */
.taproom-section {
  position: relative;
  padding: 120px 40px;
  background: var(--dark-mid);
  text-align: center;
  overflow: hidden;
}

.taproom-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.95),
    rgba(26, 26, 26, 0.8)
  );
}

.taproom-section__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.taproom-section__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 48px;
}

.taproom-section__details {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 48px;
  text-align: left;
}

.taproom-detail h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.taproom-detail p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
}

/* ============================================ */
/* VISIT                                        */
/* ============================================ */
.visit-section {
  padding: 100px 40px;
  background: var(--black);
}

.visit-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.visit-card {
  padding: 32px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
}

.visit-card h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.visit-card p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
}

.visit-card__social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visit-card__social a {
  font-size: 14px;
  color: var(--gray-light);
  transition: color 0.25s;
}

.visit-card__social a:hover {
  color: var(--gold);
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
  padding: 60px 40px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer__inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  margin: 0 auto 8px;
}

.footer__legal {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer__age {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

.footer__legal-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray);
  transition: color 0.25s;
}

.footer__link:hover {
  color: var(--gold);
}

.footer__divider {
  color: rgba(255,255,255,0.15);
  font-size: 11px;
}

.footer__warning {
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================ */
/* MOBILE                                       */
/* ============================================ */
@media (max-width: 900px) {
  .nav-overlay__inner {
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 40px;
  }

  .nav-overlay__images {
    display: none;
  }

  .nav-link {
    font-size: 32px;
  }

  .beer-card {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .beer-card__image {
    flex: none;
  }

  .beer-card__stats {
    justify-content: center;
  }

  .beer-card__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .spirits-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .story-section__inner {
    flex-direction: column;
    gap: 40px;
  }

  .story-section__image {
    flex: none;
    width: 100%;
  }

  .taproom-section__details {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 16px 20px;
  }

  .hero__content {
    padding: 0 20px;
  }

  .hero__title {
    letter-spacing: -1px;
  }

  .beer-section {
    padding: 80px 20px;
  }

  .beer-card__name {
    font-size: 28px;
  }

  .beer-card__can-placeholder {
    width: 180px;
    height: 270px;
  }

  .spirits-section,
  .story-section,
  .taproom-section,
  .visit-section {
    padding: 80px 20px;
  }

  .nav-overlay__footer {
    padding: 24px 32px 32px;
  }

  .nav-overlay__social {
    justify-content: center;
  }
}
