/* Dine & Disc — public site.
   The room is brass, low light and magenta after midnight. The site
   reads like a supper-club menu card that occasionally turns the
   neon on. Mobile first: most people find this on a phone, at night,
   deciding where to go in the next twenty minutes. */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--c-base);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; margin: 0 auto; }

/* ---------------- Top bar ---------------- */
.s-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--c-base) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.s-nav.stuck { border-bottom-color: var(--c-line); }
.s-nav .inner {
  display: flex; align-items: center; gap: 16px;
  padding: 13px 20px; max-width: 1120px; margin: 0 auto;
}
.s-nav .brand {
  font-family: var(--f-display); font-size: 23px; text-decoration: none;
  line-height: 1; white-space: nowrap;
}
.s-nav .brand .amp { color: var(--c-brass); font-style: italic; }
.s-nav .brand .b { color: var(--c-neon); }
.s-nav .brand img { max-height: 36px; }
.s-nav .spacer { flex: 1; }

.s-links { display: none; gap: 24px; }
.s-links a {
  text-decoration: none; font-size: 14.5px; font-weight: 500;
  color: var(--c-muted); transition: color .2s;
}
.s-links a:hover, .s-links a.on { color: var(--c-text); }

.s-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--c-neon); color: #2A0416;
  text-decoration: none; font-weight: 700; font-size: 14px;
  padding: 10px 18px; border-radius: 999px; white-space: nowrap;
}
.s-cta.ghost { background: transparent; border: 1px solid var(--c-brass); color: var(--c-brass); }

.burger {
  appearance: none; border: 1px solid var(--c-line); background: var(--c-surface);
  color: var(--c-text); width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; cursor: pointer; font-size: 17px;
}
@media (min-width: 900px) {
  .s-links { display: flex; }
  .burger { display: none; }
}

.s-drawer {
  position: fixed; inset: 0 0 0 auto; width: 280px; max-width: 82vw; z-index: 70;
  background: var(--c-surface); border-left: 1px solid var(--c-line);
  padding: 22px 18px; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.3,.8,.3,1); overflow-y: auto;
}
.s-drawer.open { transform: none; }
.s-drawer a {
  display: block; padding: 13px 12px; border-radius: 10px;
  text-decoration: none; color: var(--c-muted); font-size: 16px; font-weight: 500;
}
.s-drawer a:hover, .s-drawer a.on { background: var(--c-raised); color: var(--c-text); }
.s-scrim {
  position: fixed; inset: 0; z-index: 60; background: rgba(8,5,12,.7);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.s-scrim.on { opacity: 1; pointer-events: auto; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: flex-end;
  padding: 90px 0 60px; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--c-base) 55%, transparent) 0%,
    color-mix(in srgb, var(--c-base) 30%, transparent) 40%,
    var(--c-base) 100%);
}
/* No photo yet? The room is dark and lit by two lamps anyway. */
.hero-media.empty {
  background:
    radial-gradient(60rem 40rem at 15% 10%, color-mix(in srgb, var(--c-brass) 22%, transparent), transparent 60%),
    radial-gradient(50rem 36rem at 88% 20%, color-mix(in srgb, var(--c-neon) 20%, transparent), transparent 58%),
    var(--c-base);
}
.hero-media.empty::after { background: none; }

.hero .wrap { position: relative; z-index: 1; }

.hero .kicker {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-brass); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero .kicker::before {
  content: ""; width: 34px; height: 1px; background: var(--c-brass);
}
.hero h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(40px, 10vw, 82px); line-height: 1.02;
  margin: 0 0 18px; max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--c-brass); }
.hero p.lede {
  font-size: clamp(16px, 2.4vw, 19px); color: var(--c-muted);
  max-width: 46ch; margin: 0 0 28px;
}
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }

.open-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--c-muted); margin-top: 26px;
}
.open-badge i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-success);
  animation: breathe 2.4s ease-in-out infinite;
}
.open-badge.shut i { background: var(--c-danger); animation: none; }
@keyframes breathe { 0%,100% { opacity: 1 } 50% { opacity: .3 } }

/* ---------------- Sections ---------------- */
.sec { padding: 74px 0; }
.sec.tight { padding: 48px 0; }

.sec-label {
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-brass); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.sec-label::after { content: ""; flex: 1; height: 1px; background: var(--c-line); }

h2.sec-title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(29px, 5.6vw, 46px); line-height: 1.1;
  margin: 0 0 14px; max-width: 20ch;
}
h2.sec-title em { font-style: italic; color: var(--c-brass); }
p.sec-lede { color: var(--c-muted); max-width: 54ch; margin: 0 0 34px; font-size: 16.5px; }

