/**
 * Hamburger Bros — monochrome: deep black + white only.
 */

:root {
  --hb-body-font: "Lora", Georgia, serif;
  --hb-heading-font: "Poppins", system-ui, sans-serif;
  --hb-black: #000000;
  --hb-black-deep: #030303;
  --hb-black-shine: #0a0a0a;
  --hb-white: #ffffff;
}

html {
  scroll-padding-top: calc(var(--gwt-site-navbar-offset, 0px) + 100px);
}

body.hb-nav-open {
  overflow: hidden;
}

body.hb {
  margin: 0;
  font-family: var(--hb-body-font);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  background: var(--hb-black-deep);
  background-image: linear-gradient(
    165deg,
    var(--hb-black-shine) 0%,
    var(--hb-black-deep) 38%,
    var(--hb-black) 62%,
    #050505 100%
  );
  background-attachment: fixed;
  padding-bottom: 0;
}

body.hb h1,
body.hb h2,
body.hb h3,
body.hb h4,
body.hb h5,
body.hb h6,
body.hb .hb-heading {
  font-family: var(--hb-heading-font);
  color: var(--hb-white);
  font-weight: 500;
}

.hb-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.hb-skip:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--hb-black);
  color: var(--hb-white);
  z-index: 20000;
}

/* ——— Header ——— */
#hb-header.hb-header {
  position: sticky;
  top: var(--gwt-site-navbar-offset, 0px);
  z-index: 1030;
  background: linear-gradient(180deg, #0c0c0c 0%, var(--hb-black) 100%);
  color: var(--hb-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hb-header__top {
  display: none;
  justify-content: space-between;
  padding: 0.35rem 1.25rem;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .hb-header__top {
    display: flex;
  }
}

.hb-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}

.hb-logo {
  text-decoration: none;
  color: var(--hb-white);
  font-family: var(--hb-heading-font);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.hb-logo span {
  color: var(--hb-white);
  font-weight: 700;
}

.hb-nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem 1.5rem;
}
@media (min-width: 992px) {
  .hb-nav-desktop {
    display: flex;
  }
}

.hb-nav-desktop a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-family: var(--hb-heading-font);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.hb-nav-desktop a:hover,
.hb-nav-desktop a:focus-visible {
  color: var(--hb-white);
  border-bottom-color: var(--hb-white);
}

.hb-nav-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--hb-white);
  padding: 0.45rem 0.85rem;
  font-family: var(--hb-heading-font);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}
@media (min-width: 992px) {
  .hb-nav-toggle {
    display: none;
  }
}

.hb-nav-toggle__icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hb-nav-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

#hb-nav-panel {
  background: var(--hb-black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
#hb-nav-panel[hidden] {
  display: none !important;
}

.hb-nav-panel__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hb-nav-panel__inner a {
  color: var(--hb-white);
  text-decoration: none;
  font-family: var(--hb-heading-font);
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hb-nav-panel__inner a:hover {
  color: var(--hb-white);
  opacity: 0.85;
}

/* ——— Hero ——— */
.hb-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--hb-white);
  background-color: var(--hb-black);
  background-size: cover;
  background-position: center;
}
.hb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.82) 55%,
    rgba(0, 0, 0, 0.92) 100%
  );
}
.hb-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 2rem 1.25rem;
}
.hb-hero__pretitle {
  font-family: var(--hb-heading-font);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}
.hb-hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.35rem);
  line-height: 1.15;
  color: var(--hb-white);
  margin: 0 0 1rem;
  font-weight: 500;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hb-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.75rem;
}
.hb-btn {
  display: inline-block;
  font-family: var(--hb-heading-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border: 2px solid var(--hb-white);
  color: var(--hb-white);
  background: transparent;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.hb-btn:hover {
  background: var(--hb-white);
  color: var(--hb-black);
}
.hb-btn--light {
  border-color: var(--hb-white);
  color: var(--hb-white);
}
.hb-btn--light:hover {
  background: var(--hb-white);
  color: var(--hb-black);
}

/* ——— Sections ——— */
.hb-section {
  padding: 3.5rem 0;
}
@media (min-width: 992px) {
  .hb-section {
    padding: 4.5rem 0;
  }
}
.hb-section--soft {
  background: var(--hb-black);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hb-section--dark {
  background: var(--hb-black);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.hb-section--dark h2,
.hb-section--dark h3,
.hb-section--dark .hb-heading {
  color: var(--hb-white);
}
.hb-subtitle {
  font-family: var(--hb-heading-font);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
}
.hb-title {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--hb-white);
}
.hb-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 40rem;
}
.hb-lead--emphasis {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
}
.hb-section--dark .hb-lead {
  color: rgba(255, 255, 255, 0.82);
}

.hb-heading-block {
  font-family: var(--hb-heading-font);
  color: var(--hb-white);
}

.hb-contact-link {
  color: var(--hb-white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.hb-contact-link:hover {
  color: var(--hb-white);
  opacity: 0.9;
}

/* ——— Feature row ——— */
.hb-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.hb-feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-white);
  font-size: 1.35rem;
  opacity: 0.9;
}
.hb-feature h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--hb-white);
}
.hb-feature p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ——— Menu cards ——— */
.hb-menu-card {
  background: var(--hb-black);
  border: 1px solid rgba(255, 255, 255, 0.22);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hb-menu-card:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hb-menu-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hb-black);
}
.hb-menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02);
}
.hb-menu-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hb-menu-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.hb-menu-card__head h3 {
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.3;
  color: var(--hb-white);
}
.hb-menu-card__price {
  font-family: var(--hb-heading-font);
  font-weight: 600;
  color: var(--hb-white);
  white-space: nowrap;
  font-size: 0.95rem;
}
.hb-menu-card__desc {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
}

