/* Tier 1 — everyday / bold & friendly. One webfont: Archivo Black (display only). */

:root {
  --primary: #7a1f1f;
  --accent: #5a2e1b;
  --bg: #fff7f2;
  --text: #1a1a1a;
  --text-muted: #4d4d4d;
  --surface: #ffffff;
  --font-display: "Archivo Black", Impact, "Arial Black", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --size-hero: clamp(48px, 8vw, 96px);
  --size-h2: clamp(28px, 4vw, 40px);
  --size-body: 18px;
  --size-phone-hero: clamp(28px, 6vw, 42px);
  --radius: 4px;
  --shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  --focus: 3px solid #0066cc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
}

body.tier1 {
  padding-bottom: 5.5rem;
}

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

a {
  color: var(--primary);
  text-decoration-thickness: 2px;
}

a:hover {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

/* —— Nav —— */
.site-nav {
  background: var(--surface);
  border-bottom: 4px solid var(--text);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-nav .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.brand span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.35rem 0.25rem;
  border-bottom: 3px solid transparent;
}

.nav-links a.is-active {
  border-color: var(--accent);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-call {
  font-weight: 900;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-call a {
  color: var(--primary);
}

/* —— Hero —— */
.hero {
  background: var(--primary);
  color: #fff;
  padding: 2.5rem 0 2rem;
  border-bottom: 6px solid var(--text);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--size-hero);
  line-height: 1.05;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}

.hero .tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin: 0 0 1.25rem;
  max-width: 40ch;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.35rem;
  max-width: 28rem;
}

.rating-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.45);
  padding-top: 0.85rem;
}

.rating-stars {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 3px;
  color: var(--accent);
}

.rating-stars .on {
  color: var(--accent);
}

.rating-stars .partial {
  opacity: 0.48;
}

.rating-stars .star-empty {
  color: rgba(255, 255, 255, 0.35);
}

.rating-summary {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.rating-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.rating-meta {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.88;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.05rem 1.5rem;
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  border: 3px solid var(--text);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  max-width: 100%;
}

.hero-cta:hover {
  filter: brightness(1.06);
}

.hero-cta-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-cta-phone {
  font-size: clamp(1.35rem, 4.2vw, 2.05rem);
  letter-spacing: 0.04em;
}

.signature-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 40px;
  line-height: 0;
  overflow: hidden;
  color: var(--accent);
  opacity: 0.3;
}

.signature-strip svg {
  display: block;
  width: 100%;
  height: 40px;
}

.breakfast-all-day {
  padding: 2rem 0 2.25rem;
  background: var(--surface);
  border-bottom: 3px solid var(--text);
}

.breakfast-all-day-lede {
  margin: 0 0 1.25rem;
  max-width: 52ch;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
}

.breakfast-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.breakfast-card {
  border: 3px solid var(--text);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: #fff;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.12);
}

.breakfast-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
}

.breakfast-price {
  margin: 0 0 0.5rem;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--primary);
}

.breakfast-card p:last-child {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.home-history-callout {
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--primary);
  background: rgba(0, 0, 0, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.home-history-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 600;
  max-width: 62ch;
}

.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  border: 3px solid var(--text);
  box-shadow: var(--shadow);
  padding: 1rem 1.75rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-align: center;
}

.cta-primary:hover {
  filter: brightness(1.05);
}

