/* ════════════════════════════════════════════════════════════
   IBUSISIWE LIVESTOCK — "Blessed Livestock"
   Modern premium farm aesthetic with logo watermark & real photos
   ════════════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #2D4A1E;   /* deep forest green */
  --green:        #4A7C35;   /* rich grass green */
  --green-mid:    #6A9E4A;   /* meadow green */
  --green-light:  #A8C882;   /* pale sage */
  --brown-dark:   #5C3A1E;   /* dark earth brown */
  --brown:        #8B6040;   /* warm earth */
  --gold:         #C8A855;   /* harvest gold */
  --gold-light:   #E0C880;   /* warm wheat */
  --gold-pale:    #F5EAD0;   /* pale cream-gold */
  --cream:        #FDFAF2;   /* warm white */
  --cream-dark:   #F0EAD8;   /* warm beige */
  --text-dark:    #1A1A1A;
  --text:         #2C2C2C;
  --text-muted:   #6B6B6B;
  --wp-green:     #25D366;
  --wp-dark:      #128C7E;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 28px rgba(0,0,0,0.13);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.20);
  --shadow-gold:  0 4px 20px rgba(200,168,85,0.30);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Lato', 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: var(--green-dark); /* fallback if images don't load — mauve rose */
}

body {
  font-family: var(--font-sans);
  background: transparent;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Page-wide fixed background layers ─────────────────── */
.page-bg-layer {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;          /* positive: above canvas, below content */
  will-change: opacity;
  transition: opacity 0.15s linear;
  pointer-events: none;
}
.page-bg-main {
  background-image: url('images/main-background.webp');
  opacity: 1;
}
.page-bg-goat {
  background-image: url('images/goat-background.webp');
  opacity: 0;
}

/* All visible content sits above the fixed bg layers */
.wp-float,
.navbar,
.hero,
.blessed-band,
.how-it-works,
.photo-band,
.animals-section,
.wp-banner,
.meat-section,
.stock-section,
.quote-band,
.location-section,
.about-section,
.contact-section,
.footer {
  position: relative;
  z-index: 1;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Reveal Animations - content hidden by default, shown when JS adds .visible */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal        { transform: translateY(36px); }
.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible        { opacity: 1; transform: none; }

/* ── Section Headers ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-pale);
  color: var(--brown);
  border: 1px solid rgba(106,158,74,0.4);
  border-radius: 50px;
  padding: 5px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header h2 .accent { color: var(--gold); }
.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}
.btn-whatsapp {
  background: var(--wp-green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: var(--wp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,148,58,0.45);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 50px;
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-mid);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Floating WhatsApp ─────────────────────────────────────── */
.wp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--wp-green);
  color: var(--white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  z-index: 9999;
  transition: var(--transition);
}
.wp-float i { font-size: 1.5rem; flex-shrink: 0; }
.wp-float:hover {
  background: var(--wp-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
  color: var(--white);
}
.wp-float-label { white-space: nowrap; }
@media (max-width: 500px) {
  .wp-float { padding: 14px; border-radius: 50%; }
  .wp-float-label { display: none; }
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(45, 74, 30, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.logo-blessed {
  font-size: 0.64rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.nav-links a:hover { color: var(--gold-light); background: rgba(255,255,255,0.08); }
.nav-links .nav-cta {
  background: var(--wp-green);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 50px;
  text-shadow: none !important;
  box-shadow: 0 3px 14px rgba(37,211,102,0.4);
}
.nav-links .nav-cta:hover { background: var(--wp-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 920px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(45,74,30,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 16px 28px 28px;
    gap: 2px;
    border-bottom: 1px solid rgba(106,158,74,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; text-shadow: none; }
}

/* ══════════════════════════════════════
   HERO — real photo background + logo watermark
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 28px 80px;
  overflow: hidden;
  background-color: var(--green-dark); /* dark fallback + ensures text readability */
}
/* Layered dark overlay for readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,40,10,0.50) 0%,
    rgba(20,40,10,0.32) 50%,
    rgba(20,40,10,0.55) 100%
  );
  z-index: 1;
}
/* Transparent logo as giant hero watermark */
.hero-logo-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.hero-logo-watermark img {
  width: min(72vw, 620px);
  opacity: 0.10;
  filter: brightness(4) saturate(0);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,148,58,0.16);
  border: 1px solid rgba(200,148,58,0.55);
  color: var(--gold-light);
  border-radius: 50px;
  padding: 7px 22px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 9vw, 5.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.55);
}
.hero-title .blessed {
  display: block;
  font-size: clamp(0.95rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-title .accent { color: var(--gold-light); }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.22rem);
  color: rgba(255,255,255,0.88);
  margin: 0 auto 38px;
  max-width: 600px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 5px 16px;
  backdrop-filter: blur(4px);
}
.hero-trust i { color: var(--gold-light); }
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
  z-index: 3;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ══════════════════════════════════════
   BLESSED BAND — gold scripture strip
══════════════════════════════════════ */
.blessed-band {
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--brown-dark) 50%, var(--green-dark) 100%);
  padding: 18px 28px;
  text-align: center;
  border-top: 1px solid rgba(106,158,74,0.2);
  border-bottom: 1px solid rgba(106,158,74,0.2);
}
.blessed-band p {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.5px;
}
.blessed-band strong { font-style: normal; }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-it-works {
  padding: 96px 0;
  background: rgba(255, 255, 255, 0.78);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 17%;
  right: 17%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--gold), var(--green-light));
  opacity: 0.3;
}
.step {
  text-align: center;
  padding: 42px 32px;
  position: relative;
  transition: var(--transition);
  cursor: default;
}
.step:hover { transform: translateY(-8px); }
.step-dot {
  width: 58px;
  height: 58px;
  background: var(--green-dark);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-light), var(--shadow-sm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step:hover .step-dot { background: var(--gold); box-shadow: 0 0 0 2px var(--gold-light), var(--shadow-gold); }
.step-num {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.step p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* ══════════════════════════════════════
   ANIMALS — photo-rich cards
══════════════════════════════════════ */
.animals-section {
  padding: 96px 0;
  background: rgba(248, 244, 236, 0.76);
  position: relative;
  overflow: hidden;
}
/* Giant logo centred as watermark behind grid */
.animals-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  max-width: 680px;
  aspect-ratio: 1;
  background-image: url('images/logo-transparent.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.045;
  pointer-events: none;
}
.animal-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
  position: relative;
}
.animal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}
.animal-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-md); }
.animal-card:hover .animal-card-photo { transform: scale(1.06); }
.animal-photo-wrap {
  overflow: hidden;
  position: relative;
}
.animal-card-photo {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s ease;
}
.animal-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.cattle-bg  { background: linear-gradient(135deg, #3A5E28 0%, #5E8A45 100%); }
.sheep-bg   { background: linear-gradient(135deg, #4A6E30 0%, #6E9A50 100%); }
.pigs-bg    { background: linear-gradient(135deg, #3E5C22 0%, #5E8838 100%); }
.other-bg   { background: linear-gradient(135deg, #4A5E30 0%, #708A50 100%); }
.photo-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(45,74,30,0.65);
  border: 1px solid rgba(200,168,58,0.55);
  color: var(--gold-light);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.animal-card-body { padding: 22px 24px; }
.animal-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 7px;
}
.animal-card-body > p {
  color: var(--text-muted);
  font-size: 0.91rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.animal-specs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
.animal-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text);
}
.animal-specs li i { color: var(--green-mid); font-size: 0.78rem; }
.btn-animal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  background: var(--wp-green);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.btn-animal:hover { background: var(--wp-dark); color: var(--white); transform: translateY(-1px); }
.btn-animal i { font-size: 1.1rem; }

/* ══════════════════════════════════════
   SPLIT PHOTO BAND
══════════════════════════════════════ */
.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 420px;
  overflow: hidden;
}
.photo-band-panel {
  position: relative;
  overflow: hidden;
}
.photo-band-panel img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.photo-band-panel:hover img { transform: scale(1.06); }
.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,40,10,0.55) 0%, transparent 55%);
}
.photo-band-label {
  position: absolute;
  bottom: 24px;
  left: 26px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.photo-band-label span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (max-width: 640px) {
  .photo-band { grid-template-columns: 1fr; height: auto; }
  .photo-band-panel { height: 260px; }
}

/* ══════════════════════════════════════
   WHATSAPP BANNER
══════════════════════════════════════ */
.wp-banner {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.wp-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,74,30,0.90) 0%, rgba(74,124,53,0.88) 100%);
}
.wp-banner::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 36%;
  aspect-ratio: 1;
  background-image: url('images/logo-transparent.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}
.wp-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.wp-banner-icon {
  font-size: 4rem;
  color: var(--wp-green);
  filter: drop-shadow(0 4px 18px rgba(37,211,102,0.5));
}
.wp-banner-text { flex: 1; min-width: 240px; }
.wp-banner-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--white);
  margin-bottom: 6px;
}
.wp-banner-text h3 em { color: var(--gold-light); font-style: italic; }
.wp-banner-text p { color: rgba(255,255,255,0.78); font-size: 0.96rem; }
.wp-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.wp-group-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  transition: var(--transition);
  border: 2px solid transparent;
}
.cattle-btn { background: rgba(122,59,30,0.85); border-color: rgba(200,148,58,0.4); }
.sheep-btn  { background: rgba(62,112,37,0.85); border-color: rgba(90,154,53,0.4); }
.meat-btn   { background: rgba(37,211,102,0.22); border-color: rgba(37,211,102,0.5); }
.wp-group-btn:hover { transform: translateY(-3px); opacity: 0.9; color: var(--white); }
.wp-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.wp-qr-img {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-sm);
  border: 3px solid rgba(255,255,255,0.25);
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.wp-qr-img:hover { border-color: var(--wp-green); transform: scale(1.05); }
.wp-qr-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
}
.contact-qr-img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--cream-dark);
  object-fit: cover;
  display: block;
  margin: 12px auto;
  transition: var(--transition);
}
.contact-qr-img:hover { border-color: var(--wp-green); transform: scale(1.04); }

