/* =========================================================
   MIDTOWN EATS — Honolulu Food Hall
   Palette inspired by midtowneatshi.com (#c67033 terracotta)
   ========================================================= */

:root {
  --bg: #fbf7f2;
  --bg-2: #f3ebdf;
  --bg-dark: #2a1d12;
  --ink: #2a1d12;
  --ink-2: #4a3826;
  --ink-dim: #6b5946;
  --muted: #9c8a76;
  --line: #e3d4bf;
  --line-dark: #4a3826;
  --brand: #c67033;        /* official terracotta */
  --brand-deep: #a4521c;
  --brand-soft: #e7b683;
  --cream: #f5e7d3;
  --gold: #d8a85a;
  --radius: 6px;
  --shadow: 0 30px 60px -25px rgba(74, 56, 38, .25);
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-bold: "Bebas Neue", Impact, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; color: var(--brand); }

.kicker {
  font-family: var(--font-bold);
  letter-spacing: .3em;
  font-size: .8rem;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.muted { color: var(--ink-dim); font-size: .92rem; }

/* ---------------- NAV ---------------- */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 242, .92);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.5rem;
}
.brand-logo {
  display: flex; align-items: center;
  height: 56px;
}
.brand-logo img { height: 100%; width: auto; }

.nav-links { display:flex; gap:2rem; }
.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--brand); }
.nav-burger { display:none; background:none; border:0; cursor:pointer; padding:.5rem; }
.nav-burger span { display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; }

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: saturate(.9);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(251,247,242,.55) 0%, rgba(251,247,242,.85) 100%),
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(198,112,51,.18), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.hero-logo-mark {
  display: inline-block;
  margin-bottom: 2rem;
}
.hero-logo-mark img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 8px 30px rgba(198,112,51,.25));
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.hero-accent {
  color: var(--brand);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-2);
  max-width: 620px;
  margin-bottom: 2.2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding: .95rem 1.8rem;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, box-shadow .2s, border-color .2s;
  cursor: pointer; border: 0;
  border-radius: 2px;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(198,112,51,.5);
}
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(164,82,28,.6); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-sm { padding: .55rem 1rem; font-size: .75rem; background: transparent; color: var(--brand); border:1.5px solid var(--brand); }
.btn-sm:hover { background: var(--brand); color: #fff; }

.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--brand);
  font-weight: 600;
}
.hero-stats span { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--ink-dim); margin-top: .2rem; }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; font-size: 1.5rem; color: var(--brand);
  animation: bob 2s infinite;
}
@keyframes bob { 0%,100%{ transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ---------------- TICKER ---------------- */
.strip {
  background: var(--brand);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--brand-deep);
  border-bottom: 1px solid var(--brand-deep);
}
.ticker { overflow: hidden; }
.ticker-track {
  display: inline-flex; gap: 3rem;
  animation: scroll 80s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--font-bold);
  font-size: 1.2rem;
  letter-spacing: .25em;
  color: var(--cream);
}
.ticker-track .sep { color: var(--brand-soft); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- SECTION HEAD ---------------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.section-head .lede { color: var(--ink-dim); font-size: 1.05rem; }

/* ---------------- ABOUT ---------------- */
.about {
  padding: 4.5rem 1.5rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--ink);
}
.about-text p {
  color: var(--ink-2);
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
  max-width: 620px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.about-stat:hover { border-color: var(--brand); transform: translateY(-3px); }
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.about-stat span {
  display: block;
  font-family: var(--font-bold);
  letter-spacing: .25em;
  font-size: .72rem;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-top: .7rem;
}

/* ---------------- EVENTS ---------------- */
.events {
  padding: 4.5rem 1.5rem;
  max-width: 1320px;
  margin: 0 auto;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.event-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.4rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.event-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.event-date {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1rem .5rem;
  text-align: center;
}
.event-month {
  font-family: var(--font-bold);
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .9;
}
.event-day {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-top: .25rem;
}
.event-body { display: flex; flex-direction: column; }
.event-tag {
  font-family: var(--font-bold);
  font-size: .68rem;
  letter-spacing: .3em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--ink);
  line-height: 1.2;
}
.event-card p {
  color: var(--ink-dim);
  font-size: .92rem;
  margin-bottom: .6rem;
}
.event-time {
  margin-top: auto;
  font-size: .8rem;
  color: var(--brand-deep);
  font-weight: 600;
}
.events-note {
  text-align: center;
  color: var(--ink-dim);
  font-style: italic;
  font-size: .95rem;
}
.events-note a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.events-soon {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px dashed var(--brand);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
}
.events-soon-mark {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 6px 12px rgba(198,112,51,.25));
}
.events-soon h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: .8rem;
  color: var(--ink);
}
.events-soon p {
  color: var(--ink-dim);
  font-size: .98rem;
  line-height: 1.65;
}
.events-soon p a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------- FAQs ---------------- */
.faqs {
  padding: 4.5rem 1.5rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: .9rem;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item[open] {
  border-color: var(--brand);
  box-shadow: 0 12px 30px -16px rgba(74,56,38,.18);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brand);
  font-weight: 400;
  transition: transform .25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--brand-deep); }
