*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root { --amber: #C17A2B; --amber-light: #E8A44A; --amber-dark: #8B5A1F; --cream: #F5EDD8; --dark: #0E0A05; --dark2: #1A1208; --dark3: #241A0C; --text: #D4C4A0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }

  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: flex-start; justify-content: space-between; padding: 0 5%; height: 90px; background: rgba(14,10,5,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(193,122,43,0.25); overflow: visible; }
  .nav-logo { display: flex; align-items: flex-start; text-decoration: none; }
  .nav-logo img { height: 130px; width: 130px; border-radius: 50%; border: 3px solid var(--amber); object-fit: cover; box-shadow: 0 0 0 4px #0E0A05, 0 0 0 7px #8B5A1F, 0 10px 40px rgba(0,0,0,0.7); position: relative; z-index: 1001; margin-top: 20px; }
  .nav-center { display: flex; align-items: center; height: 90px; }
  .nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
  .nav-links a { color: var(--text); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: color .2s; }
  .nav-links a:hover { color: var(--amber-light); }
  .nav-links .order-link { background: var(--amber); color: var(--dark); padding: 8px 18px; border-radius: 4px; font-weight: 700; }
  .nav-links .order-link:hover { background: var(--amber-light); color: var(--dark); }
  .nav-links .beer-club-link { background: rgba(193,122,43,0.15); color: var(--amber-light); padding: 6px 14px; border-radius: 4px; font-weight: 700; border: 1px solid rgba(193,122,43,0.35); }
  .nav-links .beer-club-link:hover { background: rgba(193,122,43,0.25); color: var(--amber-light); }
  .nav-right { display: flex; align-items: center; height: 90px; }
  .nav-cta { background: var(--amber); color: var(--dark); border: none; padding: 10px 24px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: background .2s; }
  .nav-cta:hover { background: var(--amber-light); }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; align-items: center; justify-content: center; height: 90px; z-index: 1002; }
  .nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--cream); transition: all .3s; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { position: fixed; top: 90px; left: 0; right: 0; background: rgba(14,10,5,0.98); backdrop-filter: blur(12px); z-index: 999; border-bottom: 1px solid rgba(193,122,43,0.3); padding: 20px 5% 30px; display: none; flex-direction: column; gap: 4px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: var(--cream); text-decoration: none; font-size: 1.1rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 0; border-bottom: 1px solid rgba(193,122,43,0.12); transition: color .2s; display: block; }
  .mobile-menu a:hover { color: var(--amber-light); }
  .mobile-menu a.order-mobile { background: var(--amber); color: var(--dark); padding: 14px 20px; border-radius: 4px; text-align: center; margin-top: 10px; border-bottom: none; font-weight: 700; }
  .mobile-menu a.beer-club-mobile { background: rgba(193,122,43,0.15); color: var(--amber-light); padding: 14px 20px; border-radius: 4px; text-align: center; border: 1px solid rgba(193,122,43,0.35); margin-top: 6px; border-bottom: none; font-weight: 700; }
  .hero { position: relative; height: 100vh; min-height: 650px; overflow: hidden; }
  .hero-slides { display: flex; height: 100%; transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
  .hero-slide { min-width: 100%; height: 100%; position: relative; flex-shrink: 0; }
  .hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,10,5,0.72) 0%, rgba(14,10,5,0.4) 50%, rgba(14,10,5,0.2) 100%); }
  .hero-slide-overlay::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 260px; background: linear-gradient(to top, var(--dark), transparent); }
  .hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 20px; z-index: 2; }
  .hero-eyebrow { display: inline-block; font-family: 'Oswald', sans-serif; font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; color: var(--amber-light); margin-bottom: 1.2rem; border-top: 1px solid var(--amber); border-bottom: 1px solid var(--amber); padding: 4px 18px; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 6.5rem); line-height: 1.05; color: var(--cream); margin-bottom: 1.4rem; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
  .hero h1 em { font-style: normal; color: var(--amber-light); }
  .hero p { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text); max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.7; font-weight: 300; }
  .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary { background: var(--amber); color: var(--dark); padding: 15px 36px; border-radius: 4px; font-weight: 700; font-size: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all .2s; border: 2px solid var(--amber); display: inline-block; }
  .btn-primary:hover { background: var(--amber-light); border-color: var(--amber-light); }
  .btn-outline { background: transparent; color: var(--cream); padding: 15px 36px; border-radius: 4px; font-weight: 600; font-size: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border: 2px solid rgba(245,237,216,0.4); transition: all .2s; display: inline-block; }
  .btn-outline:hover { border-color: var(--cream); background: rgba(245,237,216,0.08); }
  .hero-prev, .hero-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 50px; height: 50px; border-radius: 50%; background: rgba(14,10,5,0.55); border: 1.5px solid rgba(193,122,43,0.4); color: var(--cream); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; backdrop-filter: blur(6px); }
  .hero-prev { left: 24px; } .hero-next { right: 24px; }
  .hero-prev:hover, .hero-next:hover { background: var(--amber); border-color: var(--amber); color: var(--dark); }
  .hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
  .hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(245,237,216,0.35); border: none; cursor: pointer; transition: all .25s; padding: 0; }
  .hero-dot.active { background: var(--amber); transform: scale(1.4); }
  /* BEER CLUB BANNER */
  .beer-club-banner { background: linear-gradient(90deg, #8B5A1F, #C17A2B, #8B5A1F); padding: .7rem 1.5rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 5; }
  .beer-club-banner p { font-size: 13px; font-weight: 700; color: #0E0A05; text-transform: uppercase; letter-spacing: .08em; }
  .beer-club-banner a { background: #0E0A05; color: var(--amber-light); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 7px 16px; border-radius: 4px; text-decoration: none; white-space: nowrap; }
  .beer-club-banner a:hover { background: #241A0C; }
  .carousel-section { background: var(--dark); padding: 80px 0 0; }
  .carousel-header { text-align: center; padding: 0 5% 50px; }
  .carousel-wrap { position: relative; overflow: hidden; }
  .carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
  .carousel-slide { min-width: 33.333%; padding: 0 8px; flex-shrink: 0; }
  .carousel-slide img { width: 100%; height: 340px; object-fit: cover; border-radius: 10px; display: block; }
  .carousel-slide .slide-caption { padding: 14px 4px 0; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--amber); font-family: 'Oswald', sans-serif; }
  .carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 30px 0 60px; }
  .carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(193,122,43,0.4); background: transparent; color: var(--amber-light); font-size: 1.1rem; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; }
  .carousel-btn:hover { background: var(--amber); border-color: var(--amber); color: var(--dark); }
  .carousel-dots { display: flex; gap: 8px; }
  .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(193,122,43,0.3); border: none; cursor: pointer; transition: background .2s, transform .2s; padding: 0; }
  .carousel-dot.active { background: var(--amber); transform: scale(1.3); }
  section { padding: 100px 5%; }
  .section-label { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--amber); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 12px; }
  .section-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, var(--amber-dark), transparent); max-width: 80px; }
  h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--cream); line-height: 1.15; margin-bottom: 1rem; }
  .lead { font-size: 1.1rem; line-height: 1.8; color: var(--text); max-width: 560px; }
  .story { background: var(--dark2); }
  .story-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .story-images { position: relative; height: 520px; }
  .story-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 80%; border-radius: 8px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
  .story-img-accent { position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; border-radius: 8px; overflow: hidden; border: 3px solid var(--dark2); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
  .story-img-main img, .story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
  .amber-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 90px; height: 90px; border-radius: 50%; overflow: hidden; z-index: 10; box-shadow: 0 0 0 6px var(--dark2), 0 0 0 8px var(--amber-dark); }
  .amber-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 2.5rem; }
  .stat { background: var(--dark3); border-radius: 8px; padding: 20px 24px; border-left: 3px solid var(--amber); }
  .stat-number { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--amber-light); font-weight: 900; line-height: 1; }
  .stat-label { font-size: 0.8rem; letter-spacing: 1px; color: var(--text); margin-top: 4px; text-transform: uppercase; }
  .food { background: var(--dark2); }
  .food-inner { max-width: 1200px; margin: 0 auto; }
  .food-intro { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; margin-bottom: 70px; }
  .food-image { border-radius: 10px; overflow: hidden; height: 420px; }
  .food-image img { width: 100%; height: 100%; object-fit: cover; }
  .food-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
  .menu-categories { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
  .menu-cat { padding: 8px 20px; border-radius: 30px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border: 1px solid rgba(193,122,43,0.3); color: var(--text); background: transparent; transition: all .2s; }
  .menu-cat.active, .menu-cat:hover { background: var(--amber); color: var(--dark); border-color: var(--amber); }
  .menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .menu-item { padding: 22px 0; border-bottom: 1px solid rgba(193,122,43,0.1); display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
  .menu-item:nth-child(odd) { padding-right: 40px; }
  .menu-item:nth-child(even) { padding-left: 40px; border-left: 1px solid rgba(193,122,43,0.1); }
  .menu-item-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--cream); margin-bottom: 5px; }
  .menu-item-desc { font-size: 0.85rem; color: var(--text); line-height: 1.6; }
  .menu-item-price { font-family: 'Oswald', sans-serif; font-size: 1.15rem; color: var(--amber-light); font-weight: 600; white-space: nowrap; }
  .experience { background: var(--dark); padding: 0; }
  .experience-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; min-height: 500px; }
  .exp-panel { position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 40px 36px; }
  .exp-panel-bg { position: absolute; inset: 0; transition: transform .6s ease; }
  .exp-panel:hover .exp-panel-bg { transform: scale(1.05); }
  .exp-panel-bg img { width: 100%; height: 100%; object-fit: cover; }
  .exp-panel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,10,5,0.92) 0%, rgba(14,10,5,0.3) 60%, rgba(14,10,5,0.1) 100%); }
  .exp-content { position: relative; z-index: 2; }
  .exp-icon { font-size: 2rem; margin-bottom: 10px; }
  .exp-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: 8px; }
  .exp-desc { font-size: 0.9rem; color: var(--text); line-height: 1.65; }
  .visit { background: var(--dark2); }
  .visit-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .info-block { margin-top: 40px; }
  .info-row { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
  .info-icon { font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
  .info-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
  .info-value { color: var(--cream); font-size: 0.95rem; line-height: 1.6; }
  .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 30px; margin-top: 8px; }
  .hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 6px 0; border-bottom: 1px solid rgba(193,122,43,0.1); color: var(--text); }
  .hours-row strong { color: var(--cream); }
  .visit-map { border-radius: 10px; overflow: hidden; height: 450px; border: 2px solid rgba(193,122,43,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
  .visit-map iframe { width: 100%; height: 100%; border: none; display: block; filter: invert(90%) hue-rotate(180deg) saturate(0.8); }
  .cta-bar { margin-top: 36px; background: var(--amber); border-radius: 8px; padding: 28px 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .cta-bar p { color: var(--dark); font-weight: 600; font-size: 1rem; }
  .cta-bar a { background: var(--dark); color: var(--cream); padding: 12px 28px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; transition: background .2s; text-transform: uppercase; }
  .cta-bar a:hover { background: var(--dark2); }
  footer { background: #080503; padding: 60px 5% 30px; border-top: 1px solid rgba(193,122,43,0.2); }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(193,122,43,0.1); }
  .footer-brand p { font-size: 0.88rem; color: var(--text); line-height: 1.75; max-width: 280px; }
  .footer-socials { display: flex; gap: 12px; margin-top: 20px; }
  .social-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(193,122,43,0.3); display: flex; align-items: center; justify-content: center; color: var(--text); text-decoration: none; font-size: 1rem; transition: all .2s; }
  .social-btn:hover { background: var(--amber); border-color: var(--amber); color: var(--dark); }
  .footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: var(--text); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--amber-light); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 0.8rem; color: rgba(180,160,120,0.5); }
  #chat-teaser { position: fixed; bottom: 90px; right: 20px; z-index: 9999; max-width: 280px; opacity: 0; transform: translateY(10px) scale(0.95); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
  #chat-teaser.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
  #chat-teaser.hidden { opacity: 0 !important; transform: translateY(10px) scale(0.95) !important; pointer-events: none !important; }
  .teaser-bubble { background: var(--dark2); border: 1.5px solid var(--amber); border-radius: 16px 16px 4px 16px; padding: 14px 36px 14px 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.55); position: relative; }
  .teaser-bubble::after { content: ''; position: absolute; bottom: -10px; right: 18px; width: 0; height: 0; border-left: 10px solid transparent; border-top: 10px solid var(--amber); }
  .teaser-bubble::before { content: ''; position: absolute; bottom: -8px; right: 19px; width: 0; height: 0; border-left: 9px solid transparent; border-top: 9px solid var(--dark2); z-index: 1; }
  .teaser-text { font-size: 0.88rem; color: var(--cream); line-height: 1.55; }
  .teaser-text strong { color: var(--amber-light); }
  .teaser-close { position: absolute; top: 8px; right: 10px; background: none; border: none; color: rgba(212,196,160,0.5); font-size: 1rem; cursor: pointer; }
  #custom-chat-btn { position: fixed; bottom: 16px; right: 16px; z-index: 9999; width: 64px; height: 64px; background: transparent; border: none; padding: 0; cursor: pointer; transition: transform .2s; }
  #custom-chat-btn:hover { transform: scale(1.1); }
  #custom-chat-btn img { width: 100%; height: 100%; object-fit: contain; display: block; }
  #chat-panel { position: fixed; bottom: 90px; right: 16px; z-index: 9998; width: 380px; height: 560px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); border: 1px solid rgba(193,122,43,0.3); display: none; flex-direction: column; }
  #chat-panel.open { display: flex; }
  #chat-panel iframe { width: 100%; flex: 1; border: none; }
  @media(max-width:900px) {
    .story-inner, .food-intro, .visit-inner { grid-template-columns: 1fr; gap: 40px; }
    .story-images { height: 320px; }
    .experience-grid { grid-template-columns: 1fr; }
    .exp-panel { min-height: 280px; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-item:nth-child(even) { padding-left: 0; border-left: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-center, .nav-right { display: none; }
    .nav-hamburger { display: flex; }
    .carousel-slide { min-width: 80%; }
    #chat-panel { width: calc(100vw - 32px); }
    .hero-prev { left: 12px; } .hero-next { right: 12px; }
    .nav-logo img { height: 90px; width: 90px; margin-top: 30px; }
    .visit-map { height: 320px; }
  }
  @media(max-width:600px) {
    section { padding: 70px 5%; }
    .footer-inner { grid-template-columns: 1fr; }
    .carousel-slide { min-width: 100%; }
    .food-btns { flex-direction: column; }
  }