*, *::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; }
  body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--text); min-height: 100vh; }

  /* NAV */
  nav { position: sticky; top: 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.97); border-bottom: 1px solid rgba(193,122,43,0.3); 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 a.active { color: var(--amber-light); border-bottom: 2px solid var(--amber); padding-bottom: 2px; }
  .nav-links .order-link { background: var(--amber); color: var(--dark); padding: 8px 16px; border-radius: 4px; font-weight: 700; }
  .nav-links .order-link:hover { background: var(--amber-light); color: var(--dark); }
  .nav-right { display: flex; align-items: center; height: 90px; }
  .nav-back { color: var(--text); text-decoration: none; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; transition: color .2s; border: 1px solid rgba(193,122,43,0.3); padding: 8px 14px; border-radius: 4px; }
  .nav-back:hover { color: var(--amber-light); border-color: var(--amber); }

  /* HERO BANNER */
  .hh-hero { background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%); padding: 70px 5% 60px; border-bottom: 1px solid rgba(193,122,43,0.3); position: relative; overflow: hidden; }
  .hh-hero::before { content: '🍺'; position: absolute; right: 5%; top: 50%; transform: translateY(-50%); font-size: 12rem; opacity: 0.05; line-height: 1; }
  .hh-hero-inner { max-width: 800px; }
  .hh-eyebrow { font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 4px; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
  .hh-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--amber-dark); max-width: 60px; }
  .hh-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--cream); line-height: 1.05; margin-bottom: 16px; }
  .hh-hero h1 em { font-style: normal; color: var(--amber-light); }
  .hh-hero p { color: var(--text); font-size: 1.1rem; max-width: 500px; line-height: 1.7; }
  .hh-time-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--amber); color: var(--dark); font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 22px; border-radius: 30px; margin-top: 24px; }

  /* DAY FILTER */
  .day-filter { padding: 30px 5% 0; max-width: 1300px; margin: 0 auto; display: flex; gap: 8px; flex-wrap: wrap; }
  .day-btn { padding: 9px 20px; border-radius: 30px; font-size: 0.78rem; 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; }
  .day-btn.active, .day-btn:hover { background: var(--amber); color: var(--dark); border-color: var(--amber); }

  /* CARDS */
  .hh-content { max-width: 1300px; margin: 0 auto; padding: 40px 5% 80px; }
  .hh-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
  .hh-card { background: var(--dark2); border-radius: 12px; overflow: hidden; border: 1px solid rgba(193,122,43,0.15); transition: transform .3s, box-shadow .3s; }
  .hh-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: rgba(193,122,43,0.35); }
  .hh-card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
  .hh-card-img-placeholder { width: 100%; height: 220px; background: var(--dark3); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
  .hh-card-header { background: linear-gradient(90deg, var(--amber-dark), var(--amber)); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
  .hh-card-day { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); }
  .hh-card-time { font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 600; color: rgba(14,10,5,0.8); background: rgba(245,237,216,0.25); padding: 3px 10px; border-radius: 20px; }
  .hh-card-body { padding: 22px; }
  .hh-card-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--cream); margin-bottom: 16px; }
  .hh-deals { display: flex; flex-direction: column; gap: 8px; }
  .hh-deal { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text); line-height: 1.5; }
  .hh-deal::before { content: '🍺'; font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }

  /* TODAY HIGHLIGHT */
  .hh-card.today { border-color: var(--amber); box-shadow: 0 0 0 2px var(--amber), 0 20px 50px rgba(193,122,43,0.2); }
  .today-badge { background: var(--amber); color: var(--dark); font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 0 0 8px 8px; text-align: center; }

  /* LOADING */
  .loading { text-align: center; padding: 80px 20px; }
  .spinner { width: 44px; height: 44px; border: 3px solid rgba(193,122,43,0.2); border-top-color: var(--amber); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 16px; }
  @keyframes spin { to { transform: rotate(360deg); } }

  footer { background: #080503; padding: 30px 5%; border-top: 1px solid rgba(193,122,43,0.2); text-align: center; }
  footer p { font-size: 0.8rem; color: rgba(180,160,120,0.5); }
  footer a { color: var(--amber); text-decoration: none; }

  /* CHAT */
  #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; 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) {
    .nav-center { display: none; }
    .nav-logo img { height: 90px; width: 90px; }
    .hh-grid { grid-template-columns: 1fr; }
    #chat-panel { width: calc(100vw - 32px); }
  }