.faq-item p {
  padding: 0 1.6rem 1.4rem;
  color: var(--ink-2);
  font-size: .96rem;
  line-height: 1.65;
}
.faq-item p a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

@media (max-width: 820px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .events-grid { grid-template-columns: 1fr; }
}

/* ---------------- VENDORS ---------------- */
.vendors {
  padding: 4.5rem 1.5rem;
  max-width: 1320px; margin: 0 auto;
}
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}
.vendor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .35s;
  position: relative;
  display: flex; flex-direction: column;
}
.vendor-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}
.vendor-art {
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  padding: .25rem;
  border-bottom: 1px solid var(--line);
}
.vendor-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(74,56,38,.12));
  transition: transform .4s ease;
}
.vendor-art.wide {
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  padding: .75rem .5rem;
}
.vendor-art.wide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.vendor-card:hover .vendor-art img { transform: scale(1.05); }

/* Wordmark for vendors without images */
.vendor-wordmark {
  text-align: center;
  font-family: var(--font-display);
  color: var(--brand-deep);
}
.vendor-wordmark .wm-line1 {
  font-family: var(--font-bold);
  font-size: .75rem;
  letter-spacing: .35em;
  color: var(--brand);
  margin-bottom: .5rem;
}
.vendor-wordmark .wm-line2 {
  font-size: 2rem;
  line-height: 1;
  font-style: italic;
  font-weight: 600;
}
.vendor-wordmark .wm-rule {
  width: 40px; height: 1px; background: var(--brand);
  margin: .8rem auto;
}
.vendor-wordmark .wm-line3 {
  font-family: var(--font-bold);
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--ink-dim);
}

.soon-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  background: var(--ink);
  color: var(--brand-soft);
  font-family: var(--font-bold);
  font-size: .7rem;
  letter-spacing: .25em;
  padding: .35rem .75rem;
  border-radius: 2px;
}

.vendor-body { padding: 1.6rem 1.4rem; flex: 1; display:flex; flex-direction:column; background: #fff; }
.vendor-cuisine {
  font-family: var(--font-bold);
  font-size: .72rem; letter-spacing: .3em;
  color: var(--brand);
  margin-bottom: .5rem;
  text-transform: uppercase;
}
.vendor-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--ink);
  line-height: 1.2;
}
.vendor-desc { font-size: .9rem; color: var(--ink-dim); flex: 1; }
.vendor-hours {
  margin-top: .8rem;
  padding: .55rem .8rem;
  background: var(--bg-2);
  border-left: 3px solid var(--brand);
  font-size: .8rem;
  color: var(--ink-2);
  font-weight: 500;
}
.modal-hours {
  display: inline-block;
  background: var(--bg-2);
  border-left: 3px solid var(--brand);
  padding: .6rem 1rem;
  font-size: .9rem;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
}
.modal-hours strong { color: var(--brand-deep); font-weight: 600; }
.vendor-cta {
  margin-top: 1.2rem;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  display: flex; align-items: center; gap: .4rem;
}
.vendor-cta::after { content: "→"; transition: transform .2s; }
.vendor-card:hover .vendor-cta::after { transform: translateX(5px); }

/* ---------------- BAR ---------------- */
.bar {
  background: #000;
  color: var(--cream);
  padding: 4.5rem 1.5rem;
}
.bar .kicker { color: var(--brand-soft); }
.bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 4rem; align-items: center;
}
.bar h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 1.2rem;
  color: #fff;
}
.bar-text > p { color: var(--brand-soft); max-width: 500px; }
.bar-menu { list-style: none; margin-top: 2rem; }
.bar-menu li {
  display: flex; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px dashed var(--line-dark);
  color: var(--cream);
}
.bar-menu b { color: var(--brand-soft); font-family: var(--font-bold); letter-spacing: .1em; font-weight: 400; }

.bar-visual { display: flex; justify-content: center; align-items: center; }
.bar-logo {
  max-width: 90%;
  max-height: 360px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(198,112,51,.35));
  object-fit: contain;
}
.cocktail {
  position: relative; width: 200px; height: 320px;
  filter: drop-shadow(0 20px 40px rgba(198,112,51,.4));
}
.cocktail .glass {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 140px solid rgba(231,182,131,.5);
}
.cocktail .glass::before {
  content:""; position:absolute; left:-90px; top:-140px;
  width: 180px; height: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,.3), rgba(231,182,131,.9), rgba(255,255,255,.3));
  border-radius: 50%;
}
.cocktail .stem {
  position: absolute; top: 140px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 130px;
  background: linear-gradient(180deg, rgba(231,182,131,.5), rgba(231,182,131,.2));
}
.cocktail .base {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 12px;
  background: rgba(231,182,131,.4);
  border-radius: 50%;
}
.cocktail .garnish {
  position: absolute; top: -10px; right: 30px;
  width: 24px; height: 24px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(198,112,51,.7);
}