/* ——— Combos ——— */
.hb-combo-card {
  background: var(--hb-black);
  border-radius: 0;
  border: 2px solid var(--hb-white);
  padding: 1.75rem 1.5rem;
  height: 100%;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.hb-combo-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--hb-white);
}
.hb-combo-card .hb-combo-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--hb-white);
  font-family: var(--hb-heading-font);
  margin-bottom: 0.75rem;
}
.hb-combo-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ——— Gallery ——— */
.hb-gallery-cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--hb-black);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hb-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(100%) contrast(1.05);
}
.hb-gallery-cell:hover img {
  transform: scale(1.04);
}

/* ——— Parallax ——— */
.hb-parallax {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
}
@media (min-width: 992px) {
  .hb-parallax {
    background-attachment: fixed;
  }
}
.hb-parallax__inner {
  position: relative;
  z-index: 1;
  padding: 4rem 1.25rem;
  text-align: center;
  color: var(--hb-white);
  background: rgba(0, 0, 0, 0.78);
}
.hb-parallax .hb-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.hb-parallax h2 {
  color: var(--hb-white);
}

/* ——— Contact ——— */
.hb-contact-block {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.88);
}
.hb-contact-block:last-child {
  border-bottom: none;
}
.hb-contact-block strong {
  display: block;
  font-family: var(--hb-heading-font);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hb-white);
  margin-bottom: 0.35rem;
}
.hb-map-embed {
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  filter: grayscale(100%) contrast(1.05);
}
.hb-map-note {
  color: rgba(255, 255, 255, 0.6);
}

/* ——— Footer ——— */
.hb-footer {
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--hb-black);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hb-footer h5 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--hb-white);
}
.hb-footer p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}
.hb-footer-social {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hb-footer-social a {
  color: var(--hb-white);
  font-size: 1.1rem;
  opacity: 0.75;
}
.hb-footer-social a:hover {
  color: var(--hb-white);
  opacity: 1;
}
.hb-copyright {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.hb-gwt-strip {
  text-align: center;
  padding: 1.75rem 1rem 4.85rem;
  font-size: 0.85rem;
  background: var(--hb-black);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
@media (max-width: 575.98px) {
  .hb-gwt-strip {
    padding-bottom: 5.25rem;
  }
}
.hb-gwt-btn {
  display: inline-block;
  margin: 0.25rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.hb-gwt-btn--primary {
  background: var(--hb-white);
  color: var(--hb-black);
  border: 1px solid var(--hb-white);
}
.hb-gwt-btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--hb-white);
  background: transparent;
}
.hb-gwt-btn--primary:hover {
  background: transparent;
  color: var(--hb-white);
}
.hb-gwt-btn--outline:hover {
  background: var(--hb-white);
  color: var(--hb-black);
}

/* ——— Floating CTA ——— */
.hb-float-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1040;
  max-width: min(320px, calc(100vw - 28px));
  padding: 0.75rem 1.1rem;
  font-family: var(--hb-heading-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--hb-black);
  background: var(--hb-white);
  border: 2px solid var(--hb-white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.hb-float-cta:hover {
  color: var(--hb-white);
  background: var(--hb-black);
  border-color: var(--hb-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.75);
}
@media (max-width: 575.98px) {
  .hb-float-cta {
    right: 10px;
    left: 10px;
    max-width: none;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body.hb {
    background-attachment: scroll;
  }
  .hb-gallery-cell:hover img {
    transform: none;
  }
}
