/* ---------- Global Styles ---------- */
:root {
  --green:      #00BC7D;
  --green-dark: #2D624E;
  --orange:     #CB752E;
  --bg:         #F0F0F0;
  --text:       #141414;
  --text-muted: #444;
  --white:      #fff;
  --nav-h:      68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---------- Navigation Bar ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav-logo { display: flex; flex-direction: column; align-items: center; color: var(--white); flex-shrink: 0; line-height: 1; }
.nav-logo .logo-number { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.04em; }
.nav-logo .logo-word { font-weight: 300; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: -2px; }
.nav-links { display: flex; align-items: center; flex: 1; }
.nav-links li a,
.nav-cta {
  display: inline-block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.nav-links li a:hover { transform: translateY(-3px); color: var(--green); }
.nav-cta { background: var(--green); font-weight: 700; letter-spacing: 0.1em; padding: 0.52rem 1.45rem; border-radius: 50px; margin-left: auto; flex-shrink: 0; }
.nav-cta:hover { background: #00a86e; transform: translateY(-3px); color: var(--white); }

/* ---------- Hamburger ---------- */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: 0.75rem; flex-shrink: 0; }
.hamburger:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile Drawer ---------- */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--green-dark);
  z-index: 99;
  padding: 1.5rem 2rem 2rem;
  border-top: 2px solid var(--green);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer.open { opacity: 1; transform: translateY(0); pointer-events: all; visibility: visible; }
.mobile-drawer ul { display: flex; flex-direction: column; }
.mobile-drawer ul li a {
  display: block; color: var(--white); font-size: 1rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-drawer ul li:last-child a { border-bottom: none; }
.mobile-drawer ul li a:hover { color: var(--green); padding-left: 6px; }
.mobile-drawer .mobile-cta { display: inline-block; margin-top: 1.25rem; background: var(--green); color: var(--white); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.7rem 1.6rem; border-radius: 50px; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(0, 120, 80, 0.65) 0%,rgba(255, 255, 255, 0.22) 45%,rgba(0, 70, 160, 0.65) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 5.5rem); letter-spacing: 0.06em; color: var(--white); line-height: 1; }
.hero-content p { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.1rem, 3vw, 1.5rem); letter-spacing: 0.18em; color: var(--green); margin-top: 0.4rem; }
.hero-hours { margin-top: 1rem; margin-bottom: 1.4rem; display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.hero-hours-title { font-family: 'Bebas Neue', sans-serif; font-size: 0.82rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.78); text-shadow:0 0 10px rgba(255,255,255,0.18), 0 0 22px rgba(0,188,125,0.18); }
.hero-hours-line { font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.96); text-shadow: 0 2px 12px rgba(0,0,0,0.45); line-height: 1.45; }

/* ---------- Section Header ---------- */
.section-header { display: flex; align-items: center; gap: 1.2rem; width: 80%; margin: 0 auto 2rem; }
.section-header .rule-line { flex: 1; height: 2px; background: var(--green); border-radius: 2px; }
.section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.08em; color: var(--text); white-space: nowrap; }

