/* Freedom Meat Lockers — Demo Site Styles */
/* Palette: #000 (black), #cc0000 (red), #fff (white), #f5f0eb (cream), #1a1a1a (near-black) */

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

:root {
  --black: #111111;
  --red: #b80000;
  --white: #ffffff;
  --cream: #f5f0eb;
  --gray: #555555;
  --light-gray: #e8e3de;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  font-family: var(--font-body);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-items { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-bar-item a { color: var(--white); }
.top-bar-item a:hover { text-decoration: underline; }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.brand-text { line-height: 1.2; }
.brand-text small { font-size: 0.7rem; font-weight: 400; color: #aaa; display: block; }
.primary-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.primary-nav a {
  color: #ccc;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.primary-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  display: flex;
  align-items: center;
}
.btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: #900; }
.btn--outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--outline:hover { background: var(--white); color: var(--black); }
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: #333; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #1a1a1a;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu a {
  color: #ccc;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/freedommeatlockers/assets/img/storefront_exterior.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
  padding: 80px 0;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8a0a0;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero-title span { color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,0,0,0.85);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── SECTION BASICS ── */
.section { padding: 72px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--cream { background: var(--cream); }
.section--red { background: var(--red); color: var(--white); }
.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section--dark .section-label { color: #e8a0a0; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.section--dark .section-intro { color: #bbb; }
.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 16px 0 32px;
}
.section--dark .divider { background: #e8a0a0; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text p { margin-bottom: 16px; color: var(--gray); line-height: 1.75; }
.about-text p:last-child { margin-bottom: 0; }
.about-img { border-radius: 4px; overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; border-radius: 4px; }

/* ── SERVICES / SPECIALTIES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 20px; }
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.service-card-text { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ── PRODUCTS SECTION ── */
.products-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--light-gray);
  color: var(--gray);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tab-btn:hover { background: #ddd; }
.tab-btn.active { background: var(--red); color: var(--white); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.products-intro { color: var(--gray); margin-bottom: 28px; line-height: 1.7; max-width: 700px; }
.marinade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.marinade-card { border-radius: 4px; overflow: hidden; position: relative; }
.marinade-card img { width: 100%; height: 200px; object-fit: cover; }
.marinade-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 14px;
}
.sausage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.sausage-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; }
.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
  margin-top: 16px;
}
.product-list li {
  font-size: 0.95rem;
  color: var(--gray);
  padding: 6px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.sausage-flavors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 32px;
  margin-top: 16px;
}
.sausage-flavors li {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 5px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sausage-flavors li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.flavor-desc { font-size: 0.8rem; color: #888; margin-left: 4px; }

/* ── HISTORY ── */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.history-text p { color: #bbb; margin-bottom: 16px; line-height: 1.75; }
.history-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.history-photos img { border-radius: 3px; width: 100%; height: 160px; object-fit: cover; filter: grayscale(30%); }
.history-photos img:first-child { grid-column: 1 / -1; height: 220px; }

/* ── AWARDS ── */
.awards-years { display: flex; flex-direction: column; gap: 40px; }
.award-year-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.award-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 32px;
}
.award-list li {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.award-list li::before {
  content: '★';
  color: var(--red);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.award-grand { color: #fff; font-weight: 600; }
.award-reserve { color: #ccc; }
.award-champ { color: #aaa; }
.award-special {
  grid-column: 1 / -1;
  background: rgba(184,0,0,0.15);
  border: 1px solid rgba(184,0,0,0.3);
  border-radius: 3px;
  padding: 12px 16px;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #e8a0a0;
  font-weight: 600;
}
.awards-memberships {
  margin-top: 40px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  border: 1px solid #333;
}
.awards-memberships p { color: #bbb; line-height: 1.7; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 28px;
  border-left: 4px solid var(--red);
}
.review-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
}
.review-stars { color: var(--red); font-size: 0.85rem; margin-bottom: 10px; }
.yelp-cta {
  text-align: center;
  margin-top: 40px;
}
.yelp-cta p { color: var(--gray); margin-bottom: 16px; }

/* ── LOCAL PARTNERS ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}
.partner-item {
  background: var(--white);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.2s;
}
.partner-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.partner-item img { max-height: 70px; width: auto; object-fit: contain; }

/* ── CONTACT / MAP ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info { }
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--black);
}
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; fill: var(--white); }
.contact-detail { font-size: 0.95rem; color: var(--gray); line-height: 1.6; }
.contact-detail strong { display: block; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.contact-detail a { color: var(--red); }
.contact-detail a:hover { text-decoration: underline; }
.map-embed {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}
.map-embed iframe { display: block; width: 100%; height: 380px; border: none; }

/* ── SHOP LOCAL BANNER ── */
.shop-local {
  background: var(--black);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}
.shop-local-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.shop-local img { width: 100px; height: 100px; object-fit: contain; }
.shop-local-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 600px;
  line-height: 1.3;
}

/* ── FOOTER ── */
.site-footer {
  background: #0a0a0a;
  color: #888;
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand img { width: 120px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: #666; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: #666;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
}
.footer-col address a { color: #e8a0a0; }
.footer-col address a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #444;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: #aaa; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.fade-up { animation: fadeUp 0.6s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img img { height: 280px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .marinade-grid { grid-template-columns: 1fr 1fr; }
  .history-grid { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .award-list { grid-template-columns: 1fr; }
  .product-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-content { padding: 60px 0; }
  .section { padding: 48px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .marinade-grid { grid-template-columns: 1fr; }
  .sausage-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .product-list { grid-template-columns: 1fr; }
  .sausage-flavors { grid-template-columns: 1fr; }
  .top-bar .container { flex-direction: column; align-items: flex-start; }
}
