:root {
  --bg: #0b0b0b;
  --paper: #111;
  --card: #161616;
  --accent: #ff6a1a;
  --accent-soft: rgba(255, 106, 26, 0.12);
  --text: #f7f5f2;
  --muted: #b4ada4;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow: 0 18px 40px rgba(0,0,0,0.33);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #141414 0%, #050505 55%, #000 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-bar {
  background: rgba(0,0,0,0.7);
  border-bottom: 1px solid rgba(247,245,242,0.08);
  text-align: center;
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  backdrop-filter: blur(6px);
}

.top-bar .no-cash {
  color: #ffe7d7;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(247,245,242,0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}


.logo {
  width: 115px;
  height: 115px;
  min-width: 115px;
  min-height: 115px;
  flex: 0 0 115px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  padding: 0.15rem;
}

.brand-name {
  font-weight: 700;
  font-size: 0.98rem;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.85rem;
  color: rgba(247,245,242,0.85);
}

.main-nav a:hover {
  color: #fff;
}

.btn {
  background: linear-gradient(130deg, #ff6a1a 0%, #ff9348 40%, #fff 130%);
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 106, 26, 0.35);
}

.btn-small {
  font-size: 0.78rem;
  padding: 0.45rem 0.75rem;
}

.hero {
  padding: 4rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #ffaa75;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

h1 {
  font-family: "Fraunces", "Inter", system-ui, sans-serif;
  font-size: clamp(2.3rem, 3.6vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 520px;
  color: rgba(247,245,242,0.8);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.ghost-link {
  color: #ffe7d7;
  font-weight: 500;
  font-size: 0.85rem;
}

.hero-hours {
  font-size: 0.78rem;
  color: rgba(247,245,242,0.55);
}

.hero-card {
  background: radial-gradient(circle at top, rgba(255,106,26,0.085), rgba(19,19,19,1));
  border: 1px solid rgba(255,106,26,0.25);
  border-radius: 1.35rem;
  padding: 1.4rem 1.3rem 1.6rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.hero-loc {
  color: rgba(247,245,242,0.8);
  margin-bottom: 1.2rem;
}

.hero-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.hero-list li {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(247,245,242,0.04);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
}

.hero-note {
  font-size: 0.7rem;
  color: rgba(247,245,242,0.5);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(255,106,26,0.06), rgba(5,5,5,1));
}

.section-head h2 {
  font-size: 2rem;
  margin-bottom: 0.45rem;
}

.section-head p {
  color: rgba(247,245,242,0.6);
  max-width: 460px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.menu-item {
  background: rgba(12,12,12,0.45);
  border: 1px solid rgba(247,245,242,0.03);
  border-radius: 1.1rem;
  padding: 1rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.menu-item p {
  margin: 0;
  color: rgba(247,245,242,0.6);
  font-size: 0.8rem;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0.8rem;
  color: #fff;
}

.menu-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(247,245,242,0.5);
}

.menu-filter {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.menu-filter button {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(247,245,242,0.08);
  color: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  cursor: pointer;
}

.menu-filter button.active {
  background: rgba(255,106,26,0.3);
  border-color: rgba(255,106,26,0.7);
}

.badges {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,106,26,0.23);
  border: 1px solid rgba(255,106,26,0.6);
  border-radius: 999px;
  padding: 0.15rem 0.75rem;
  font-size: 0.67rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-muted {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(247,245,242,0.03);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: flex-start;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
  display: grid;
  gap: 0.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.85rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9348;
  font-weight: 700;
}

.catering-card {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,106,26,0.2);
  border-radius: 1.1rem;
  padding: 1.1rem 1.2rem 1.25rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.small {
  font-size: 0.76rem;
  color: rgba(247,245,242,0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.contact-form {
  background: rgba(0,0,0,0.11);
  border: 1px solid rgba(247,245,242,0.02);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(247,245,242,0.05);
  border-radius: 0.7rem;
  padding: 0.55rem 0.6rem;
  color: #fff;
  font-size: 0.82rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(255,106,26,0.7);
  border-color: transparent;
}

.full {
  width: 100%;
  justify-content: center;
}

.form-hint {
  font-size: 0.7rem;
  color: rgba(247,245,242,0.4);
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(247,245,242,0.03);
  padding: 1.5rem 0 3rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(247,245,242,0.3);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 30px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 999px;
}

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    inset: 65px 1rem auto;
    background: rgba(0,0,0,0.95);
    border: 1px solid rgba(247,245,242,0.05);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .header-inner {
    padding-inline: 0.2rem;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


/* --- Logo size override (force 115x115) --- */
.site-header .brand img,
.site-header .brand .logo{
  width: 115px !important;
  height: 115px !important;
  min-width: 115px !important;
  min-height: 115px !important;
  max-width: none !important;
  max-height: none !important;
  flex: 0 0 115px !important;
  flex-shrink: 0 !important;
}
.site-header .brand{
  flex-wrap: nowrap;
}

/* Ultra-force header logo sizing (in case host CSS is overriding) */
.site-header .brand { min-height: 115px !important; }
.site-header .brand img { width: 115px !important; height: 115px !important; min-width: 115px !important; min-height: 115px !important; max-width: none !important; max-height: none !important; flex: 0 0 115px !important; flex-shrink: 0 !important; }