/* ---------- Sections ---------- */
.section-paragraph { text-align: left !important; }
.eligibility { margin-bottom: 3.5rem; }
.eligibility p { text-align: center; font-size: 1.1rem; color: var(--text-muted); max-width: 620px; margin: 0 auto; line-height: 1.75; }
.costs { margin-bottom: 3.5rem; }
.costs-subtitle { text-align: center; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #555; margin-bottom: 1.6rem; }
.costs-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.costs-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.costs-table tr:last-child { border-bottom: none; }
.costs-table td { padding: 1.1rem 1.6rem; font-size: 0.97rem; }
.costs-table td:first-child { font-weight: 500; }
.costs-table td:last-child { text-align: right; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.04em; color: var(--green-dark); }
.costs-table .note { font-size: 0.8rem; font-weight: 400; color: #555; display: block; margin-top: 3px; }
.form-section { text-align: center; }
.form-icon-wrap { display: flex; align-items: center; justify-content: center; width: 68px; height: 68px; background: var(--orange); border-radius: 50%; margin: 0 auto 1.25rem; }
.form-icon-wrap svg { width: 32px; height: 32px; fill: var(--white); }
.download-btn {
  display: inline-block; color: var(--orange); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Barlow', sans-serif;
  background: none; border: none; border-bottom: 2px solid var(--orange); padding-bottom: 3px;
  cursor: pointer; transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.download-btn:hover { transform: translateY(-3px); color: #b8621f; border-color: #b8621f; }
.download-btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; border-radius: 2px; }
.form-notice { font-size: 1.1rem; color: #555; margin: 1.5rem auto 0; max-width: 500px; line-height: 1.7; text-align: left !important; }

/* ---------- Modal ---------- */
.modal-backdrop { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0); transition: background 0.3s ease; align-items: center; justify-content: center; }
.modal-backdrop.visible { display: flex; background: rgba(0,0,0,0.75); }
.modal-box {
  background: var(--white); border-radius: 12px; max-width: 540px; width: 92%; max-height: 88vh;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  transform: scale(0.88) translateY(24px); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.modal-backdrop.visible .modal-box { transform: scale(1) translateY(0); opacity: 1; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem 1rem 1.5rem; background: var(--green-dark); border-bottom: 1px solid rgba(0,0,0,0.08); }
.modal-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.08em; color: var(--white); }
.modal-close { background: none; border: none; cursor: pointer; color: var(--white); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: background 0.2s; }
.modal-close:hover { background: rgba(255,255,255,0.15); }
.modal-close:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.modal-body { overflow-y: auto; flex: 1; }
.modal-body img { width: 100%; display: block; }
.modal-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.5rem; background: var(--bg); border-top: 1px solid rgba(0,0,0,0.08); }
.modal-footer p { font-size: 0.8rem; color: #555; }
.modal-download-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--orange); color: var(--white); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.55rem 1.1rem;
  border-radius: 4px; white-space: nowrap; transition: transform 0.2s ease, background 0.2s ease;
}
.modal-download-link:hover { transform: translateY(-2px); background: #b8621f; }
.modal-download-link svg { width: 14px; height: 14px; fill: var(--white); }

/* ---------- Footer ----------*/
footer { background: var(--green-dark); color: var(--white); padding: 3.5rem 2rem 2rem; }
.footer-col h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: 0.14em; padding-bottom: 0.55rem; border-bottom: 2px solid rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a,
.footer-col address a { color: rgba(255,255,255,0.9); font-size: 0.92rem; display: inline-block; transition: transform 0.2s ease, color 0.2s ease; }
.footer-col ul li a:hover,
.footer-col address a:hover { transform: translateY(-3px); color: var(--white); }
.footer-col p { font-size: 0.92rem; color: rgba(255,255,255,0.9); line-height: 1.7; }
.footer-col address { font-style: normal; }
.footer-col address a { display: block; margin-top: 0.2rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 0.9rem; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 8px; color: var(--white); transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease; }
.social-links a:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.75); }
.social-links a:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.social-links svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.25rem; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ---------- Club Rules ---------- */
.rules-notice { text-align: center; color: var(--orange); font-size: 0.95rem; margin-bottom: 1.75rem; }
.rules-list { max-width: 620px; margin: 0 auto; padding-left: 1.25rem; }
.rules-list li { font-size: 1.1rem; color: var(--text); padding: 0.4rem 0; }
.rules-final { text-align: center; font-weight: 700; font-size: 1.2rem; color: var(--text); margin-top: 2rem; }

