/* ---------- Tokens ---------- */
:root {
  --red: #B3261E;
  --red-dark: #8C1D17;
  --orange: #D9782C;
  --green: #3C7A43;
  --green-dark: #2E5E34;
  --cream: #FFFBF2;
  --cream-alt: #FBF1DE;
  --paper: #FFFFFF;
  --ink: #2B1B12;
  --ink-soft: #5B4A3A;
  --border: #EADFC9;

  --font-display: 'Zilla Slab', serif;
  --font-body: 'Work Sans', sans-serif;

  --radius: 16px;
  --shadow: 0 18px 40px -18px rgba(43, 27, 18, 0.28);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); color: var(--ink); margin: 0 0 12px; line-height: 1.15; }
p { margin: 0 0 12px; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }
.lede { max-width: 640px; color: var(--ink-soft); font-size: 17px; }
.lede.center { margin-left: auto; margin-right: auto; }
.muted { color: var(--ink-soft); font-size: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--paper); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-call { background: var(--green); color: var(--paper); padding: 10px 20px; font-size: 14px; }
.btn-call:hover { background: var(--green-dark); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--red);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.main-nav { display: none; gap: 28px; }
.main-nav a { text-decoration: none; font-weight: 500; font-size: 15px; color: var(--ink-soft); }
.main-nav a:hover { color: var(--red); }
@media (min-width: 900px) {
  .main-nav { display: flex; }
}

/* ---------- Hero ---------- */
.hero { padding: 56px 0 72px; }
.hero-inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
}
.hero-copy { max-width: 560px; text-align: center; }
.hero h1 {
  font-size: clamp(40px, 7vw, 64px);
  color: var(--red);
  margin-bottom: 6px;
}
.tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 3vw, 24px);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.hero-sub { color: var(--ink-soft); font-size: 16px; margin-bottom: 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-media img {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(43, 27, 18, 0.22));
}
@media (min-width: 860px) {
  .hero-inner { flex-direction: row; text-align: left; align-items: center; justify-content: space-between; }
  .hero-copy { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-media img { width: 320px; }
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.alt-bg { background: var(--cream-alt); }

/* Products (chicken) */
.products-inner, .eggs-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.products-media img, .eggs-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 240px;
  border: 6px solid var(--paper);
}
.products-copy, .eggs-copy { max-width: 520px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.feature-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-red { background: var(--red); }
.dot-orange { background: var(--orange); }
.dot-green { background: var(--green); }

@media (min-width: 760px) {
  .products-inner { flex-direction: row; align-items: center; }
  .eggs-inner { flex-direction: row-reverse; align-items: center; }
  .products-media img, .eggs-media img { width: 300px; }
}

/* Icon grid (feed + delivery) */
.icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.icon-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.icon-card .icon {
  width: 42px;
  height: 42px;
  color: var(--orange);
  margin: 0 auto 16px;
}
.icon-card:nth-child(2) .icon { color: var(--red); }
.icon-card:nth-child(3) .icon { color: var(--green); }
.icon-card h3 { font-size: 18px; margin-bottom: 8px; }
.icon-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
@media (min-width: 760px) {
  .icon-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Contact */
.contact { text-align: center; }
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 22px 0 34px; }
.contact-details { color: var(--ink-soft); font-size: 15px; }
.contact-details strong { color: var(--ink); font-family: var(--font-display); font-size: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 34px 0; }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.footer-wordmark { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--orange); }
.footer-tagline { color: #D8C9B8; font-size: 14px; margin: 4px 0 0; }
.footer-phone {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #6B5A4A;
  border-radius: 999px;
  padding: 8px 20px;
}
@media (min-width: 700px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: center;
}
.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #B8A896;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.15s ease;
}
.powered-by:hover { color: var(--cream); }
.powered-by-mark { display: inline-flex; }
