:root {
  --meat: #a0332a;
  --meat-dark: #6e211a;
  --bone: #f5ead6;
  --char: #2b1a12;
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bone);
  color: var(--char);
  line-height: 1.5;
}

header {
  background: linear-gradient(180deg, var(--meat) 0%, var(--meat-dark) 100%);
  color: var(--bone);
  text-align: center;
  padding: 3.5rem 1.25rem 2.25rem;
  border-bottom: 6px solid var(--meat-dark);
}

header h1 {
  margin: 0;
  font-size: clamp(1.9rem, 6vw, 2.75rem);
  letter-spacing: 0.5px;
  font-weight: 900;
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}

.tagline {
  margin-top: 0.5rem;
  font-style: italic;
  opacity: 0.9;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin: 0 0.3rem;
}

.bacon-divider {
  display: block;
  width: 160px;
  max-width: 60vw;
  height: auto;
  margin: 1rem auto 0;
  opacity: 0.9;
}

.meat-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--bone);
  color: var(--meat-dark);
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1.05rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.1s, background 0.2s;
}

.meat-cta:hover {
  background: white;
  transform: scale(1.03);
}

.meat-cta:active {
  transform: scale(0.97);
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

main section {
  background: white;
  border: 1px solid #e8ddc9;
  border-left: 5px solid var(--meat);
  border-radius: 10px;
  padding: 1.85rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 14px rgba(43, 26, 18, 0.08);
}

main h2 {
  color: var(--meat);
  margin-top: 0;
  font-size: 1.4rem;
  border-bottom: 2px dashed #e0cba8;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
}

.case h3 {
  color: var(--meat-dark);
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
}

.case h3:first-of-type {
  margin-top: 0.5rem;
}

.case p {
  line-height: 1.6;
  margin: 0 0 1rem;
}

.breaking-tag {
  display: inline-block;
  background: var(--meat);
  color: var(--bone);
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.byline {
  font-style: italic;
  opacity: 0.7;
  font-size: 0.9rem;
}

.breaking-gif {
  display: block;
  max-width: 100%;
  width: 280px;
  border-radius: 8px;
  margin: 1rem auto 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.planks {
  padding-left: 1.25rem;
}

.planks li {
  margin-bottom: 0.75rem;
}

blockquote {
  margin: 0 0 1.25rem;
  padding-left: 1rem;
  border-left: 4px solid var(--meat);
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 0.4rem;
  font-style: normal;
  font-size: 0.85rem;
  opacity: 0.7;
}

.faq-item {
  margin-bottom: 1.25rem;
}

.faq-item h3 {
  margin-bottom: 0.3rem;
}

.faq-item p {
  margin-top: 0;
}

.center-cta {
  text-align: center;
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
  border-top: 2px solid var(--meat);
}

/* meat frenzy overlay */
#meat-frenzy-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.meat-frenzy-piece {
  position: fixed;
  left: 0;
  top: 0;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
  animation-name: meat-fly;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

@keyframes meat-fly {
  0% {
    transform: translate(var(--start-x), var(--start-y)) rotate(var(--rot-start));
    opacity: 1;
  }
  100% {
    transform: translate(var(--end-x), var(--end-y)) rotate(var(--rot-end));
    opacity: 0.9;
  }
}

.meat-frenzy-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  font-weight: 900;
  font-size: clamp(2rem, 9vw, 6rem);
  letter-spacing: 2px;
  color: var(--meat);
  text-shadow: 3px 3px 0 var(--meat-dark), -2px -2px 0 var(--bone);
  text-transform: uppercase;
  white-space: nowrap;
  animation: meat-banner-pop 1.4s ease-out forwards;
}

@keyframes meat-banner-pop {
  0% { transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
  15% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
  30% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  80% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* mobile */
@media (max-width: 600px) {
  header {
    padding: 2rem 1rem 1.5rem;
  }

  main {
    padding: 1.25rem 0.75rem 2rem;
  }

  main section {
    padding: 1.25rem 1.25rem;
    border-radius: 10px;
  }

  .logo-mark {
    width: 1.5rem;
    height: 1.5rem;
  }

  .meat-frenzy-banner {
    letter-spacing: 0.5px;
  }
}
