:root {
  --bg: #fdf8f2;
  --ink: #2c1f18;
  --brand: #c0392b;
  --brand-dark: #8b1a1a;
  --brand-light: #e85d4a;
  --line: #e8d5c0;
  --gold: #d4a44b;
  --nav-offset: 92px;
}

html {
  scroll-padding-top: var(--nav-offset);
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, #f5e6d8 0, transparent 35%),
    radial-gradient(circle at 95% 3%, #f0ddd0 0, transparent 30%),
    var(--bg);
}

h1, h2, h3, .brand {
  font-family: "Bree Serif", serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fce8d0;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #1a1310;
  padding: 4px;
}

.nav-shell .brand:hover {
  color: #fff;
}

.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

.social-link {
  display: inline-flex;
  align-items: center;
}

.social-inline {
  display: inline-flex;
  align-items: center;
}

.social-icon-inline {
  width: 16px;
  height: 16px;
}

#hours-table {
  --bs-table-bg: transparent;
  --bs-table-border-color: transparent;
}

#hours-table > :not(caption) > * > * {
  border-bottom: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.letter {
  letter-spacing: 0.08em;
}

.nav-shell {
  background: rgba(36, 22, 16, 0.96);
  border-color: rgba(255, 255, 255, 0.10) !important;
  top: 44px;
  z-index: 100;
}

.hero-card {
  background: linear-gradient(155deg, #fffaf5 0%, #fdf0e5 40%, #f8e3d0 100%);
}

.hero-photo {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.surface-card {
  background: #fffaf5;
  border: 1px solid var(--line) !important;
}

.text-brand-dark {
  color: var(--brand) !important;
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), #d43f30);
  border: 1px solid #7a1510;
  color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(135deg, #7a1510, #a8281c);
  color: #fff;
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-weight: 700;
  padding: 0.75rem 1rem;
  transition: all .15s;
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
}

.link-brand {
  color: var(--brand);
  text-decoration: none;
}

.link-brand:hover {
  text-decoration: underline;
}

.footer-shell {
  background: #2c1f18;
  color: #e9d8ca;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.footer-shell a {
  color: #f5cba0;
  text-decoration: none;
  font-weight: 700;
}

.footer-shell a:hover {
  color: #fff;
}

.footer-social-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #e9d8ca;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color .15s;
}

.footer-social-text:hover {
  color: var(--gold);
}

section[id] {
  scroll-margin-top: var(--nav-offset);
}

/* Offer Banner */
.offer-banner {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #d4a853;
  color: #1a1814;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.offer-banner.hidden { display: none; }
.offer-logo {
  display: flex;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1814;
  text-decoration: none;
  margin-right: 0.25rem;
}
.offer-text { display: flex; align-items: center; gap: 0.4rem; }
.offer-cta {
  background: #1a1814;
  color: #d4a853;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: opacity 150ms;
}
.offer-cta:hover { opacity: 0.85; }
.offer-banner .offer-close {
  background: none;
  border: none;
  color: rgba(26,24,20,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
}
.offer-banner .offer-close:hover { color: #1a1814; }

/* Lightweight bootstrap compatibility after Tailwind migration */
.container-xl { max-width: 1280px; margin-left: auto; margin-right: auto; width: 100%; padding-left: 1rem; padding-right: 1rem; }
.d-flex { display: flex; }
.d-none { display: none; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow-1 { flex-grow: 1; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-stretch { align-items: stretch; }
.ms-auto { margin-left: auto; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-lg-5 { margin-top: 1.5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-lg-5 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.p-4 { padding: 1rem; }
.p-lg-5 { padding: 1.5rem; }
.small { font-size: .875rem; }
.fw-bold { font-weight: 700; }
.text-uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-body-secondary, .text-muted { color: #57534e; }
.border { border: 1px solid rgba(30,23,20,.18); }
.border-top { border-top: 1px solid rgba(30,23,20,.18); }
.border-bottom { border-bottom: 1px solid rgba(30,23,20,.18); }
.rounded-3 { border-radius: .75rem; }
.rounded-4 { border-radius: 1rem; }
.h-100 { height: 100%; }
.w-100 { width: 100%; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.shadow-lg { box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.lead { font-size: 1.125rem; line-height: 1.65; }
.display-5 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.display-6 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); line-height: 1.15; }

.row { display: grid; grid-template-columns: 1fr; }
.g-2 { gap: .5rem; }
.g-3 { gap: .75rem; }
.g-4 { gap: 1rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: .5rem; text-decoration: none; }
.btn-lg { padding: .75rem 1rem; }
.btn-outline-secondary { border: 1px solid #bdb7b0; color: #3f3a35; background: transparent; }
.btn-outline-secondary:hover { background: rgba(255,255,255,.6); }

.navbar-nav { list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem; }
.nav-link { color: #fce8d0; text-decoration: none; }
.nav-link:hover { color: #fff; }

.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: .45rem .5rem; border-bottom: 1px solid rgba(30,23,20,.12); vertical-align: top; }
.table-sm th, .table-sm td { padding-top: .35rem; padding-bottom: .35rem; }

/* Tagline accent */
.tagline-accent {
  color: var(--brand);
  font-weight: 800;
}

/* Badge */
.badge-red {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Diner section cards */
.diner-card {
  border-left: 4px solid var(--brand);
}

@media (min-width: 1024px) {
  .d-lg-flex { display: flex; }
  .col-lg-5 { grid-column: span 5 / span 5; }
  .col-lg-6 { grid-column: span 6 / span 6; }
  .col-lg-7 { grid-column: span 7 / span 7; }
  .row { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .row > * { grid-column: span 12 / span 12; }
  .col-lg-5, .col-lg-6, .col-lg-7 { grid-row: auto; }
}

@media (max-width: 640px) {
  .offer-banner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.6rem;
    font-size: 0.78rem;
  }
  .offer-cta {
    padding: 0.35rem 0.9rem;
    font-size: 0.82rem;
  }
  .offer-text {
    font-size: 0.78rem;
  }
  #services .grid {
    grid-template-columns: 1fr;
  }
}