/* ══════════════════════════════════════
   FRESH MEAT
══════════════════════════════════════ */
.meat-section {
  padding: 96px 0;
  background: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}
.meat-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/logo-transparent.webp');
  background-repeat: no-repeat;
  background-position: -8% center;
  background-size: 42% auto;
  opacity: 0.03;
  pointer-events: none;
}
.meat-section .section-header h2 { color: var(--brown); }
.meat-section .section-tag {
  background: rgba(122,59,30,0.08);
  color: var(--brown);
  border-color: rgba(122,59,30,0.3);
}
.meat-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 52px;
}
.meat-feature {
  text-align: center;
  padding: 34px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  border-bottom: 3px solid var(--brown);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.meat-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.meat-feature-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}
.meat-feature h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 9px;
}
.meat-feature p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.meat-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 52px;
}
.meat-cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.meat-cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.meat-cat-header {
  padding: 24px 24px 18px;
  text-align: center;
}
.beef-cat-header    { background: linear-gradient(135deg, #2D4A1E 0%, #4A7C35 100%); }
.chicken-cat-header { background: linear-gradient(135deg, #3A5C28 0%, #5C8A40 100%); }
.pork-cat-header    { background: linear-gradient(135deg, #3E5E22 0%, #5A8030 100%); }
.mutton-cat-header  { background: linear-gradient(135deg, #485A30 0%, #6A8050 100%); }
.meat-cat-emoji { font-size: 2.8rem; display: block; margin-bottom: 8px; }
.meat-cat-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 4px;
}
.meat-cat-sub { font-size: 0.78rem; color: rgba(255,255,255,0.72); margin: 0; }
.meat-cut-list {
  list-style: none;
  padding: 18px 22px;
  margin: 0;
  flex: 1;
}
.meat-cut-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.87rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.meat-cut-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown);
  flex-shrink: 0;
}
.meat-cut-list li:last-child { border-bottom: none; }
.meat-cat-card .cut-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 20px 20px;
  padding: 11px 18px;
  background: var(--wp-green);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: var(--transition);
}
.meat-cat-card .cut-btn:hover { background: var(--wp-dark); transform: translateY(-1px); color: var(--white); }
.meat-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 46px 36px;
  position: relative;
  overflow: hidden;
}
.meat-cta::before {
  content: '"Blessed"';
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  bottom: -20px;
  right: 20px;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
.meat-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 12px;
}
.meat-cta p { font-size: 1.0rem; margin-bottom: 0; color: rgba(255,255,255,0.85); }
.meat-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 18px 0;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-download:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--text-dark); }
.meat-cta-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px !important;
}

