:root {
  --bg: #090607;
  --bg-2: #130b0c;
  --panel: #191012;
  --panel-2: #211417;
  --text: #fff7ec;
  --muted: #b8a9a1;
  --line: rgba(255, 247, 236, 0.13);
  --amber: #ffbd55;
  --gold: #f7d37a;
  --red: #ff3f4d;
  --cyan: #4ee3ff;
  --green: #25d366;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 63, 77, 0.08), transparent 24rem),
    radial-gradient(circle at top, rgba(255, 189, 85, 0.08), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 65%);
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(9, 6, 7, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(247, 211, 122, 0.6);
  background: #0a0707;
  color: var(--gold);
  box-shadow: 0 0 26px rgba(255, 189, 85, 0.2);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.94rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.header-cta {
  display: none;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.12);
  color: #dfffe9;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 7.5rem clamp(1rem, 5vw, 5rem) 3rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 6, 7, 0.95) 0%, rgba(9, 6, 7, 0.68) 46%, rgba(9, 6, 7, 0.25) 100%),
    linear-gradient(0deg, #090607 0%, rgba(9, 6, 7, 0.18) 42%, rgba(9, 6, 7, 0.4) 100%);
}

.hero-content {
  width: min(760px, 100%);
  max-width: min(342px, calc(100vw - 2rem));
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.location-info h2,
.qr-section h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(4.2rem, 18vw, 10.5rem);
  line-height: 0.86;
  text-shadow: 0 0 34px rgba(255, 63, 77, 0.32);
}

.hero-copy {
  width: min(560px, 100%);
  margin: 1.25rem 0 0;
  color: rgba(255, 247, 236, 0.86);
  font-size: clamp(1.08rem, 3.8vw, 1.45rem);
  font-weight: 700;
}

.hero-actions,
.location-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.btn,
.promo-card a,
.events-list a,
.social-actions a,
.quick-links a,
.quick-links button {
  min-height: 3.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0.86rem 1.05rem;
  color: var(--text);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.promo-card a:hover,
.events-list a:hover,
.social-actions a:hover,
.quick-links a:hover,
.quick-links button:hover {
  transform: translateY(-2px);
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), #ff8a3d 58%, var(--gold));
  color: #170707;
  box-shadow: 0 18px 48px rgba(255, 63, 77, 0.26);
}

.btn.ghost {
  border-color: rgba(255, 247, 236, 0.3);
  background: rgba(255, 247, 236, 0.08);
  backdrop-filter: blur(10px);
}

.btn.ghost.dark {
  background: rgba(0, 0, 0, 0.18);
}

.btn.subtle {
  color: var(--gold);
  background: rgba(247, 211, 122, 0.09);
  border-color: rgba(247, 211, 122, 0.25);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 0.65rem;
  width: min(342px, calc(100vw - 2rem));
  margin-top: 1.65rem;
}

.hero-stats span {
  min-width: 0;
  min-height: 4.2rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 247, 236, 0.13);
  background: rgba(255, 247, 236, 0.07);
  color: var(--muted);
  font-size: 0.78rem;
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-size: 1.25rem;
}

.scroll-cue {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 1.25rem;
  color: rgba(255, 247, 236, 0.65);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 3rem;
  margin-top: 0.7rem;
  background: linear-gradient(var(--gold), transparent);
}

.quick-links {
  position: sticky;
  top: 4.25rem;
  z-index: 40;
  display: flex;
  gap: 0.55rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  overflow-x: auto;
  background: rgba(9, 6, 7, 0.88);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.quick-links a,
.quick-links button {
  flex: 0 0 auto;
  min-height: 2.65rem;
  border-color: rgba(255, 247, 236, 0.14);
  background: rgba(255, 247, 236, 0.06);
  color: var(--muted);
  font-size: 0.84rem;
}

.menu-shell,
.events-section,
.about-section,
.location-section,
.qr-section {
  padding: 4.5rem clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.about-copy h2,
.location-info h2,
.qr-section h2 {
  font-size: clamp(2.35rem, 9vw, 5.2rem);
  line-height: 0.94;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.qr-section p {
  color: var(--muted);
  font-size: 1rem;
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(255, 247, 236, 0.72);
}

.menu-tools {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.search-box {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  background: var(--panel);
  border: 1px solid var(--line);
}

.search-box span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 2.6rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
}

.search-box input::placeholder {
  color: rgba(184, 169, 161, 0.72);
}

.filter-highlight {
  border: 1px solid var(--line);
  background: rgba(255, 247, 236, 0.06);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.filter-highlight {
  min-height: 4.4rem;
}

.filter-highlight[aria-pressed="true"] {
  border-color: rgba(255, 189, 85, 0.65);
  background: rgba(255, 189, 85, 0.16);
  color: var(--gold);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.menu-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.4rem 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-grid {
  display: grid;
  gap: 0.9rem;
}

.menu-card {
  position: relative;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 0.85rem;
  min-height: 150px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(33, 20, 23, 0.98), rgba(15, 10, 11, 0.98));
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.menu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 189, 85, 0.35);
  box-shadow: var(--shadow);
}

.menu-card img {
  width: 104px;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.menu-card.no-image {
  grid-template-columns: 1fr;
}

.menu-card.no-image .menu-card-body {
  padding-left: 1rem;
}

.menu-card-body {
  display: grid;
  gap: 0.55rem;
  align-content: center;
  padding: 0.9rem 0.9rem 0.9rem 0;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.65rem;
}

.menu-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.08;
}

.price {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.04rem;
  font-weight: 1000;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0 0.52rem;
  border: 1px solid rgba(255, 189, 85, 0.28);
  background: rgba(255, 189, 85, 0.09);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.category-pill {
  color: rgba(184, 169, 161, 0.8);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-link {
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(37, 211, 102, 0.42);
  background: rgba(37, 211, 102, 0.12);
  padding: 0 0.7rem;
  color: #dfffe9;
  font-size: 0.78rem;
  font-weight: 1000;
}

.empty-state {
  border: 1px solid rgba(255, 63, 77, 0.25);
  background: rgba(255, 63, 77, 0.08);
  padding: 1rem;
  color: #ffd8dd;
  font-weight: 800;
}

.promo-band {
  padding: 4.5rem clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, rgba(255, 63, 77, 0.26), rgba(255, 189, 85, 0.14) 45%, rgba(78, 227, 255, 0.08)),
    #130809;
  border-block: 1px solid rgba(255, 247, 236, 0.14);
}

.promo-grid {
  display: grid;
  gap: 1rem;
}

.promo-card {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 1rem;
  border: 1px solid rgba(255, 247, 236, 0.14);
  background:
    linear-gradient(180deg, rgba(9, 6, 7, 0.04), rgba(9, 6, 7, 0.88)),
    url("assets/ambience/sunset-toast.jpg") center/cover;
  box-shadow: var(--shadow);
}

.promo-card.intense {
  background:
    linear-gradient(180deg, rgba(9, 6, 7, 0.05), rgba(9, 6, 7, 0.9)),
    url("assets/ambience/bar-night-talk.jpg") center/cover;
}

.promo-card.amber {
  background:
    linear-gradient(180deg, rgba(9, 6, 7, 0.05), rgba(9, 6, 7, 0.92)),
    url("assets/ambience/house-products.jpg") center/cover;
}

.promo-card span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-card h3 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.7rem, 7vw, 2.7rem);
  line-height: 0.98;
}

.promo-card p {
  color: rgba(255, 247, 236, 0.78);
}

.promo-card a {
  justify-self: start;
  min-height: 2.75rem;
  background: rgba(255, 247, 236, 0.1);
  backdrop-filter: blur(10px);
}

.events-list {
  display: grid;
  gap: 0.75rem;
}

.events-list article {
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.events-list time {
  display: grid;
  place-items: center;
  height: 3.4rem;
  background: #110b0c;
  color: var(--gold);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.events-list strong,
.events-list span {
  display: block;
}

.events-list span {
  color: var(--muted);
  font-size: 0.86rem;
}

.events-list a {
  min-height: 2.4rem;
  padding: 0 0.75rem;
  color: var(--gold);
  font-size: 0.8rem;
}

.about-section {
  display: grid;
  gap: 1.6rem;
  background: #0d0809;
}

.about-copy {
  align-self: center;
}

.social-actions a {
  min-height: 2.75rem;
  color: var(--gold);
  background: rgba(247, 211, 122, 0.08);
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.about-gallery img:first-child {
  grid-row: span 2;
  height: 100%;
}

.location-section {
  display: grid;
  gap: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 189, 85, 0.08), transparent 25rem),
    var(--bg-2);
}

.location-info dl {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
}

.location-info dl div {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.location-info dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-info dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.map-frame {
  min-height: 340px;
  border: 1px solid var(--line);
  background: #110b0c;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(0.88) invert(0.88) contrast(0.92);
}

.qr-section {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.qr-card {
  justify-self: start;
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(247, 211, 122, 0.32);
  background: #f9f2e7;
  color: #170707;
  box-shadow: var(--shadow);
}

.qr-card img {
  width: 210px;
  aspect-ratio: 1;
}

.qr-card figcaption {
  color: #3a2420;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.site-footer {
  display: grid;
  gap: 0.55rem;
  padding: 2.3rem clamp(1rem, 5vw, 5rem) 6.6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

.mobile-dock {
  position: fixed;
  left: 0.75rem;
  right: auto;
  bottom: 0.75rem;
  width: min(342px, calc(100vw - 1.5rem));
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  background: rgba(9, 6, 7, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

.mobile-dock a {
  min-width: 0;
  min-height: 2.8rem;
  display: grid;
  place-items: center;
  background: rgba(255, 247, 236, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 1000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 59;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 211, 102, 0.45);
  background: var(--green);
  color: #06210f;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.28);
}

.whatsapp-float span {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
}

.whatsapp-float::before {
  content: "WA";
  font-weight: 1000;
}

.section-observe {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 660px) {
  .hero-content {
    max-width: 760px;
  }

  .hero-stats {
    width: min(620px, 100%);
  }

  .hero-actions {
    display: flex;
  }

  .menu-tools {
    grid-template-columns: 1fr 12rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-section,
  .location-section,
  .qr-section {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    padding-bottom: 2.3rem;
  }

  .mobile-dock {
    display: none;
  }

  .whatsapp-float {
    bottom: 1.2rem;
  }
}

@media (min-width: 920px) {
  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .hero {
    min-height: 96vh;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-card {
    grid-template-columns: 1fr;
  }

  .menu-card img {
    width: 100%;
    height: 260px;
    min-height: 0;
  }

  .menu-card-body {
    min-height: 238px;
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
