/* ===== HAPPY'S TAKE OUT — BRAND STYLES ===== */
:root {
  --navy:  #143B5C;
  --blue:  #4D7FA6;
  --red:   #B7442D;
  --brick: #8E3027;
  --gold:  #C99B4D;
  --cream: #F2E4BC;
  --berry: #254D91;
  --white: #ffffff;
  --dark:  #0d2236;
  --muted: #5a6a78;
  --radius: 8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: 'Lato', Arial, sans-serif; background: var(--cream); color: var(--navy); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== SITE HEADER / NAV ===== */
.hn-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hn-nav {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.hn-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.hn-brand img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.hn-brand-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: .01em; }
.hn-links { display: flex; gap: 8px; list-style: none; }
.hn-links a { color: rgba(255,255,255,0.85); font-size: .88rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 8px 14px; border-radius: 4px; text-decoration: none; transition: background .15s, color .15s; }
.hn-links a:hover, .hn-links a.active { background: rgba(255,255,255,0.1); color: var(--gold); }
.hn-cta { background: var(--red); color: var(--white) !important; border-radius: 999px; padding: 8px 20px !important; }
.hn-cta:hover { background: var(--brick) !important; color: var(--white) !important; }
.hn-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hn-hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }
.hn-mobile-menu { display: none; background: var(--dark); padding: 16px 24px; }
.hn-mobile-menu a { display: block; color: rgba(255,255,255,0.85); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; font-size: .9rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); text-decoration: none; }
.hn-mobile-menu a:last-child { border-bottom: none; }

/* ===== SITE FOOTER ===== */
.hn-footer { background: var(--dark); color: rgba(255,255,255,0.7); text-align: center; padding: 36px 24px; font-size: .88rem; line-height: 1.8; }
.hn-footer strong { color: var(--white); }
.hn-footer a { color: var(--gold); }
.hn-footer-rule { width: 60px; height: 2px; background: var(--gold); margin: 16px auto; border-radius: 2px; }

