/* ===== Three Rivers Meat Company - main stylesheet ===== */

:root {
  --color-dark: #1f1a17;
  --color-accent: #568043;   /* brand green, from logo */
  --color-accent-dark: #456636;  /* darkened brand green for hover */
  --color-brown: #3b2313;    /* brand brown, from badge logo */
  --color-required: #a3242f; /* kept red for form-validation states only */
  --color-cream: #f7f2ea;
  --color-tan: #e8dfd0;
  --color-text: #2c2622;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', Tahoma, Verdana, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-dark); }

h1, h2, h3 { font-family: var(--font-heading); color: var(--color-dark); }

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover { background: var(--color-accent-dark); color: #fff; }

/* ---- Top apply banner strip ---- */
.apply-banner {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  text-align: right;
  padding: 0.4rem 1.5rem;
}
.apply-banner a {
  color: #1f1a17;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.apply-banner a:hover { text-decoration: underline; }
.apply-icon {
  height: 20px;
  width: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ---- Header ---- */
.site-header {
  background: var(--color-dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo img { height: 55px; }
.main-nav { flex: 1; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.header-phone { color: #fff; font-weight: bold; white-space: nowrap; }
.header-social {
  color: #fff;
  display: inline-flex;
  align-items: center;
}
.header-social:hover { color: var(--color-accent); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
}

/* ---- Hero with Ken Burns zoom effect ---- */
.hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-rotator {
  position: absolute;
  inset: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-bg.active {
  opacity: 1;
  z-index: 1;
  animation: heroZoom 6s ease-out forwards;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 12, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}
.hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-content p { font-size: 1.25rem; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }

.hero-content.hero-content-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
}
.hero-logo {
  max-width: 778px;
  width: 73%;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.hero-phone {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-phone:hover { color: var(--color-accent); }

/* ---- Static intro banner (headline over a fixed photo, non-rotating) ---- */
.intro-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/hero-1.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.intro-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 12, 0.55);
}
.intro-banner-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 3rem 2rem;
}
.intro-banner h2 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.intro-banner-divider {
  width: 80px;
  height: 2px;
  background: #fff;
  margin: 0 auto 1.5rem;
}
.thin-divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto 1.5rem;
}
.intro-banner p {
  font-size: 1.05rem;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ---- Dedicated to Quality section ---- */
/* ---- Featured press module ---- */
.press-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  max-width: 1100px;
  margin: 3rem auto;
}
@media (max-width: 800px) {
  .press-feature { grid-template-columns: 1fr; }
}
.press-feature-reverse .press-feature-photo { order: 2; }
.press-feature-reverse .press-feature-copy { order: 1; }
@media (max-width: 800px) {
  .press-feature-reverse .press-feature-photo,
  .press-feature-reverse .press-feature-copy { order: initial; }
}
.press-feature-photo {
  background-size: cover;
  background-position: center;
  min-height: 280px;
}
.press-feature-copy {
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.press-feature-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.press-feature-headline {
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0 0 0.85rem;
  line-height: 1.3;
}
.press-feature-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.press-feature-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---- We're Hiring band ---- */
.hiring-band {
  background: #33501f;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hiring-band-content {
  padding: 2.5rem 1.5rem;
}
.hiring-band-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cream);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.hiring-band-headline {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2.25rem;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 0.75rem;
}
.hiring-band-text {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ---- Trust strip (edge-to-edge, About page) ---- */
.trust-strip {
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 1.5rem;
}
.trust-item { text-align: center; }
.trust-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
}
.trust-label {
  display: block;
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ---- Section heading (bigger, editorial) ---- */
.section-heading {
  font-size: 2.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* ---- Icon cards (About: What We Do) ---- */
.icon-card {
  border-top: 3px solid var(--color-accent);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.icon-card-icon { color: var(--color-accent); margin-bottom: 0.75rem; }

/* ---- Cream band (edge-to-edge, zebra rhythm) ---- */
.band-cream {
  background: var(--color-cream);
  padding: 4rem 1.5rem;
  text-align: center;
}
.band-cream .section-inner { max-width: 1100px; margin: 0 auto; }

/* ---- Big pull quote (full width, centered) ---- */
.big-quote {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding-top: 1rem;
}
.big-quote-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.35;
  margin-bottom: -1.5rem;
}
.big-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--color-dark);
  line-height: 1.4;
  margin: 0;
}

/* ---- Growing band (edge-to-edge, full statement) ---- */
.growing-band {
  background: #33501f;
  padding: 4rem 1.5rem;
  text-align: center;
}
.growing-band-inner { max-width: 750px; margin: 0 auto; }
.growing-band-inner p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.growing-band-link {
  color: #c0dd97;
  font-weight: 700;
  text-decoration: underline;
}
.growing-band-link:hover { color: #fff; }

/* ---- Closing CTA band (edge-to-edge dark green) ---- */
.closing-band {
  background: #33501f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.closing-band-content { max-width: 700px; }
.closing-band-title {
  white-space: nowrap;
  font-size: 1.9rem;
}
@media (max-width: 600px) {
  .closing-band-title { white-space: normal; font-size: 1.6rem; }
}
.closing-band .cta-row { margin-top: 1.5rem; margin-bottom: 0; }

/* ---- Choctaw Nation ownership badge ---- */
.ownership-band {
  background: var(--color-cream);
  padding: 2.5rem 1.5rem;
}
.ownership-band-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  text-align: left;
}
@media (max-width: 600px) {
  .ownership-band-inner { flex-direction: column; text-align: center; }
}
.ownership-seal {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}
.ownership-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 0 0.35rem;
}
.ownership-text p:last-child {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
}

/* ---- Follow Along (Facebook feed + Tag Us) ---- */
.follow-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 800px) {
  .follow-layout { grid-template-columns: 1fr; }
}
.follow-feed {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.follow-feed .fb-page, .follow-feed iframe { width: 100% !important; }
.follow-tag-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.follow-tag-card .icon-card-icon { color: var(--color-accent); margin-bottom: 0.75rem; }
.follow-tag-card h3 { margin: 0 0 0.5rem; }
.follow-tag-card p { margin: 0 0 1rem; color: #666; }
.follow-hashtag {
  font-weight: 700;
  color: var(--color-accent) !important;
  font-size: 1.1rem;
  margin-bottom: 1.25rem !important;
}

/* ---- Crowd Favorites (mouth-watering food showcase) ---- */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  max-width: 1150px;
  margin: 0 auto;
}
.favorites-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  text-align: left;
  background: #fff;
}
.favorites-card-photo {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.favorites-card-copy { padding: 1.5rem; }
.favorites-card-copy h3 { margin: 0 0 0.5rem; }
.favorites-card-copy p { margin: 0; color: #666; font-size: 0.95rem; line-height: 1.6; }

.dedicated-section {
  background: #fff;
  padding: 4rem 1.5rem;
}
.dedicated-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 800px) {
  .dedicated-inner { grid-template-columns: 1fr; text-align: center; }
}
.dedicated-left {
  text-align: center;
}
.dedicated-left h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.dedicated-left img {
  max-width: 220px;
  width: 100%;
}
.dedicated-right p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #ccc;
  color: var(--color-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); }

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg.active { animation: none; }
}

/* ---- Photo banner sections (About Us style: dark photo, green heading, white pill button) ---- */
.photo-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.photo-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.5);
}
.photo-banner-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 3rem 2rem;
}
.photo-banner-content-right {
  margin-left: auto;
  text-align: right;
}
.photo-banner-content-right .photo-banner-divider { margin-left: auto; margin-right: 0; }
.photo-banner h2 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 3.25rem;
  letter-spacing: 0.01em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.photo-banner-divider {
  width: 100px;
  height: 3px;
  background: #fff;
  margin-bottom: 1.75rem;
}
.photo-banner p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #1f1a17;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.btn-white:hover { background: var(--color-accent); color: #fff; }

/* ---- Sections ---- */
.sprig-divider {
  display: flex;
  justify-content: center;
  margin: 0 0 1.5rem;
}
.sprig-divider svg { display: block; }
.section { padding: 4rem 1.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: #fff; }
.section-center { text-align: center; }

.page-title {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 3.5rem;
  letter-spacing: 0.01em;
  color: var(--color-dark);
  margin: 0 0 2rem;
}

.hours-banner {
  padding: 1.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0.5rem auto 1.5rem;
}
.hours-banner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.hours-banner p {
  font-size: 1.15rem;
  font-weight: 500;
}

/* ---- Homepage intro: headline + hours (Option B: centered stat cards) ---- */
.intro-tagline {
  font-size: 1.05rem;
  color: #555;
  margin: -1rem 0 1.75rem;
}
.hours-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
@media (max-width: 700px) {
  .hours-stats { grid-template-columns: 1fr; }
}
.hours-stat-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
}
.hours-stat-card svg { color: var(--color-accent); margin-bottom: 0.5rem; }
.hours-stat-label { font-size: 0.85rem; color: #777; margin: 0 0 0.2rem; }
.hours-stat-value { font-size: 1.05rem; font-weight: 700; margin: 0; }

.notice-pill-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.notice-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-cream);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}
.notice-pill svg { color: var(--color-accent); flex-shrink: 0; }
.notice-detail {
  font-size: 0.9rem;
  color: #666;
  margin: 0.75rem auto 0;
  max-width: 600px;
}