/* ---------- Deals ---------- */
.deal-section { margin-bottom: 1.5rem; }
.deal-card { display: flex; align-items: stretch; gap: 1.25rem; background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); padding: 1rem; max-width: 860px; margin: 0 auto; }
.deal-img { width: 180px; flex-shrink: 0; border-radius: 6px; object-fit: cover; }
.deal-img--right { order: 1; }
.deal-body { flex: 1; }
.deal-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.06em; color: var(--text); margin-bottom: 0.15rem; }
.deal-time { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.4rem; }
.deal-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.6rem; }
.deal-prices { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.6rem; }
.deal-prices li { display: flex; align-items: center; gap: 0.5rem; background: var(--bg); border-radius: 6px; padding: 0.3rem 0.8rem; }
.deal-duration { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.deal-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; color: var(--green-dark); letter-spacing: 0.04em; }
.deal-notes { margin-top: 0; }
.deal-notes li { font-size: 0.82rem; color: #777; padding: 0.08rem 0; }
.deal-section .section-header { margin-bottom: 1rem; }
@media (max-width: 600px) {
  .deal-card { flex-direction: column; padding: 0.85rem; }
  .deal-img { width: 100%; height: auto; max-height: none; object-fit: contain; border-radius: 4px; }
  .deal-img--right { order: 0; }
}

/* ---------- Home Hero ---------- */
.home-hero { height: 100vh; min-height: 600px; }
.hero-cta { display: inline-block; margin-top: 1.5rem; background: var(--green); color: var(--white); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75rem 2rem; border-radius: 50px; transition: background 0.2s ease, transform 0.2s ease; }
.hero-cta:hover { background: #00a86e; transform: translateY(-3px); }
.hero-tagline { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; display: grid; grid-template-columns: 2fr 0.8fr 1.2fr 0.8fr; align-items: center; padding: 0 4%; height: 18vh; min-height: 110px; }
.tagline-heading { font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); text-align: left; grid-column: 2; }
.tagline-desc { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.5; text-align: left; grid-column: 3; }
.tagline-btn { display: inline-block; background: var(--green); color: var(--white); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.65rem 1.5rem; border-radius: 50px; white-space: nowrap; justify-self: end; grid-column: 4; transition: background 0.2s ease, transform 0.2s ease; }
.tagline-btn:hover { background: #00a86e; transform: translateY(-2px); }
.home-hero .hero-content { margin-bottom: 18vh; }
.tagline-heading { font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); white-space: nowrap; }
.tagline-desc { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.5; flex: 1; max-width: 400px; }
.tagline-btn { display: inline-block; background: var(--green); color: var(--white); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.65rem 1.5rem; border-radius: 50px; white-space: nowrap; transition: background 0.2s ease, transform 0.2s ease; }
.tagline-btn:hover { background: #00a86e; transform: translateY(-2px); }

/* ---------- Find Us ---------- */
.find-us { position: relative; overflow: hidden; }
.find-us-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35); }
.find-us-inner { position: relative; z-index: 1; max-width: 1200px; width: 90%; margin: 0 auto; padding: 4rem 0; }
.find-us-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; letter-spacing: 0.08em; color: var(--white); text-align: center; margin-bottom: 2rem; }
.find-us-title span { color: var(--green); }
.find-us-content { display: flex; gap: 2rem; align-items: flex-start; }
.find-us-left { display: flex; flex-direction: column; gap: 1rem; flex: 0 0 420px; }
.find-us-content iframe { flex: 1; min-width: 0; height: 380px; border-radius: 10px; box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.info-card { display: flex; align-items: flex-start; gap: 1rem; background: rgba(20,20,20,0.75); border-radius: 12px; padding: 1.1rem 1.25rem; backdrop-filter: blur(4px); }
.info-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; min-width: 42px; background: var(--green); border-radius: 8px; }
.info-icon svg { width: 22px; height: 22px; fill: var(--white); }
.info-card h3 { font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.info-card address, .info-card p { font-style: normal; font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.directions-btn { display: block; text-align: center; background: var(--green); color: var(--white); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.85rem 2rem; border-radius: 50px; margin-top: 0.5rem; transition: background 0.2s ease, transform 0.2s ease; }
.directions-btn:hover { background: #00a86e; transform: translateY(-2px); }

/* ---------- Facilities ---------- */
.facilities { padding-top: 3rem; padding-bottom: 2rem; }
.facilities-list { padding: 0; }
.facility-item { margin-bottom: 2.5rem; text-align: left; }
.facility-item img { max-width: 600px; width: 90%; margin: 0 auto 1rem; }
.facility-item p { max-width: 620px; margin: 0 auto; font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; }

@media (max-width: 820px) {
  .facility-item p {
    width: min(620px, calc(100% - 2rem));
  }
}

@media (max-width: 480px) {
  .facility-item p {
    width: min(620px, calc(100% - 1.5rem));
  }
}

/* ---------- Beer Animation ---------- */
.beer-section { position: relative; width: 100%; height: 380px; overflow: hidden; background: var(--bg); margin: 0; }
.beer-stage { position: absolute; inset: 0; }
.bl-liquid { position: absolute; bottom: 0; left: 0; width: 100%; height: 0; object-fit: cover; object-position: top center; z-index: 1; }
.beer-section.pour-active .bl-liquid { height: 100%; transition: height 2.8s ease; }
.bl-liquid-reset { transition: none !important; height: 0 !important; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .bl-liquid {
    height: 100%;
    transform: translateY(100%);
  }

  .beer-section.pour-active .bl-liquid {
    transform: translateY(0);
    transition: transform 2.8s ease;
  }

  .bl-liquid-reset {
    height: 100% !important;
    transform: translateY(100%) !important;
    transition: none !important;
  }

  .beer-section { height: 220px; }
}
@media (max-width: 480px) {
  .beer-section { height: 180px; }
}