/*---------- Navbar ----------*/
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; }
/* ---------- Main ---------- */
main { max-width: 1200px; width: 90%; margin: 0 auto; padding: 3.5rem 0 5rem; }
body:has(.home-hero) main { max-width: 100%; width: 100%; padding: 0; }
/* ---------- Footer Grid Layout ---------- */
.footer-inner { max-width: 1200px; width: 90%; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-bottom: 2.5rem; }
/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-inner     { gap: 0.75rem; }
  .nav-links     { display: none; }
  .hamburger     { display: flex; }
  .nav-cta       {
    margin-left: auto;
    margin-right: 0.15rem;
    padding: 0.42rem 0.95rem;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-header { width: 92%; }
}
@media (max-width: 480px) {
  .nav-inner { gap: 0.55rem; }
  .nav-cta {
    padding: 0.38rem 0.78rem;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    margin-right: 0.05rem;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .hero        { height: 300px; }
  .section-header { width: 100%; }
}

/* ---------- Homepage Responsive ---------- */
@media (max-width: 820px) {
  .home-hero .hero-tagline {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    gap: 0.7rem;
    padding: 1.05rem 1.15rem 1.2rem;
    background: linear-gradient(to top, rgba(0, 57, 122, 0.9) 0%, rgba(0, 70, 160, 0.82) 58%, rgba(0, 70, 160, 0) 100%);
    align-items: start;
    justify-items: start;
  }

  .home-hero .tagline-heading,
  .home-hero .tagline-desc,
  .home-hero .tagline-btn {
    grid-column: 1;
    justify-self: start;
    text-align: left;
    width: 100%;
  }

  .home-hero .tagline-heading {
    max-width: 24ch;
    line-height: 1.2;
  }

  .home-hero .tagline-desc {
    max-width: 34ch;
  }

  .home-hero .tagline-btn {
    width: fit-content;
  }

  .home-hero .hero-content { margin-bottom: clamp(7.75rem, 23vh, 10.5rem); }
  .find-us-content { flex-direction: column; }
  .find-us-left { flex: unset; width: 100%; }
  .find-us-content iframe { width: 100%; height: 420px; }
  .beer-section { height: 360px; }
  .beer-standing { height: 90%; }
  .beer-tilted { height: 80%; bottom: 20%; }
  .beer-empty { height: 55%; }
}
@media (max-width: 480px) {
  .home-hero .hero-tagline {
    padding: 0.95rem 1rem 1.1rem;
    gap: 0.6rem;
  }

  .home-hero .hero-content {
    margin-bottom: clamp(8.5rem, 26vh, 11rem);
  }

  .find-us-content iframe { height: 350px; }
  .beer-section { height: 280px; }
  .beer-standing { height: 85%; }
  .beer-tilted { height: 70%; }
  .beer-empty { height: 45%; }
}