/* ---- Homepage intro: headline + hours (Option A: two-column split) ---- */
.intro-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
@media (max-width: 800px) {
  .intro-split { grid-template-columns: 1fr; text-align: center; }
}
.intro-split .page-title { margin-bottom: 0.5rem; font-size: 2.75rem; }
.intro-split-notice {
  border-left: 3px solid var(--color-accent);
  background: var(--color-cream);
  padding: 1rem 1.25rem;
}
.intro-split-notice h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  color: var(--color-dark);
}
.intro-split-notice p { margin: 0.3rem 0; font-size: 0.95rem; }

.hours-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.hours-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.hours-card-header h3 { margin: 0; font-size: 1.15rem; }
.hours-card-header svg { color: var(--color-accent); flex-shrink: 0; }
.hours-table { width: 100%; font-size: 0.95rem; border-collapse: collapse; }
.hours-table td { padding: 0.4rem 0; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr + tr td { border-top: 1px solid #f0ece2; }
.hours-card-note {
  font-size: 0.8rem;
  color: #777;
  margin: 0.9rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid #f0ece2;
}

/* ---- Homepage intro: marketing-focused hero block ---- */
.notice-strip {
  background: var(--color-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  max-width: 100%;
  margin: 0 auto 1.5rem;
}
.notice-strip svg { flex-shrink: 0; color: var(--color-accent); }
.notice-strip a { color: #fff; text-decoration: underline; }
.notice-strip a:hover { color: var(--color-accent); }

.fine-print-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin: 1.25rem 0 0.5rem;
  padding-top: 1rem;
}
.fine-print-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #999;
}
.fine-print-item svg { flex-shrink: 0; color: var(--color-accent); }
.fine-print-item a { color: #999; text-decoration: underline; }
.fine-print-item a:hover { color: var(--color-accent); }
.fine-print-item strong { color: #777; }

.favorites-section { padding-top: 1rem; }
.favorites-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.favorites-heading { font-size: 2.5rem; margin-bottom: 0.5rem; }
.favorites-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.favorites-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
.favorites-card-photo { transition: transform 0.3s ease; overflow: hidden; }
.favorites-card:hover .favorites-card-photo { transform: scale(1.05); }

.bold-band {
  background: linear-gradient(160deg, #1c2617, #0f150c);
  border-radius: 4px;
  padding: 3.5rem 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 2rem;
  box-shadow: inset 0 0 0 1px rgba(212,193,153,0.25);
}
.bold-band-hairline {
  width: 36px;
  height: 1px;
  background: #b89968;
  margin: 0 auto 1.25rem;
}
.bold-band .band-hours-row + .bold-band-hairline,
.bold-band-hairline:last-child {
  margin: 1.75rem auto 0;
}
.bold-band-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b89968;
  margin: 0 0 1rem;
  font-weight: 500;
}
.bold-band-headline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  max-width: 620px;
  margin: 0 auto 1.1rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.bold-band-subtext {
  color: #a8ac9e;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}
.btn-brass-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid #b89968;
  color: #b89968;
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-brass-outline:hover { background: #b89968; color: #1c2617; }
.btn-ghost-white {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-ghost-white:hover { background: #fff; color: #1c2617; }
.btn-outline-white {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--color-dark); }

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.band-hours-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.band-hours-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 1rem;
}
.band-hours-day {
  color: var(--color-tan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.8rem;
}
.band-hours-time { color: #fff; font-weight: 700; }
.band-hours-time.band-hours-closed { color: rgba(255,255,255,0.6); text-transform: uppercase; font-size: 0.85rem; }
.band-hours-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.25);
}
@media (max-width: 600px) {
  .band-hours-divider { display: none; }
}

.band-wholesale-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  color: var(--color-tan);
  text-align: center;
}
.band-wholesale-note svg { color: #c0dd97; flex-shrink: 0; }
.band-wholesale-note strong { color: #fff; }

.notice-banner {
  background: #c3d3b0;
  border: 3px solid #1f1a17;
  padding: 2rem 1.5rem;
  border-radius: 0;
  text-align: center;
  max-width: 1100px;
  margin: 1.5rem auto;
}
.notice-banner h3 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.01em;
  color: #1f1a17;
  margin-bottom: 1rem;
}
.notice-banner p { margin: 0.5rem 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ---- Checkbox list (used on careers application form) ---- */
.checkbox-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem 1rem;
  margin-top: 0.5rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* ---- Photo cards (homepage About/Careers/Home/Contact section) ---- */
.photo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.photo-card {
  position: relative;
  height: 340px;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}
.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.35) 100%);
}
.photo-card h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 1.5rem 1.5rem 0;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.photo-card-link {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  padding: 0 1.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.photo-card:hover .photo-card-link { color: var(--color-accent); }

/* ---- Menu boards (Breakfast / Lunch & Dinner) ---- */
.menu-section-title {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  margin: 0 0 1rem;
}
.menu-boards {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.5rem;
  margin: 1rem auto 2rem;
  max-width: 1100px;
  align-items: center;
}
@media (max-width: 800px) {
  .menu-boards { grid-template-columns: 1fr; }
}
.menu-board-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* ---- Online menu page ---- */
.menu-meal {
  padding: 3rem 1.5rem;
  background: #fff;
}
.menu-meal-alt { background: var(--color-cream); }
.menu-meal .section-inner,
.menu-meal-alt .section-inner { max-width: 1100px; margin: 0 auto; }
.menu-meal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 3px solid var(--color-accent);
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem;
}
.menu-meal-title {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  margin: 0;
}
.menu-meal-note { font-size: 0.9rem; color: #777; margin: 0; }
.menu-meal-note a { color: var(--color-accent); font-weight: 600; }

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: start;
}
.menu-category h3 {
  font-size: 1.1rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e5ded2;
}
.menu-addon-note {
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
  margin: -0.3rem 0 0.75rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.98rem;
  padding: 0.3rem 0;
}
.menu-item-name { font-weight: 600; color: var(--color-dark); }
.menu-item-price {
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: #777;
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

/* ---- Job listings (expandable) ---- */
.job-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.job-card {
  border: 1px solid #e5ded2;
  border-left: 4px solid var(--color-accent);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.job-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.job-hiring-badge {
  display: inline-block;
  background: var(--color-cream);
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.job-card-summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.job-card-summary::-webkit-details-marker { display: none; }
.job-card-summary h3 { margin: 0 0 0.35rem; }
.job-toggle-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}
.job-card[open] .job-toggle-icon { transform: rotate(180deg); }
.job-card-body {
  padding: 0 1.75rem 1.75rem;
  border-top: 1px solid #f0ece2;
  padding-top: 1.25rem;
}
.job-card h3 { margin-top: 0; }
.job-meta { color: #777; font-size: 0.9rem; margin-bottom: 1rem; }
.job-description { white-space: pre-line; margin-bottom: 1.25rem; }
.no-jobs {
  text-align: center;
  padding: 3rem 1rem;
  color: #777;
}

/* ---- Forms ---- */
/* ---- Contact page: two-column layout ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-info-card {
  background: var(--color-cream);
  border-radius: 8px;
  padding: 2rem;
}
.contact-info-title {
  margin: 0 0 1.25rem;
  font-size: 1.4rem;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-info-row svg { color: var(--color-accent); flex-shrink: 0; margin-top: 0.15rem; }
.contact-info-divider {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 1.25rem 0;
}
.contact-info-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.contact-info-buttons .btn { text-align: center; }

.form-wrap {
  max-width: 650px;
  margin: 2rem auto 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 2rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.form-row-split { display: flex; gap: 1rem; }
.form-row-split .form-row { flex: 1; }
.required { color: var(--color-required); }
.form-help { font-size: 0.85rem; color: #777; margin-top: 0.25rem; }

.alert { padding: 1rem 1.25rem; border-radius: 6px; margin-bottom: 1.5rem; }
.alert-success { background: #e6f4ea; border: 1px solid #a9d8b8; color: #1e5631; }
.alert-error { background: #fdecea; border: 1px solid #e8a29c; color: #7e1a23; }

/* ---- Footer ---- */
.site-footer { background: var(--color-dark); color: #ddd; margin-top: 3rem; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.footer-logo { height: 60px; margin-bottom: 1rem; }
.site-footer h3 { color: #fff; font-size: 1.05rem; }
.site-footer a { color: #ccc; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.footer-bottom {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #3a332e;
  font-size: 0.85rem;
  color: #999;
}

/* ---- Admin ---- */
.admin-bar {
  background: var(--color-dark);
  color: #fff;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-bar a { color: #fff; }
.admin-wrap { max-width: 900px; margin: 2rem auto; padding: 0 1.5rem; }
.admin-job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.admin-job-row.inactive { opacity: 0.55; }
.admin-actions a { margin-left: 0.75rem; font-size: 0.9rem; }
.status-pill {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: bold;
}
.status-active { background: #e6f4ea; color: #1e5631; }
.status-inactive { background: #f7f2ea; color: #777; }

/* ---- Responsive ---- */
@media (max-width: 800px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: block; }
  .header-apply { display: none; }
  .hero-content h1 { font-size: 2.1rem; }
  .form-row-split { flex-direction: column; gap: 0; }
}