.phone-hero {
  font-size: var(--size-phone-hero);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.phone-hero a {
  color: #fff;
  text-decoration: none;
  border-bottom: 4px solid var(--accent);
}

.phone-hero a:hover {
  border-color: #fff;
}

/* —— Sections —— */
section {
  padding: 2.5rem 0;
}

section.alt {
  background: var(--surface);
  border-block: 3px solid var(--text);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  line-height: 1.1;
}

.section-kicker {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin: 0 0 0.35rem;
}

/* —— Dish / price cards —— */
.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-dish {
  background: var(--bg);
  border: 3px solid var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-dish .photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
  border-bottom: 3px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

.card-dish .photo.has-img {
  padding: 0;
  background: #111;
}

.card-dish .photo.has-img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

/* Home highlights: image-only cards (no dish name / price under photo) */
.card-dish--image-only .photo.has-img {
  border-bottom: 0;
}

/* Menu page — real photo strip (fills former empty visual space) */
.menu-strip {
  margin: 0 0 1.75rem;
  border: 3px solid var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--surface);
}

.menu-strip-scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.menu-strip figure {
  flex: 0 0 min(42vw, 280px);
  margin: 0;
  scroll-snap-align: start;
  border-right: 3px solid var(--text);
}

.menu-strip figure:last-child {
  border-right: 0;
}

.menu-strip img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-dish .body {
  padding: 1rem 1.1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-dish h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-tag {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-top: auto;
}

.badge-popular {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border: 2px solid var(--text);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

/* —— Call bar —— */
.call-bar {
  background: var(--accent);
  color: var(--text);
  border: 4px solid var(--text);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.call-bar .label {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.call-bar .big-phone {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 900;
}

.call-bar .big-phone a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 4px solid var(--primary);
}

.hours-pill {
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
}

/* —— Reviews —— */
.review-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.review-card {
  background: var(--surface);
  border: 3px solid var(--text);
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
}

.review-stars {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 2px;
}

.review-star-glyph {
  color: #facc15;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}

.review-card blockquote {
  margin: 0 0 0.75rem;
  font-weight: 600;
  font-style: normal;
}

.review-card cite {
  font-weight: 900;
  font-style: normal;
  color: var(--primary);
  font-size: 0.95rem;
}

/* —— Map —— */
.map-frame {
  border: 4px solid var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* —— Menu page —— */
.menu-category {
  margin-bottom: 2rem;
}

.menu-category h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.65rem;
  border-bottom: 4px solid var(--primary);
  padding-bottom: 0.35rem;
  margin: 0 0 1rem;
}

.menu-cat-note {
  margin: -0.35rem 0 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 600;
  max-width: 58ch;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 2px dashed rgba(0, 0, 0, 0.15);
  align-items: baseline;
}

.menu-item-name {
  font-weight: 800;
}

.menu-item-desc {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.menu-item-price {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--primary);
}

/* —— Blog index —— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--surface);
  border: 3px solid var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.blog-card .thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #ddd, #f0f0f0);
  border-bottom: 3px solid var(--text);
}

.blog-card .thumb.has-img {
  background: #222;
}

.blog-card .meta {
  padding: 1rem 1.1rem 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.blog-card h2 {
  margin: 0;
  padding: 0.35rem 1.1rem 1rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.blog-card h2 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 3px solid var(--accent);
}

.blog-card .excerpt {
  padding: 0 1.1rem 1.1rem;
  margin: 0;
  flex: 1;
  color: var(--text-muted);
}

.blog-card .read {
  padding: 0 1.1rem 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* —— Blog post —— */
.post-header {
  padding-bottom: 1.5rem;
  border-bottom: 4px solid var(--text);
}

.post-header h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.post-meta {
  font-weight: 700;
  color: var(--text-muted);
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-top: 2rem;
  font-size: 1.45rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose a {
  font-weight: 800;
}

.post-cta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--accent);
  border: 3px solid var(--text);
  font-weight: 800;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-phone-mega {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
}

.contact-phone-mega a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 4px solid var(--accent);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-weight: 700;
}

.hours-table th,
.hours-table td {
  border: 2px solid var(--text);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.hours-table th {
  background: var(--primary);
  color: #fff;
}

/* —— Footer —— */
.site-footer {
  background: var(--text);
  color: #fff;
  padding: 2rem 0;
  margin-top: 2rem;
}

.site-footer a {
  color: var(--accent);
  font-weight: 700;
}

.footer-social {
  margin: 0.75rem 0 0;
}

.footer-social-heading {
  color: #fff;
  font-weight: 900;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

/* —— Sticky mobile CTA (Tier 1) —— */
.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  background: var(--primary);
  color: #fff;
  border-top: 4px solid var(--text);
  box-shadow: 0 -6px 0 rgba(0, 0, 0, 0.15);
}

body.tier1 .sticky-call {
  display: block;
}

@media (min-width: 900px) {
  body.tier1 .sticky-call {
    display: none;
  }

  body.tier1 {
    padding-bottom: 0;
  }
}

.sticky-call .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.sticky-call a {
  flex: 1;
  text-align: center;
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border: 3px solid var(--text);
  text-decoration: none;
  border-radius: var(--radius);
}

.sticky-call span {
  font-weight: 800;
  font-size: 0.95rem;
}

/* —— Courtesy Diner: interior palette — booth red, trim yellow, steel & tile gray —— */
body[data-site="courtesy-diner"] {
  --primary: #b91c1c;
  --accent: #fbbf24;
  --bg: #f0f0f0;
  --text: #1f2937;
  --text-muted: #4b5563;
  --surface: #ffffff;
  --focus: 3px solid #fbbf24;
  --font-display: "Sora", "Archivo Black", Impact, "Arial Black", sans-serif;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body[data-site="courtesy-diner"] .skip-link {
  background: #b91c1c;
  color: #fef9c3;
}

body[data-site="courtesy-diner"] .site-nav {
  background: linear-gradient(180deg, #2d2d2d 0%, #3f3f3f 100%);
  border-bottom: 3px solid #fbbf24;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

body[data-site="courtesy-diner"] .nav-links a {
  color: #e5e7eb;
  letter-spacing: 0.04em;
}

body[data-site="courtesy-diner"] .nav-links a:hover {
  color: #fde68a;
}

body[data-site="courtesy-diner"] .nav-links a.is-active {
  border-color: #fbbf24;
  color: #fff;
}

body[data-site="courtesy-diner"] .nav-call a {
  color: #fde68a;
  font-weight: 800;
}

body[data-site="courtesy-diner"] .brand {
  color: #fef9c3;
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 0 #7f1d1d;
}

body[data-site="courtesy-diner"] .hero {
  position: relative;
  /* Lighter scrim so the sharper hero asset reads clearly; photo stays `cover` for all viewports */
  background:
    linear-gradient(180deg, rgba(18, 16, 16, 0.72) 0%, rgba(35, 32, 32, 0.38) 45%, rgba(18, 16, 16, 0.78) 100%),
    url(photos/unnamed.webp) center 42% / cover no-repeat;
  background-color: #1f1f1f;
  color: #f3f4f6;
  border-bottom: 5px solid #b91c1c;
  min-height: clamp(300px, 58vh, 520px);
}

body[data-site="courtesy-diner"] .hero h1 {
  color: #fde68a;
  text-shadow: 3px 3px 0 #450a0a;
  font-size: clamp(1.25rem, 2.85vw, 2.05rem);
  line-height: 1.12;
  max-width: 22ch;
  text-transform: none;
  letter-spacing: 0.01em;
}

body[data-site="courtesy-diner"] .hero .rating-block {
  border-top-color: rgba(255, 255, 255, 0.35);
}

body[data-site="courtesy-diner"] .hero .rating-meta {
  color: #d1d5db;
  opacity: 1;
}

body[data-site="courtesy-diner"] .hero .rating-num {
  color: #fde68a;
}

body[data-site="courtesy-diner"] .section-title {
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
}

body[data-site="courtesy-diner"] .card-dish h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

body[data-site="courtesy-diner"] .hero .section-kicker {
  color: #fcd34d;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

body[data-site="courtesy-diner"] .hero .tagline {
  color: #d1d5db;
}

body[data-site="courtesy-diner"] .hero-cta {
  background: #fbbf24;
  color: #450a0a;
  border-color: #1f2937;
  box-shadow: 4px 4px 0 #1f2937;
}

body[data-site="courtesy-diner"] .hero-cta:hover {
  filter: brightness(1.04);
}

body[data-site="courtesy-diner"] section.alt {
  background: #e5e7eb;
  color: #1f2937;
  border-color: #9ca3af;
}

body[data-site="courtesy-diner"] section.alt a {
  color: #991b1b;
}

body[data-site="courtesy-diner"] .call-bar {
  background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
  color: #fef9c3;
  border-color: #1f2937;
}

body[data-site="courtesy-diner"] .call-bar .big-phone a {
  border-bottom-color: #fde68a;
  color: inherit;
}

body[data-site="courtesy-diner"] .site-footer {
  background: #262626;
  color: #e5e7eb;
}

body[data-site="courtesy-diner"] .site-footer a {
  color: #fde68a;
}

body[data-site="courtesy-diner"] .footer-social-heading {
  color: #d1d5db;
}

body[data-site="courtesy-diner"] .sticky-call {
  border-top-color: #fbbf24;
  background: #2d2d2d;
  color: #f3f4f6;
}

body[data-site="courtesy-diner"] .sticky-call a {
  background: #fbbf24;
  color: #450a0a;
  border-color: #1f2937;
}

body[data-site="courtesy-diner"] .menu-official-cta {
  border-color: #6b7280;
  background: #f9fafb;
}

body[data-site="courtesy-diner"] .menu-official-cta p,
body[data-site="courtesy-diner"] .menu-official-note {
  color: #374151;
}

/* —— NOLA Poboys: official palette — maroon #800032, ring yellow, warm white (flat, light shell) —— */
body[data-site="nola-poboys"] {
  --text: #4a1528;
  --text-muted: #6b3a4d;
  --focus: 3px solid #800032;
}

body[data-site="nola-poboys"] .skip-link {
  background: #800032;
  color: #fffdf9;
}

body[data-site="nola-poboys"] .site-nav {
  background: #fffdf9;
  border-bottom: 3px solid #800032;
}

body[data-site="nola-poboys"] .nav-links a {
  color: #800032;
}

body[data-site="nola-poboys"] .nav-links a:hover {
  color: #5c0f26;
}

body[data-site="nola-poboys"] .nav-links a.is-active {
  border-color: var(--accent);
}

body[data-site="nola-poboys"] .nav-call a {
  color: #800032;
  font-weight: 800;
}

/* Circular logo mark (PNG is the official seal) */
body[data-site="nola-poboys"] .brand.brand-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0;
  line-height: 0;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: #fff;
  overflow: hidden;
}

body[data-site="nola-poboys"] .brand.brand-logo:hover {
  border-color: #800032;
}

body[data-site="nola-poboys"] .brand.brand-logo:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

body[data-site="nola-poboys"] .brand-logo-img {
  width: 64px;
  height: 64px;
  max-width: none;
  display: block;
}

body[data-site="nola-poboys"] .hero {
  background: #fff9e8;
  color: #4a1528;
  border-bottom: 5px solid var(--accent);
}

body[data-site="nola-poboys"] .hero h1 {
  color: #800032;
}

body[data-site="nola-poboys"] .hero .section-kicker {
  color: #800032;
  font-weight: 800;
}

body[data-site="nola-poboys"] .hero .rating-block {
  border-top-color: rgba(74, 21, 40, 0.28);
}

body[data-site="nola-poboys"] .hero .rating-meta {
  color: #6b3a4d;
  opacity: 1;
}

body[data-site="nola-poboys"] .hero .rating-num {
  color: #800032;
}

body[data-site="nola-poboys"] .hero-cta {
  color: #800032;
  border-color: #800032;
  background: var(--accent);
  box-shadow: 3px 3px 0 #800032;
}

body[data-site="nola-poboys"] .hero-cta:hover {
  filter: brightness(1.03);
}

body[data-site="nola-poboys"] .cta-primary {
  color: #800032;
  border-color: #800032;
  background: var(--accent);
  box-shadow: 3px 3px 0 #800032;
}

body[data-site="nola-poboys"] .call-bar {
  background: var(--accent);
  color: #800032;
  border-color: #800032;
}

body[data-site="nola-poboys"] .call-bar .big-phone a {
  border-bottom-color: #800032;
}

body[data-site="nola-poboys"] .site-footer {
  background: #800032;
  color: #fffdf9;
}

body[data-site="nola-poboys"] .site-footer a {
  color: var(--accent);
}

body[data-site="nola-poboys"] .footer-social {
  font-weight: 700;
}

body[data-site="nola-poboys"] .footer-social-heading {
  color: #fffdf9;
}

body[data-site="nola-poboys"] .sticky-call {
  border-top-color: #800032;
}

body[data-site="nola-poboys"] .sticky-call a {
  color: #800032;
  border-color: #800032;
}

/* Official external menu (SinglePlatform) callout */
.menu-official-cta {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 3px solid var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-official-cta p {
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.menu-official-cta .menu-official-link {
  display: inline-block;
  margin-top: 0.25rem;
}

.menu-official-note {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0 !important;
}

body[data-site="nola-poboys"] .menu-official-cta {
  border-color: var(--primary);
  background: #fff;
}

/* —— Paradise Buffet (rest003): red + brown buffet hall —— */
body[data-site="paradise-buffet"] {
  --focus: 3px solid var(--accent);
}

body[data-site="paradise-buffet"] .site-nav {
  background: linear-gradient(180deg, #3b0a0a 0%, var(--primary) 100%);
  border-bottom-color: var(--accent);
}

body[data-site="paradise-buffet"] .nav-links a {
  color: #fff7f2;
}

body[data-site="paradise-buffet"] .nav-links a:hover {
  color: rgba(255, 247, 242, 0.86);
}

body[data-site="paradise-buffet"] .nav-links a.is-active {
  border-color: var(--accent);
  color: #fff;
}

body[data-site="paradise-buffet"] .nav-call a {
  color: rgba(255, 247, 242, 0.86);
}

body[data-site="paradise-buffet"] .brand {
  color: #fff7f2;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.35);
}

body[data-site="paradise-buffet"] .hero {
  background: linear-gradient(135deg, var(--primary) 0%, #5a2e1b 55%, #2a1410 100%);
  color: #fff7f2;
  border-bottom-color: var(--accent);
}

body[data-site="paradise-buffet"] .hero h1 {
  color: #fff7f2;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}

body[data-site="paradise-buffet"] .cta-primary {
  background: var(--accent);
  color: #fff7f2;
  border-color: #2a1410;
}

body[data-site="paradise-buffet"] section.alt {
  background: #fff;
  border-color: rgba(122, 31, 31, 0.35);
}

body[data-site="paradise-buffet"] .site-footer {
  background: #2a1410;
  color: #fff7f2;
}

body[data-site="paradise-buffet"] .site-footer a {
  color: rgba(255, 247, 242, 0.9);
}

/* —— Taqueria Los Gueros (rest004): rojo bandera + sol yellow —— */
body[data-site="taqueria-los-gueros"] {
  --focus: 3px solid #f59e0b;
}

body[data-site="taqueria-los-gueros"] .site-nav {
  background: linear-gradient(180deg, #7f1d1d 0%, #991b1b 100%);
  border-bottom-color: #fcd34d;
}

body[data-site="taqueria-los-gueros"] .nav-links a {
  color: #fef3c7;
}

body[data-site="taqueria-los-gueros"] .nav-links a:hover {
  color: #fde047;
}

body[data-site="taqueria-los-gueros"] .nav-links a.is-active {
  border-color: #fcd34d;
  color: #fff;
}

body[data-site="taqueria-los-gueros"] .nav-call a {
  color: #fde047;
}

body[data-site="taqueria-los-gueros"] .brand {
  color: #fffbeb;
  text-shadow: 2px 2px 0 #450a0a;
}

body[data-site="taqueria-los-gueros"] .hero {
  background: linear-gradient(125deg, #7f1d1d 0%, #b91c1c 40%, #451a03 100%);
  color: #fffbeb;
  border-bottom-color: #fcd34d;
}

body[data-site="taqueria-los-gueros"] .hero h1 {
  color: #fde047;
  text-shadow: 2px 2px 0 #450a0a;
}

body[data-site="taqueria-los-gueros"] .cta-primary {
  background: #fcd34d;
  color: #7f1d1d;
  border-color: #451a03;
}

body[data-site="taqueria-los-gueros"] section.alt {
  background: #fffbeb;
  border-color: #991b1b;
}

body[data-site="taqueria-los-gueros"] .site-footer {
  background: #450a0a;
  color: #fef3c7;
}

body[data-site="taqueria-los-gueros"] .site-footer a {
  color: #fde047;
}

/* —— Loco Burrito (rest005): red + green + yellow —— */
body[data-site="loco-burrito"] {
  --focus: 3px solid var(--accent);
}

body[data-site="loco-burrito"] .site-nav {
  background: linear-gradient(180deg, #14532d 0%, #166534 100%);
  border-bottom-color: var(--accent);
}

body[data-site="loco-burrito"] .nav-links a {
  color: #f0fdf4;
}

body[data-site="loco-burrito"] .nav-links a:hover {
  color: rgba(240, 253, 244, 0.85);
}

body[data-site="loco-burrito"] .nav-links a.is-active {
  border-color: var(--accent);
  color: #fff;
}

body[data-site="loco-burrito"] .nav-call a {
  color: rgba(250, 204, 21, 0.9);
}

body[data-site="loco-burrito"] .brand {
  color: #f0fdf4;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}

body[data-site="loco-burrito"] .hero {
  background:
    linear-gradient(125deg, rgba(185, 28, 28, 0.78) 0%, rgba(20, 83, 45, 0.62) 42%, rgba(15, 23, 42, 0.72) 100%),
    url("photos/41859338_2177337455672558_3725447812142333952_n.jpg");
  background-size: cover;
  background-position: center;
  color: #f0fdf4;
  border-bottom-color: var(--accent);
}

body[data-site="loco-burrito"] .hero h1 {
  color: #facc15;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}

body[data-site="loco-burrito"] .cta-primary {
  background: var(--accent);
  color: #7f1d1d;
  border-color: #14532d;
}

body[data-site="loco-burrito"] section.alt {
  background: #f0fdf4;
  border-color: rgba(22, 101, 52, 0.35);
}

body[data-site="loco-burrito"] .site-footer {
  background: #7f1d1d;
  color: #fff7ed;
}

body[data-site="loco-burrito"] .site-footer a {
  color: rgba(250, 204, 21, 0.95);
}