/* ---------------- VISIT ---------------- */
.visit { padding: 4.5rem 1.5rem; max-width: 1320px; margin: 0 auto; }
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.visit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .3s, transform .3s;
}
.visit-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.visit-card p { color: var(--ink-dim); margin-bottom: .8rem; font-size: .95rem; }
.visit-card strong { color: var(--ink); }
.hours { list-style: none; margin: 1rem 0; }
.hours li { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.hours b { color: var(--brand); font-weight: 600; }
.social-row { display:flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.social-row a { color: var(--brand); font-size: .9rem; font-weight: 500; }
.social-row a:hover { color: var(--brand-deep); }

/* ---------------- INSTAGRAM FEED ---------------- */
.instagram {
  padding: 4rem 1.5rem 3rem;
  max-width: 1320px;
  margin: 0 auto;
}
.instagram-feed,
.instagram-feed-placeholder {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
.instagram-feed behold-widget {
  --behold-row-gap: 14px;
  --behold-column-gap: 14px;
  --behold-border-radius: 6px;
  display: block;
}
.ig-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep) 60%, #6b1d1d);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--line);
}
.ig-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 55%);
}
.ig-tile:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 50px -20px rgba(198,112,51,.5);
}
.ig-tile-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .8rem;
  color: var(--cream);
}
.ig-icon { font-size: 2.6rem; filter: drop-shadow(0 6px 12px rgba(0,0,0,.3)); }
.ig-label {
  font-family: var(--font-bold);
  font-size: 1rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.ig-note {
  text-align: center;
  margin-top: 1.6rem;
  font-size: .85rem;
  color: var(--ink-dim);
  letter-spacing: .05em;
  font-style: italic;
}
.instagram-cta {
  text-align: center;
}
@media (max-width: 700px) {
  .ig-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------- COMING SOON ---------------- */
.coming-soon {
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.coming-soon h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  color: var(--ink);
}
.coming-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 2rem;
  justify-content: center;
}
.coming-card {
  background: #fff;
  border: 1px dashed var(--brand);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
}
.coming-card::before {
  content: "Soon";
  position: absolute; top: 1rem; right: 1rem;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-bold);
  font-size: .7rem;
  padding: .25rem .7rem;
  border-radius: 2px;
  letter-spacing: .25em;
}
.coming-card .coming-mark {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.coming-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.coming-card p { color: var(--ink-dim); }

/* ---------------- FOOTER ---------------- */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  height: 110px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-inner h5 {
  font-family: var(--font-bold);
  letter-spacing: .25em;
  font-size: .85rem;
  color: var(--brand-soft);
  margin-bottom: 1rem;
}
.footer-inner ul { list-style: none; }
.footer-inner ul li { margin-bottom: .5rem; }
.footer-inner a { color: var(--cream); opacity: .75; font-size: .9rem; transition: opacity .2s, color .2s; }
.footer-inner a:hover { color: var(--brand-soft); opacity: 1; }
.footer-inner p { color: var(--cream); opacity: .75; font-size: .9rem; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  color: var(--muted); font-size: .8rem;
}

/* ---------------- MODAL ---------------- */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal.open { display: flex; animation: fadeIn .3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(42, 29, 18, .85);
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  max-width: 920px; width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: pop .35s cubic-bezier(.2,.9,.3,1.2);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
}
@keyframes pop { from { opacity: 0; transform: scale(.92) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.5rem; line-height: 1;
  cursor: pointer;
  transition: background .2s, transform .2s, color .2s;
}
.modal-close:hover { background: var(--brand); color: #fff; transform: rotate(90deg); border-color: var(--brand); }
.modal-body { overflow-y: auto; }
.modal-hero {
  height: 480px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: .25rem;
}
.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(74,56,38,.18));
}
.modal-hero.wide {
  height: 320px;
  padding: 1rem 2rem;
}
.modal-hero.wide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-hero .vendor-wordmark .wm-line2 { font-size: 2.6rem; }
.modal-content { padding: 2.5rem 2.5rem 3rem; }
.modal-content .vendor-cuisine { font-size: .85rem; }
.modal-content h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.modal-content > p { color: var(--ink-dim); margin-bottom: 2rem; }
.menu-section h4 {
  font-family: var(--font-bold);
  letter-spacing: .25em;
  font-size: .85rem;
  color: var(--brand);
  margin: 2rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item-name { font-weight: 600; font-size: 1rem; color: var(--ink); }
.menu-item-desc { color: var(--ink-dim); font-size: .85rem; margin-top: .2rem; }
.menu-item-price {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand);
  font-size: 1.05rem;
  white-space: nowrap;
  font-weight: 600;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  body.nav-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; padding: 2rem;
    border-bottom: 1px solid var(--line);
    gap: 1.2rem;
  }
  .bar-inner { grid-template-columns: 1fr; gap: 2rem; }
  .bar-visual { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats { gap: 2rem; }
  .hero-stats strong { font-size: 1.6rem; }
  .hero-logo-mark img { height: 100px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .modal-content { padding: 1.5rem; }
  .modal-hero { height: 160px; padding: 1.5rem; }
}
