/* ==========================================================================
   Highway House — main stylesheet
   Palette: parchment #EDE3CF / parchment-dark #E4D8C0 / forest #2D5A3D
            charcoal #2C2418 / brown #6B5A45 / border #D0C4AA
   Display face: Georgia, serif   Body face: Arial, Helvetica, sans-serif
   ========================================================================== */

:root {
  --parchment: #EDE3CF;
  --parchment-dark: #E4D8C0;
  --forest: #2D5A3D;
  --forest-light: #A8C8A0;
  --sage: #C8DCC0;
  --charcoal: #2C2418;
  --brown: #6B5A45;
  --brown-dark: #4A3A2A;
  --border-warm: #D0C4AA;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--charcoal);
  font-family: var(--font-body);
}

a { color: inherit; }

img { max-width: 100%; height: auto; display: block; }

.hh-wrap { min-height: 100vh; background: var(--parchment); font-family: var(--font-body); }

/* ---------- Nav ---------- */
.hh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--forest);
  background: var(--parchment);
}
.hh-nav-inner {
  display: flex;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.hh-logo-link { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.hh-logo-word {
  color: var(--charcoal);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
}
.hh-logo-sub {
  margin-top: 3px;
  color: var(--forest);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hh-nav-links { display: flex; align-items: center; gap: 2rem; flex-wrap: nowrap; }
.hh-nav-a {
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.hh-nav-btn {
  padding: 0.55rem 1.3rem;
  background: var(--forest);
  color: var(--parchment);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}

/* Menu dropdown (Full Menu / Bloody Marys) */
.hh-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  /* Stretch to the full nav-bar height (not just the text) so there's
     no dead vertical zone between the link and the dropdown — without
     this, the mouse exits the hover area before reaching the panel. */
  align-self: stretch;
}
.hh-dropdown {
  display: none;
  position: absolute;
  /* Flush against the trigger (no margin gap) so the hover area is
     continuous — a gap here is what let the mouse "lose" the menu on
     the way down to the panel. */
  top: 100%;
  left: 0;
  z-index: 110;
  flex-direction: column;
  min-width: 160px;
  padding: 0.5rem 0;
  border: 1px solid var(--border-warm);
  border-top: 2px solid var(--forest);
  background: var(--parchment);
  box-shadow: 0 8px 20px rgba(44, 36, 24, 0.15);
}
.hh-nav-item:hover .hh-dropdown,
.hh-nav-item:focus-within .hh-dropdown,
.hh-dropdown.is-open {
  display: flex;
}
.hh-dropdown-a {
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.hh-dropdown-a a {
  display: block;
  padding: 0.5rem 1.1rem;
  color: inherit;
  text-decoration: none;
}
.hh-dropdown-a a:hover { background: var(--sage); }

/* ---------- Hero (home) ---------- */
.hh-hero {
  position: relative;
  display: flex;
  min-height: 88vh;
  padding: 4rem 2rem;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--forest);
  background: var(--parchment);
  text-align: center;
}
.hh-hero-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.75rem 1.25rem;
  background: var(--forest);
  color: var(--parchment);
  text-align: center;
  font-family: var(--font-body);
}
.hh-badge-label { color: var(--forest-light); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.hh-badge-time { margin-top: 2px; font-size: 1rem; font-weight: 900; }
.hh-badge-note { margin-top: 2px; color: var(--sage); font-size: 0.65rem; letter-spacing: 0.1em; }
.hh-hero-eyebrow {
  margin-bottom: 1.5rem;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hh-hero-h1 {
  margin: 0 0 1rem;
  color: var(--charcoal);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.hh-hero-h1-green { color: var(--forest); }
.hh-hero-sub {
  max-width: 520px;
  margin: 1.5rem auto 2.5rem;
  color: var(--brown);
  font-size: 1.1rem;
  line-height: 1.7;
}
.hh-hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.hh-btn-primary {
  padding: 0.9rem 2.2rem;
  background: var(--forest);
  color: var(--parchment);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}
.hh-btn-secondary {
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}

/* ---------- Posters section (home) ---------- */
.hh-posters {
  padding: 5rem 2rem;
  background: var(--forest);
}
.hh-posters-inner { max-width: 1200px; margin: 0 auto; }
.hh-posters-eyebrow {
  margin-bottom: 0.5rem;
  color: var(--forest-light);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.hh-posters-title {
  margin: 0 0 0.5rem;
  color: var(--parchment);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  font-family: var(--font-display);
}
.hh-posters-sub { margin: 0 0 3rem; color: var(--sage); font-size: 0.95rem; text-align: center; }
.hh-posters-grid {
  display: grid;
  align-items: start;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
}
.hh-poster-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hh-poster { display: block; width: 100%; height: auto; max-width: 480px; box-shadow: 0 8px 40px rgba(0,0,0,0.35); }
.hh-poster-label { color: var(--forest-light); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.hh-poster-cta {
  margin-top: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--parchment);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}

/* ---------- Daily specials (home) ---------- */
.hh-specials { padding: 5rem 2rem; background: var(--parchment-dark); }
.hh-specials-inner { max-width: 1200px; margin: 0 auto; }
.hh-specials-eyebrow {
  margin-bottom: 0.5rem;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.hh-specials-title {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
  font-family: var(--font-display);
}
.hh-specials-rule { width: 48px; height: 3px; margin: 1.25rem 0 2.5rem; background: var(--forest); }
.hh-specials-cards {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.hh-specials-card { padding: 2.5rem; border-top: 3px solid var(--forest); background: var(--parchment); }
.hh-specials-card-eyebrow {
  margin-bottom: 0.75rem;
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hh-specials-card-title { margin: 0 0 1.25rem; color: var(--charcoal); font-size: 1.5rem; font-weight: 900; font-family: var(--font-display); }

/* Shared row pattern (used on home specials cards, menu, breakfast, happy hour) */
.hh-row {
  display: flex;
  padding: 0.5rem 0;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border-warm);
  gap: 1rem;
}
.hh-row-name { color: var(--charcoal); font-size: 0.9rem; font-weight: 500; }
.hh-row-price { margin-left: 1rem; color: var(--forest); font-size: 1rem; font-weight: 700; white-space: nowrap; }
.hh-row-note { margin-top: 0.35rem; color: var(--brown); font-size: 0.8rem; line-height: 1.4; }

/* ---------- About (home) ---------- */
.hh-about { padding: 4rem 2rem; background: var(--forest); }
.hh-about-inner {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}
.hh-about-h2 { margin: 0 0 1.25rem; color: var(--parchment); font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; font-weight: 900; font-family: var(--font-display); }
.hh-about-p { margin: 0; color: var(--sage); font-size: 1rem; line-height: 1.8; }
.hh-about-stats { display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr; }
.hh-stat-num { color: var(--parchment); font-size: 2.5rem; line-height: 1; font-weight: 900; font-family: var(--font-display); }
.hh-stat-label { margin-top: 0.25rem; color: var(--forest-light); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* ---------- Info: hours + location (home) ---------- */
.hh-info { background: var(--parchment); }
.hh-info-top {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  align-items: start;
  gap: 5rem;
  grid-template-columns: 1fr 1fr;
}
.hh-col-eyebrow { margin-bottom: 0.6rem; color: var(--forest); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; }
.hh-col-title { margin: 0 0 1.75rem; color: var(--charcoal); font-size: 2rem; line-height: 1; font-weight: 900; font-family: var(--font-display); }
.hh-hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.hh-hours-item {
  grid-column: span 2;
  display: flex;
  padding: 0.7rem 1rem;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-warm);
  background: var(--parchment-dark);
}
.hh-hours-day { color: var(--brown); font-size: 0.82rem; }
.hh-hours-time { color: var(--charcoal); font-size: 0.88rem; font-weight: 700; }
.hh-hours-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.5rem;
  background: var(--forest);
  color: var(--parchment);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hh-address-block { margin-bottom: 1.75rem; }
.hh-address { margin: 0; color: var(--charcoal); font-size: 1.05rem; line-height: 1.9; }
.hh-phone { display: block; margin-bottom: 1.5rem; color: var(--forest); font-size: 2rem; font-weight: 900; text-decoration: none; font-family: var(--font-display); }
.hh-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hh-cta {
  padding: 0.75rem 1.5rem;
  background: var(--forest);
  color: var(--parchment);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}
.hh-cta-outline {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}

/* ---------- Footer ---------- */
.hh-footer { padding: 3rem 2rem; border-top: 2px solid var(--forest); background: var(--charcoal); }
.hh-footer-inner {
  display: grid;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  gap: 3rem;
  grid-template-columns: 2fr 1fr 1fr;
}
.hh-footer-brand { color: var(--parchment); font-size: 1.2rem; font-weight: 900; letter-spacing: 0.1em; font-family: var(--font-display); }
.hh-footer-tagline { margin-top: 0.5rem; color: var(--brown); font-size: 0.8rem; line-height: 1.5; }
.hh-footer-col-title { margin-bottom: 1rem; color: var(--forest-light); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; }
.hh-footer-a { display: block; margin-bottom: 0.5rem; color: var(--sage); font-size: 0.88rem; text-decoration: none; }
.hh-footer-bottom {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #3C3020;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hh-footer-copy { color: var(--brown-dark); font-size: 0.78rem; }
.hh-footer-addr { color: var(--brown-dark); font-size: 0.78rem; text-align: right; }

/* ---------- Callout box (e.g. Bloody Mary substitutions) ---------- */
.hh-callout { margin: 0 0 3.5rem; padding: 2rem 2.5rem; border-top: 3px solid var(--forest); background: var(--parchment-dark); }
.hh-callout-title { margin: 0 0 1rem; color: var(--charcoal); font-size: 1.1rem; font-weight: 900; font-family: var(--font-display); }
.hh-callout-line { margin: 0 0 0.5rem; color: var(--brown); font-size: 0.9rem; line-height: 1.6; }
.hh-callout-line:last-child { margin-bottom: 0; }

/* ---------- Interior page header (Menu / Breakfast / Happy Hour) ---------- */
.hh-body { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.hh-page-eyebrow { margin-bottom: 0.5rem; color: var(--forest); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; }
.hh-page-title { margin: 0; color: var(--charcoal); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; font-weight: 900; font-family: var(--font-display); }
.hh-page-note { margin: 0.75rem 0 0; color: var(--brown); font-size: 0.9rem; }
.hh-page-rule { width: 48px; height: 3px; margin: 1.25rem 0 3.5rem; background: var(--forest); }

/* ---------- Menu & Breakfast category grids ---------- */
.hh-cat { margin-bottom: 3.5rem; }
.hh-cat-title {
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--forest);
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.hh-grid { display: grid; gap: 1px; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.hh-item { display: flex; padding: 1.25rem 1.5rem; justify-content: space-between; align-items: flex-start; gap: 1rem; background: var(--parchment-dark); }
.hh-item-info { flex: 1 1 0%; }
.hh-item-name { margin-bottom: 0.3rem; color: var(--charcoal); font-size: 0.95rem; font-weight: 700; }
.hh-item-desc { color: var(--brown); font-size: 0.82rem; line-height: 1.5; }
.hh-item-price { margin-top: 2px; color: var(--forest); font-size: 1rem; font-weight: 700; white-space: nowrap; font-family: var(--font-display); }

/* ---------- Happy Hour page ---------- */
.hh-day-grid { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 3.5rem; }
.hh-day-card { padding: 1.5rem; border-top: 3px solid var(--forest); background: var(--parchment-dark); }
.hh-day-name { margin-bottom: 0.85rem; color: var(--charcoal); font-size: 1.1rem; font-weight: 900; font-family: var(--font-display); }
.hh-deal { display: flex; padding: 0.4rem 0; justify-content: space-between; border-bottom: 1px solid var(--border-warm); }
.hh-deal-name { color: var(--brown); font-size: 0.85rem; }
.hh-deal-price { color: var(--forest); font-size: 0.9rem; font-weight: 700; font-family: var(--font-display); }
.hh-sec-title { margin: 0 0 1.5rem; color: var(--charcoal); font-size: 1.4rem; font-weight: 900; font-family: var(--font-display); }
.hh-food-grid { display: grid; gap: 1px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); margin-bottom: 3.5rem; }
.hh-food-item { display: flex; padding: 1.1rem 1.4rem; justify-content: space-between; align-items: flex-start; gap: 1rem; background: var(--parchment-dark); }
.hh-food-info { flex: 1 1 0%; }
.hh-food-name { margin-bottom: 0.3rem; color: var(--charcoal); font-size: 0.92rem; font-weight: 700; }
.hh-food-desc { color: var(--brown); font-size: 0.82rem; line-height: 1.5; }
.hh-food-price { color: var(--forest); font-size: 1rem; font-weight: 700; white-space: nowrap; font-family: var(--font-display); }
.hh-drinks-grid { display: grid; gap: 1px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.hh-drink-item { padding: 1.25rem 1.5rem; background: var(--parchment-dark); }
.hh-drink-name { margin-bottom: 0.3rem; color: var(--charcoal); font-size: 0.95rem; font-weight: 700; }
.hh-drink-desc { color: var(--brown); font-size: 0.82rem; line-height: 1.5; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hh-about-inner,
  .hh-info-top,
  .hh-posters-grid { grid-template-columns: 1fr; }
  .hh-footer-inner { grid-template-columns: 1fr; }
  .hh-nav-links { gap: 1rem; }
  .hh-nav-a { display: none; }
  .hh-hero-badge { position: static; margin: 0 auto 2rem; display: inline-block; }
}
@media (max-width: 600px) {
  .hh-footer-bottom { flex-direction: column; align-items: flex-start; }
  .hh-footer-addr { text-align: left; }
}