/* ---------------- The three pillars ---------------- */
.pillars { display: grid; gap: 16px; }
@media (min-width: 780px) { .pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: 18px; padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.pillar:hover { border-color: var(--c-brass); transform: translateY(-3px); }
.pillar .n {
  font-family: var(--f-display); font-size: 46px; line-height: 1;
  color: color-mix(in srgb, var(--c-brass) 35%, transparent);
  margin-bottom: 14px;
}
.pillar h3 { font-family: var(--f-display); font-weight: 400; font-size: 24px; margin: 0 0 8px; }
.pillar p { color: var(--c-muted); font-size: 14.5px; margin: 0; }

/* ---------------- Menu preview ---------------- */
.dish-strip {
  display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.dish-tile {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: 16px; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.dish-tile:hover { border-color: var(--c-brass); transform: translateY(-3px); }
.dish-tile .ph {
  aspect-ratio: 4 / 3; background: var(--c-raised);
  display: grid; place-items: center; color: var(--c-line); font-size: 30px;
}
.dish-tile img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.dish-tile .body { padding: 15px 16px 17px; }
.dish-tile .nm {
  display: flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 15.5px; margin-bottom: 3px;
}
.dish-tile .ds {
  color: var(--c-muted); font-size: 13px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dish-tile .pr {
  font-family: var(--f-display); font-size: 19px; color: var(--c-brass); margin-top: 9px;
}

.vmark {
  width: 13px; height: 13px; border: 1.5px solid; border-radius: 3px;
  display: inline-grid; place-items: center; flex: 0 0 auto;
}
.vmark::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.vmark.veg, .vmark.vegan { color: #4ADE80; }
.vmark.non_veg { color: #FB5D5D; }
.vmark.egg { color: #FBBF24; }
.vmark.beverage { color: #60A5FA; }
.vmark.hookah { color: #A78BFA; }

/* ---------------- Full menu ---------------- */
.menu-rail {
  position: sticky; top: 62px; z-index: 40;
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding: 12px 0; margin-bottom: 8px;
  background: color-mix(in srgb, var(--c-base) 94%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.menu-rail::-webkit-scrollbar { display: none; }
.menu-rail a {
  flex: 0 0 auto; text-decoration: none;
  background: var(--c-surface); border: 1px solid var(--c-line);
  color: var(--c-muted); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; font-weight: 600;
}
.menu-rail a:hover { border-color: var(--c-brass); color: var(--c-text); }

.menu-group { padding-top: 44px; scroll-margin-top: 130px; }
.menu-group h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 30px; margin: 0 0 4px;
}
.menu-group .gd { color: var(--c-muted); font-size: 14px; margin: 0 0 20px; }

.menu-list { display: grid; gap: 0; }
.menu-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 17px 0; border-bottom: 1px solid var(--c-line);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row .mi { flex: 1; min-width: 0; }
.menu-row .mn {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-weight: 600; font-size: 16.5px;
}
.menu-row .md { color: var(--c-muted); font-size: 14px; margin-top: 3px; }
/* Dotted leader between the dish and its price, like a printed card */
.menu-row .dots {
  flex: 1; border-bottom: 1px dotted color-mix(in srgb, var(--c-line) 130%, transparent);
  margin: 0 4px 6px; min-width: 20px;
}
.menu-row .mp {
  font-family: var(--f-display); font-size: 20px; color: var(--c-brass); white-space: nowrap;
}
.menu-row .mimg {
  width: 72px; height: 72px; border-radius: 11px; object-fit: cover; flex: 0 0 auto;
}

.tag {
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px;
}
.tag.chef { background: color-mix(in srgb, var(--c-brass) 18%, transparent); color: var(--c-brass); }
.tag.best { background: color-mix(in srgb, var(--c-neon) 18%, transparent); color: var(--c-neon); }

/* ---------------- Gallery ---------------- */
.grid-gallery {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.grid-gallery figure {
  margin: 0; border-radius: 14px; overflow: hidden;
  background: var(--c-surface); position: relative;
}
.grid-gallery img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.grid-gallery figure:hover img { transform: scale(1.05); }
/* Break the grid so it does not read like a spreadsheet of squares */
.grid-gallery figure:nth-child(6n+1) { grid-column: span 2; }
.grid-gallery figure:nth-child(6n+1) img { aspect-ratio: 2 / 1.32; }

/* ---------------- Events ---------------- */
.event-list { display: grid; gap: 14px; }
@media (min-width: 780px) { .event-list { grid-template-columns: repeat(2, 1fr); } }
.event-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-neon);
  border-radius: 16px; padding: 20px;
}
.event-card .when {
  text-align: center; flex: 0 0 auto; min-width: 58px;
  padding-right: 16px; border-right: 1px solid var(--c-line);
}
.event-card .when .d { font-family: var(--f-display); font-size: 30px; line-height: 1; }
.event-card .when .m {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-brass);
}
.event-card h3 { font-size: 18px; margin: 0 0 4px; }
.event-card p { color: var(--c-muted); font-size: 14px; margin: 0; }
.event-card .artist { color: var(--c-brass); font-size: 13.5px; margin-top: 6px; }

/* ---------------- Forms ---------------- */
.form-card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: 18px; padding: clamp(22px, 4vw, 34px);
}
.f-grid { display: grid; gap: 15px; }
@media (min-width: 620px) { .f-grid.two { grid-template-columns: 1fr 1fr; } }

.f-field label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px;
}
.f-field .hint { color: var(--c-muted); font-weight: 400; font-size: 12.5px; }
.f-field input, .f-field select, .f-field textarea {
  width: 100%; padding: 13px 14px; font-size: 16px;
  background: var(--c-base); border: 1px solid var(--c-line);
  border-radius: 11px; color: var(--c-text); font-family: inherit;
}
.f-field textarea { min-height: 96px; resize: vertical; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  outline: none; border-color: var(--c-brass);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-brass) 18%, transparent);
}

.check-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.check-tile {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  background: var(--c-base); border: 1px solid var(--c-line);
  border-radius: 11px; padding: 13px 14px; font-size: 14px; font-weight: 600;
  transition: border-color .2s;
}
.check-tile:has(input:checked) { border-color: var(--c-brass); color: var(--c-brass); }
.check-tile input { width: 17px; height: 17px; accent-color: var(--c-neon); }

.btn-submit {
  appearance: none; border: 0; cursor: pointer; width: 100%;
  background: var(--c-neon); color: #2A0416;
  border-radius: 12px; padding: 16px; font-size: 16px; font-weight: 700;
}
.btn-submit:hover { filter: brightness(1.08); }

.notice {
  padding: 14px 17px; border-radius: 12px; margin-bottom: 20px;
  border-left: 3px solid; font-size: 15px;
}
.notice.good {
  background: color-mix(in srgb, var(--c-success) 10%, transparent);
  border-color: var(--c-success); color: var(--c-success);
}
.notice.bad {
  background: color-mix(in srgb, var(--c-danger) 10%, transparent);
  border-color: var(--c-danger); color: var(--c-danger);
}

/* ---------------- Info strip ---------------- */
.info-grid { display: grid; gap: 22px; }
@media (min-width: 780px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-block .k {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-brass); margin-bottom: 8px;
}
.info-block .v { font-size: 15.5px; line-height: 1.7; }
.info-block .v a { color: var(--c-text); text-decoration: none; border-bottom: 1px solid var(--c-line); }
.info-block .v a:hover { border-color: var(--c-brass); }

.map-frame {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--c-line);
  aspect-ratio: 16 / 10; background: var(--c-surface);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------------- Footer ---------------- */
.s-foot {
  border-top: 1px solid var(--c-line);
  padding: 52px 0 34px; margin-top: 40px;
}
.foot-grid { display: grid; gap: 30px; }
@media (min-width: 780px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.s-foot .brand { font-family: var(--f-display); font-size: 26px; line-height: 1; margin-bottom: 10px; }
.s-foot .brand .amp { color: var(--c-brass); font-style: italic; }
.s-foot .brand .b { color: var(--c-neon); }
.s-foot p { color: var(--c-muted); font-size: 14px; margin: 0 0 8px; max-width: 38ch; }
.s-foot .fh {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-brass); margin-bottom: 12px;
}
.s-foot ul { list-style: none; padding: 0; margin: 0; }
.s-foot li { margin-bottom: 8px; }
.s-foot li a { color: var(--c-muted); text-decoration: none; font-size: 14.5px; }
.s-foot li a:hover { color: var(--c-text); }
.foot-base {
  margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--c-line);
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  color: var(--c-muted); font-size: 12.5px;
}
.foot-base .spacer { flex: 1; }

/* Floating WhatsApp — the way most bookings actually happen here */
.wa-fab {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 55; display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #04240F; text-decoration: none;
  padding: 13px 19px; border-radius: 999px; font-weight: 700; font-size: 14.5px;
  box-shadow: 0 10px 28px rgba(0,0,0,.4);
}

/* ---------------- Reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