/* ===== COMMON ===== */
.hn-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.hn-wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.hn-section { padding: 68px 0; }
.hn-section-cream { background: var(--cream); }
.hn-section-white { background: var(--white); }
.hn-section-navy { background: var(--navy); color: var(--white); }
.hn-section-blue { background: var(--blue); color: var(--white); }
.hn-eyebrow { display: block; font-size: .75rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; font-family: 'Lato', sans-serif; }
.hn-section-navy .hn-eyebrow, .hn-section-blue .hn-eyebrow { color: var(--gold); }
.hn-h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.15; }
.hn-h2 { font-family: 'Lato', sans-serif; font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900; line-height: 1.2; }
.hn-h3 { font-family: 'Lato', sans-serif; font-size: 1.05rem; font-weight: 700; }
.hn-lede { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-top: 12px; }
.hn-section-navy .hn-lede, .hn-section-blue .hn-lede { color: rgba(255,255,255,0.8); }
.hn-center { text-align: center; }
.hn-rule { width: 60px; height: 3px; background: var(--gold); margin: 20px 0; border-radius: 2px; }
.hn-center .hn-rule { margin: 20px auto; }
.hn-btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Lato', sans-serif; font-weight: 900; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; padding: 14px 30px; border-radius: 999px; text-decoration: none; transition: all .18s; border: 2px solid transparent; cursor: pointer; }
.hn-btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.hn-btn-red:hover { background: var(--brick); border-color: var(--brick); color: var(--white); text-decoration: none; }
.hn-btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.hn-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); text-decoration: none; }
.hn-btn-cream { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.hn-btn-cream:hover { background: var(--white); color: var(--navy); border-color: var(--white); text-decoration: none; }

/* ===== HERO ===== */
.hn-hero { background: var(--navy); color: var(--white); text-align: center; padding: 70px 24px 80px; }
.hn-hero-logo { width: 190px; height: 190px; border-radius: 50%; object-fit: cover; margin: 0 auto 30px; border: 4px solid var(--gold); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.hn-hero .hn-h1 { color: var(--white); }
.hn-hero .hn-h1 em { color: var(--gold); font-style: normal; }
.hn-hero-tagline { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin: 14px auto 0; max-width: 480px; font-style: italic; }
.hn-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ===== INFO STRIP ===== */
.hn-strip { background: var(--blue); color: var(--white); padding: 18px 24px; }
.hn-strip-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; font-family: 'Lato', sans-serif; font-size: .92rem; font-weight: 700; }
.hn-strip-item { display: flex; align-items: center; gap: 8px; }
.hn-strip-item a { color: var(--white); text-decoration: none; }
.hn-strip-item a:hover { color: var(--gold); }
.hn-strip-sep { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

/* ===== STORY TEASER ===== */
.hn-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hn-story-box { background: var(--navy); color: var(--white); border-radius: 12px; padding: 36px; border-left: 4px solid var(--gold); }
.hn-story-box p { font-size: .97rem; line-height: 1.8; color: rgba(255,255,255,0.85); margin-top: 12px; }

/* ===== MENU HIGHLIGHTS ===== */
.hn-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.hn-highlight-card { background: var(--white); border-radius: 10px; padding: 26px 18px 22px; text-align: center; border: 1px solid rgba(20,59,92,0.1); transition: transform .18s, box-shadow .18s; }
.hn-highlight-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(20,59,92,0.12); }
.hn-highlight-icon { font-size: 2.4rem; margin-bottom: 12px; }
.hn-highlight-card h3 { font-size: 1rem; font-weight: 900; color: var(--navy); }
.hn-highlight-card .price { font-size: .95rem; font-weight: 900; color: var(--red); letter-spacing: .03em; margin: 6px 0; text-transform: uppercase; font-family: 'Lato', sans-serif; }
.hn-highlight-card p { font-size: .82rem; color: var(--muted); line-height: 1.5; margin-top: 4px; }
.hn-highlight-card a { display: inline-block; margin-top: 14px; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }

/* ===== EVENTS TEASER ===== */
.hn-events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 40px; }
.hn-event-card { border-radius: 10px; padding: 26px 20px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.07); }
.hn-event-card .icon { font-size: 2rem; margin-bottom: 10px; }
.hn-event-card h3 { font-size: .95rem; font-weight: 900; color: var(--gold); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.hn-event-card p { font-size: .85rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ===== PARK NOTE ===== */
.hn-park-note { background: var(--cream); border: 1px solid var(--gold); border-left: 4px solid var(--gold); border-radius: 8px; padding: 22px 26px; display: flex; align-items: flex-start; gap: 16px; margin-top: 44px; }
.hn-park-note .icon { font-size: 1.8rem; flex-shrink: 0; }
.hn-park-note p { font-size: .92rem; line-height: 1.7; color: var(--navy); }

/* ===== FULL MENU PAGE ===== */
.hn-menu-jump { background: var(--navy); padding: 16px 24px; position: sticky; top: 64px; z-index: 90; overflow-x: auto; }
.hn-menu-jump-inner { display: flex; gap: 6px; max-width: 1100px; margin: 0 auto; white-space: nowrap; }
.hn-menu-jump a { color: rgba(255,255,255,0.7); font-size: .78rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; text-decoration: none; transition: all .15s; border: 1px solid rgba(255,255,255,0.2); flex-shrink: 0; }
.hn-menu-jump a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hn-menu-category { margin-bottom: 52px; }
.hn-menu-category:last-child { margin-bottom: 0; }
.hn-category-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.hn-category-title { font-family: 'Lato', sans-serif; font-size: 1.3rem; font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.hn-category-line { flex: 1; height: 1px; background: var(--gold); }
.hn-menu-items { display: grid; gap: 0; }
.hn-menu-item { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(20,59,92,0.08); }
.hn-menu-item:last-child { border-bottom: none; }
.hn-item-left { flex: 1; }
.hn-item-name { font-family: 'Lato', sans-serif; font-size: .97rem; font-weight: 700; color: var(--navy); }
.hn-item-desc { font-size: .84rem; color: var(--muted); margin-top: 2px; line-height: 1.5; }
.hn-item-price { font-family: 'Lato', sans-serif; font-size: .95rem; font-weight: 900; color: var(--red); white-space: nowrap; letter-spacing: .02em; flex-shrink: 0; }
.hn-ice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; margin-top: 4px; }
.hn-ice-item { font-size: .88rem; color: var(--navy); padding: 8px 12px; background: rgba(20,59,92,0.05); border-radius: 6px; font-family: 'Lato', sans-serif; }
.hn-menu-note { text-align: center; margin-top: 36px; font-size: .85rem; color: var(--muted); font-style: italic; padding: 16px; border-top: 1px solid var(--gold); }

/* ===== ABOUT PAGE ===== */
.hn-bios { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 44px; }
.hn-bio { background: var(--white); border-radius: 10px; padding: 28px; border-top: 4px solid var(--gold); }
.hn-bio h3 { font-size: 1.1rem; font-weight: 900; color: var(--navy); }
.hn-bio .role { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin: 4px 0 12px; font-family: 'Lato', sans-serif; }
.hn-bio p { font-size: .92rem; color: var(--muted); line-height: 1.75; }

/* ===== EVENTS PAGE ===== */
.hn-events-list { margin-top: 36px; }
.hn-no-events { text-align: center; padding: 48px 24px; border: 2px dashed rgba(20,59,92,0.2); border-radius: 12px; }
.hn-no-events p { color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.hn-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 44px; }
.hn-contact-info { display: flex; flex-direction: column; gap: 28px; }
.hn-contact-block h3 { font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--red); font-family: 'Lato', sans-serif; margin-bottom: 8px; }
.hn-contact-block p, .hn-contact-block a { font-size: 1rem; color: var(--navy); line-height: 1.7; text-decoration: none; }
.hn-contact-block a:hover { color: var(--red); }
.hn-map { border-radius: 10px; overflow: hidden; border: 3px solid var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.hn-map iframe { width: 100%; height: 340px; border: none; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hn-links { display: none; }
  .hn-hamburger { display: block; }
  .hn-highlights { grid-template-columns: 1fr 1fr; }
  .hn-story { grid-template-columns: 1fr; gap: 28px; }
  .hn-bios { grid-template-columns: 1fr; }
  .hn-contact-grid { grid-template-columns: 1fr; }
  .hn-section { padding: 48px 0; }
  .hn-strip-inner { gap: 16px; font-size: .82rem; }
  .hn-strip-sep { display: none; }
}
@media (max-width: 480px) {
  .hn-highlights { grid-template-columns: 1fr; }
  .hn-hero { padding: 50px 20px 60px; }
  .hn-hero-logo { width: 150px; height: 150px; }
}