/* ══════════════════════════════════════
   TODAY'S STOCK
══════════════════════════════════════ */
.stock-section {
  padding: 96px 0;
  background: rgba(248, 244, 236, 0.76);
  position: relative;
  overflow: hidden;
}
.stock-section::after {
  content: '';
  position: absolute;
  top: 0; right: -6%; bottom: 0;
  width: 50%;
  background-image: url('images/logo-transparent.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
}
.stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.stock-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}
.stock-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stock-card-header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cattle-header { background: linear-gradient(90deg, #3A1F0A, #6A3A18); color: white; }
.sheep-header  { background: linear-gradient(90deg, #1E3A0F, #3E7025); color: white; }
.goats-header  { background: linear-gradient(90deg, #4A3610, #8A7030); color: white; }
.pigs-header   { background: linear-gradient(90deg, #4A1C1C, #7A3434); color: white; }
.meat-header   { background: linear-gradient(90deg, #2A0E0E, #6A2A18); color: white; }
.stock-animal { font-weight: 700; font-size: 0.94rem; }
.stock-badge {
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.stock-badge.available { background: rgba(37,211,102,0.2); color: #00a846; }
.stock-badge.limited   { background: rgba(255,165,0,0.2); color: #c07800; }
.stock-badge.sold-out  { background: rgba(200,0,0,0.15); color: #c00; }
.stock-card-body { padding: 18px 20px; }
.stock-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.stock-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.stock-details span { display: flex; align-items: center; gap: 5px; }
.stock-details i { color: var(--green-mid); }
.stock-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 11px 20px;
  background: var(--wp-green);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}
.stock-btn:hover { background: var(--wp-dark); color: var(--white); }
.stock-note {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.stock-note i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ══════════════════════════════════════
   BLESSED QUOTE BAND
══════════════════════════════════════ */
.quote-band {
  padding: 80px 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45,74,30,0.84) 0%, rgba(74,124,53,0.84) 100%);
}
.quote-band blockquote {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.quote-band blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 18px;
  font-style: italic;
}
.quote-band blockquote p em { color: var(--gold-light); font-style: normal; font-weight: 700; }
.quote-band cite {
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
}

/* ══════════════════════════════════════
   LOCATION
══════════════════════════════════════ */
.location-section {
  padding: 96px 0;
  background: rgba(255, 255, 255, 0.78);
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.location-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--green-mid);
}
.loc-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.location-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.location-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.location-card a  { color: var(--green-mid); font-weight: 600; }
.location-card a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   ABOUT — real photos left, text right
══════════════════════════════════════ */
.about-section {
  padding: 100px 0;
  background: rgba(248, 244, 236, 0.76);
  position: relative;
  overflow: hidden;
}
.about-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold), var(--green-dark));
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .section-tag { display: inline-flex; margin-bottom: 14px; }
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.15;
}
.about-text h2 em { color: var(--gold); font-style: italic; }
.about-tagline {
  font-size: 1rem;
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 20px !important;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.8;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--green-dark);
  transition: var(--transition);
}
.value-item:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.value-item i { color: var(--gold); }
.about-visuals { display: flex; flex-direction: column; gap: 16px; }
.about-photo-main {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.about-photo-main:hover { transform: scale(1.02); }
.about-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-photo-row img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-photo-row img:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  padding: 22px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.05); }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}
@media (max-width: 840px) {
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-values { grid-template-columns: 1fr; }
  .about-photo-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section {
  padding: 96px 0;
  background: rgba(255, 255, 255, 0.78);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.contact-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  color: var(--white);
}
.wp-icon     { background: linear-gradient(135deg, #25D366, #128C7E); }
.phone-icon  { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); }
.groups-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.contact-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 22px; line-height: 1.6; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.82);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: 60px; right: -4%;
  width: 40%;
  aspect-ratio: 1;
  background-image: url('images/logo-transparent.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.065;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.footer-logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-sub {
  display: block;
  font-size: 0.64rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}
.footer-brand p { font-size: 0.87rem; line-height: 1.75; margin-bottom: 20px; color: rgba(255,255,255,0.68); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--wp-green); color: var(--white); border-color: var(--wp-green); }
.footer-links h4,
.footer-animals h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(200,148,58,0.22);
  padding-bottom: 8px;
}
.footer-links ul,
.footer-animals ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a,
.footer-animals a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover,
.footer-animals a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact li i { color: var(--gold-light); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { text-decoration: underline; }
.footer-gold-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════
   RESPONSIVE UTILITY
══════════════════════════════════════ */
@media (max-width: 768px) {
  .how-it-works,
  .animals-section,
  .meat-section,
  .stock-section,
  .location-section,
  .about-section,
  .contact-section { padding: 68px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-trust { gap: 10px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .wp-banner-inner { flex-direction: column; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .location-inner { grid-template-columns: 1fr; }
  .location-map iframe { height: 300px; }
}

