/* ==========================================================================
   Vettail Pharma - Global Stylesheet
   ========================================================================== */

:root {
  /* Brand Colours */
  --brand-teal: #3AA7A7;
  --brand-teal-dark: #2B8787;
  --brand-teal-light: #7FC9C9;
  --brand-navy: #1B3A47;
  --brand-navy-dark: #0F2730;
  --brand-accent: #F58C3B;
  --brand-accent-dark: #D97824;
  --brand-red: #E53E3E;
  --brand-green: #2E8B57;

  /* Neutrals */
  --white: #ffffff;
  --cream: #F7F9FB;
  --grey-50: #F7FAFC;
  --grey-100: #EDF2F7;
  --grey-200: #E2E8F0;
  --grey-300: #CBD5E0;
  --grey-400: #A0AEC0;
  --grey-500: #718096;
  --grey-600: #4A5568;
  --grey-700: #2D3748;
  --grey-800: #1A202C;
  --grey-900: #0F1419;

  /* Typography */
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing & radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27, 58, 71, 0.06);
  --shadow-md: 0 6px 18px rgba(27, 58, 71, 0.09);
  --shadow-lg: 0 18px 40px rgba(27, 58, 71, 0.12);
  --shadow-xl: 0 28px 60px rgba(27, 58, 71, 0.18);
  --shadow-brand: 0 14px 32px rgba(58, 167, 167, 0.28);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms var(--ease);
  --t-med: 320ms var(--ease);
  --t-slow: 600ms var(--ease);

  /* Container */
  --container: 1200px;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-teal-dark); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand-navy); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-navy);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.8rem, 2.6vw + 0.8rem, 2.9rem); }
h2 { font-size: clamp(1.5rem, 1.8vw + 0.8rem, 2.25rem); }
h3 { font-size: clamp(1.15rem, 0.9vw + 0.7rem, 1.4rem); }
p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.2rem; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(40px, 5vw, 70px) 0; position: relative; }
.section-alt { background: var(--cream); }
.section-dark {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
  color: rgba(255,255,255,0.86);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-teal-dark);
  background: rgba(58, 167, 167, 0.12);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
/* Force eyebrow + h2 to stack vertically, never side-by-side */
.section-head > .eyebrow { display: block; width: fit-content; margin-left: auto; margin-right: auto; }
.section-head p { color: var(--grey-600); font-size: 1.05rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-med);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(58, 167, 167, 0.4);
  color: var(--white);
}
.btn-secondary {
  background: var(--white);
  color: var(--brand-navy);
  border-color: var(--grey-200);
}
.btn-secondary:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-accent {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(245, 140, 59, 0.32);
}
.btn-accent:hover { transform: translateY(-2px); color: var(--white); }
.btn svg { width: 16px; height: 16px; transition: transform var(--t-med); }
.btn:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(27, 58, 71, 0.06);
  transition: background var(--t-med), box-shadow var(--t-med), padding var(--t-med);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 68px; width: auto; display: block; transition: transform var(--t-med), height var(--t-med); }
.nav-logo:hover img { transform: scale(1.05) rotate(-2deg); }
.nav.scrolled .nav-logo img { height: 54px; }
@media (max-width: 600px) { .nav-logo img { height: 56px; } .nav.scrolled .nav-logo img { height: 44px; } }
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-text strong {
  font-family: var(--font-heading);
  color: var(--brand-navy);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-logo .logo-text span {
  font-size: 0.68rem;
  color: var(--brand-teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--grey-700);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  position: relative;
  transition: all var(--t-fast);
}
.nav-links a:hover { color: var(--brand-teal-dark); background: rgba(58,167,167,0.08); }
.nav-links a.active { color: var(--brand-teal-dark); background: rgba(58,167,167,0.12); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(58,167,167,0.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(58,167,167,0.12);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--grey-600);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  line-height: 1;
}
.lang-btn:hover { color: var(--brand-teal-dark); }
.lang-btn.active {
  background: var(--brand-teal);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(58,167,167,0.3);
}
/* Desktop: only show the one in nav-cta */
.nav-links .lang-switcher { display: none; }
@media (max-width: 900px) {
  .nav-cta .lang-switcher { display: none; }
  .nav-links .lang-switcher { display: inline-flex; margin: 12px 18px 0; }
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--brand-navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
}
.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); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--t-med);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { display: block; padding: 14px 18px; border-radius: var(--radius-md); text-align: center; }
  .nav-links li { text-align: center; }
  /* Hide the sweep-underline on mobile — the pill background is the active indicator */
  .nav-links a::after { display: none !important; }
  .nav-cta .btn { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 30px 0 30px;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(58, 167, 167, 0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(245, 140, 59, 0.10), transparent 60%),
    linear-gradient(180deg, #F7FDFD 0%, #FFFFFF 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(58, 167, 167, 0.12);
  color: var(--brand-teal-dark);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 0 0 4px rgba(58,167,167,0.2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(58,167,167,0.4); } 50% { box-shadow: 0 0 0 8px rgba(58,167,167,0); } }
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1rem;
  color: var(--grey-600);
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.55;
}
.hero h1 { margin-bottom: 16px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--grey-200);
}
.hero-trust .metric { display: flex; flex-direction: column; }
.hero-trust .metric strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--brand-navy);
  font-weight: 800;
}
.hero-trust .metric span { font-size: 0.78rem; color: var(--grey-500); }

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 320px;
  height: 480px;
  max-width: 520px;
  margin-left: auto;
  overflow: visible;
}

/* Soft concentric pulsing rings behind logo */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(58, 167, 167, 0.22);
  animation: ringSpin 40s linear infinite;
  pointer-events: none;
}
.hero-ring-1 { inset: 0%;  border-color: rgba(58,167,167,0.18); animation-duration: 60s; }
.hero-ring-2 { inset: 6%; border-style: solid; border-color: rgba(58,167,167,0.06); animation: ringSpin 80s linear reverse infinite; }
.hero-ring-3 { inset: -6%; border-color: rgba(245,140,59,0.16); animation-duration: 90s; border-style: dotted; }
@keyframes ringSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Soft radial glow */
.logo-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(58,167,167,0.35) 0%, rgba(58,167,167,0.1) 40%, transparent 70%);
  filter: blur(40px);
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.08); }
}

.hero-visual .logo-card {
  position: absolute;
  inset: 4%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #F4FCFC 70%, #E6F6F6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 60px 120px rgba(27,58,71,0.22),
    0 24px 50px rgba(27,58,71,0.14),
    inset 0 0 100px rgba(58,167,167,0.08);
  padding: 2%;
  animation: logoBreathe 6s ease-in-out infinite;
  z-index: 3;
}

/* ==========================================================================
   Animals Playground — cow in center with 6 friends orbiting, bouncing,
   sparkles and floating butterflies. Zero emoji: all Twemoji SVGs.
   ========================================================================== */
.ap-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

/* Central cow (the "mother") — largest */
.ap-center {
  position: absolute;
  width: 34%;
  aspect-ratio: 1;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: centerBreathe 3.5s ease-in-out infinite;
  filter: drop-shadow(0 14px 28px rgba(27,58,71,0.25));
}
.ap-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes centerBreathe {
  0%, 100% { transform: scale(1) rotate(0); }
  50%      { transform: scale(1.06) rotate(-2deg); }
}

/* Orbital ring of 6 playmates */
.ap-orbit {
  position: absolute;
  inset: 8%;
  animation: orbitSpin 24s linear infinite;
  z-index: 2;
}
@keyframes orbitSpin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}
.ap-stage:hover .ap-orbit { animation-play-state: paused; }

.ap-animal {
  position: absolute;
  width: 22%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  margin: -11% 0 0 -11%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-animal img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(27,58,71,0.2));
  /* Counter-rotate so each animal stays upright as the ring spins */
  animation: orbitCounter 24s linear infinite, playBounce 1.1s ease-in-out infinite;
}
@keyframes orbitCounter {
  from { transform: rotate(0); }
  to   { transform: rotate(-360deg); }
}
@keyframes playBounce {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -6%; }
}

/* Each playmate at a unique angle, pushed out to orbit radius */
.pos-1 { transform: rotate(0deg)    translate(180%) rotate(-0deg); }
.pos-2 { transform: rotate(60deg)   translate(180%) rotate(-60deg); }
.pos-3 { transform: rotate(120deg)  translate(180%) rotate(-120deg); }
.pos-4 { transform: rotate(180deg)  translate(180%) rotate(-180deg); }
.pos-5 { transform: rotate(240deg)  translate(180%) rotate(-240deg); }
.pos-6 { transform: rotate(300deg)  translate(180%) rotate(-300deg); }

/* Personality bounce variants (offset timings so they bob independently) */
.pos-1 img { animation-delay: 0s,    0s; }
.pos-2 img { animation-delay: 0s,    -0.15s; animation-duration: 24s, 1.25s; }
.pos-3 img { animation-delay: 0s,    -0.3s;  animation-duration: 24s, 0.95s; }
.pos-4 img { animation-delay: 0s,    -0.45s; animation-duration: 24s, 1.35s; }
.pos-5 img { animation-delay: 0s,    -0.6s;  animation-duration: 24s, 1.05s; }
.pos-6 img { animation-delay: 0s,    -0.75s; animation-duration: 24s, 0.9s; }

/* Each animal sits on a soft glow pad */
.ap-animal::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,167,167,0.28) 0%, rgba(58,167,167,0.05) 60%, transparent 80%);
  z-index: -1;
}

/* Sparkles sprinkled around the stage */
.ap-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.sparkle {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0.7) 40%, transparent 80%);
  box-shadow:
    0 0 8px rgba(255,255,255,0.8),
    0 0 16px rgba(127,201,201,0.6);
  animation: sparkleTwinkle 2.4s ease-in-out infinite;
}
.sparkle.s1 { top:  8%; left: 22%; animation-delay: 0s;     }
.sparkle.s2 { top: 18%; right:12%; animation-delay: -0.4s; width: 8px; height: 8px; }
.sparkle.s3 { top: 40%; left:  4%; animation-delay: -0.8s; }
.sparkle.s4 { top: 55%; right: 3%; animation-delay: -1.2s; width: 6px; height: 6px; }
.sparkle.s5 { bottom: 12%; left: 20%; animation-delay: -1.6s; }
.sparkle.s6 { bottom: 8%; right: 24%; animation-delay: -2.0s; width: 12px; height: 12px; }
.sparkle.s7 { top: 30%; left: 48%; animation-delay: -0.6s; width: 7px; height: 7px; }
.sparkle.s8 { bottom: 32%; right: 44%; animation-delay: -1.4s; }
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50%      { opacity: 1; transform: scale(1.2); }
}

/* Floating butterfly, bee and chick drifting through the scene */
.ap-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.floater {
  position: absolute;
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 4px 8px rgba(27,58,71,0.18));
}
.f-butterfly {
  top: 10%;
  left: -8%;
  animation: flyAcross1 14s linear infinite, flap 0.3s ease-in-out alternate infinite;
}
.f-bee {
  top: 58%;
  right: -8%;
  width: 28px; height: 28px;
  animation: flyAcross2 12s linear infinite, flap 0.25s ease-in-out alternate infinite;
}
.f-chick {
  bottom: 6%;
  left: 30%;
  width: 32px; height: 32px;
  animation: chickHop 1.2s ease-in-out infinite, chickWalk 16s linear infinite;
}
@keyframes flyAcross1 {
  0%   { left: -10%; top: 12%; }
  25%  { top: 2%; }
  50%  { left: 50%; top: 28%; }
  75%  { top: 15%; }
  100% { left: 110%; top: 18%; }
}
@keyframes flyAcross2 {
  0%   { right: -10%; top: 58%; }
  30%  { top: 48%; }
  60%  { right: 50%; top: 62%; }
  100% { right: 110%; top: 55%; }
}
@keyframes chickHop {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}
@keyframes chickWalk {
  0%   { left: -5%; }
  50%  { left: 70%; }
  100% { left: 110%; }
}
@keyframes flap {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0.75); }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .ap-center { width: 40%; }
  .ap-animal { width: 24%; margin: -12% 0 0 -12%; }
  .pos-1, .pos-2, .pos-3, .pos-4, .pos-5, .pos-6 {
    /* orbit radius is relative to parent, stays proportional */
  }
  .floater { width: 28px; height: 28px; }
}
.hero-visual .logo-card img {
  width: 140%;
  height: 140%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: scale(1.35);
  filter: drop-shadow(0 12px 24px rgba(27,58,71,0.18));
}
@keyframes logoBreathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}

/* ===== Floating info cards on the LEFT side of the logo ===== */
.info-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 14px 20px 14px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(27,58,71,0.14), 0 4px 10px rgba(27,58,71,0.08);
  z-index: 5;
  min-width: 200px;
  border: 1px solid rgba(27,58,71,0.04);
}
.info-card .ic-emoji {
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-teal-dark);
}
.info-card .ic-emoji svg { width: 30px; height: 30px; }
.info-card-1 .ic-emoji { color: var(--brand-green); }
.info-card-2 .ic-emoji { color: var(--brand-accent-dark); }
.info-card-3 .ic-emoji { color: var(--brand-teal-dark); }
.info-card .ic-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 2px;
}
.info-card .ic-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-navy);
  font-size: 1rem;
  line-height: 1.2;
}

/* ===== Orbital carousel — info cards circling the logo ===== */
.orbit-carousel {
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: carouselSpin 28s linear infinite;
  z-index: 6;
}
@keyframes carouselSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.orbit-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 68px;
  margin: -34px 0 0 -105px;
  pointer-events: auto;
}
/* Place at 90° intervals then push outward */
.orbit-card-1 { transform: rotate(-30deg)  translate(240px) rotate(30deg); }
.orbit-card-2 { transform: rotate(60deg)   translate(240px) rotate(-60deg); }
.orbit-card-3 { transform: rotate(150deg)  translate(240px) rotate(-150deg); }
.orbit-card-4 { transform: rotate(240deg)  translate(240px) rotate(-240deg); }

/* Counter-rotate the card CONTENT so it stays upright as the parent spins */
.orbit-card-inner {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 18px;
  padding: 10px 16px 10px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(27,58,71,0.14), 0 4px 10px rgba(27,58,71,0.08);
  border: 1px solid rgba(27,58,71,0.04);
  animation: carouselSpinReverse 28s linear infinite;
}
@keyframes carouselSpinReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.orbit-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(27,58,71,0.12));
  animation: iconBob 2s ease-in-out infinite;
}
@keyframes iconBob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-3px) scale(1.06); }
}
.orbit-text .ic-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 2px;
}
.orbit-text .ic-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-navy);
  font-size: 0.92rem;
  line-height: 1.2;
}

/* Pause on hover so users can read the labels */
.hero-visual:hover .orbit-carousel,
.hero-visual:hover .orbit-card-inner { animation-play-state: paused; }

@media (max-width: 1100px) {
  .orbit-card-1 { transform: rotate(-30deg)  translate(320px) rotate(30deg); }
  .orbit-card-2 { transform: rotate(60deg)   translate(320px) rotate(-60deg); }
  .orbit-card-3 { transform: rotate(150deg)  translate(320px) rotate(-150deg); }
  .orbit-card-4 { transform: rotate(240deg)  translate(320px) rotate(-240deg); }
}
@media (max-width: 900px) {
  .orbit-card { width: 170px; height: 58px; margin: -29px 0 0 -85px; }
  .orbit-card-1 { transform: rotate(-30deg)  translate(260px) rotate(30deg); }
  .orbit-card-2 { transform: rotate(60deg)   translate(260px) rotate(-60deg); }
  .orbit-card-3 { transform: rotate(150deg)  translate(260px) rotate(-150deg); }
  .orbit-card-4 { transform: rotate(240deg)  translate(260px) rotate(-240deg); }
}
@media (max-width: 600px) {
  .orbit-carousel { display: none; }
}

@keyframes cardFloat1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4px,-10px); } }
@keyframes cardFloat2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-4px,8px); } }
@keyframes cardFloat3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(6px,-8px); } }
@keyframes cowWiggle  { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-8deg); } 75% { transform: rotate(8deg); } }
@keyframes henPeck2   { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(4px) rotate(-10deg); } }
@keyframes dogWag2    { 0%,100% { transform: scale(1) rotate(-6deg); } 50% { transform: scale(1.1) rotate(6deg); } }

@media (max-width: 900px) {
  .info-card { min-width: 170px; padding: 10px 16px 10px 10px; }
  .info-card .ic-emoji { width: 40px; height: 40px; font-size: 1.6rem; }
  .info-card .ic-value { font-size: 0.9rem; }
  .info-card-1 { left: -4%; }
  .info-card-2 { left: -4%; }
  .info-card-3 { left: 0; }
}
@media (max-width: 600px) {
  .info-card { min-width: 0; font-size: 0.85rem; }
  .info-card .ic-label { font-size: 0.68rem; }
}

/* ===== Animated animals placed around the logo ===== */
.orbit {
  position: absolute;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.orbit-animal {
  font-size: 2.4rem;
  width: 72px; height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(27,58,71,0.14), 0 2px 6px rgba(27,58,71,0.08);
  line-height: 1;
  transform-origin: center;
}

.orbit-1 { top: 2%;   right: 10%; animation: floatOrbit1 6s ease-in-out infinite; }
.orbit-2 { top: 38%;  right: -4%; animation: floatOrbit2 7s ease-in-out infinite; }
.orbit-3 { bottom: 6%; right: 20%; animation: floatOrbit3 8s ease-in-out infinite; }
.orbit-4 { top: 45%;  left: -6%; animation: floatOrbit4 6.5s ease-in-out infinite; }

@keyframes floatOrbit1 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(-10px, -14px); } }
@keyframes floatOrbit2 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(10px, 12px); } }
@keyframes floatOrbit3 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(-8px, 14px); } }
@keyframes floatOrbit4 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(12px, -10px); } }

/* Each animal has its own personality */
.animal-dog   { animation: dogWag 1.2s ease-in-out infinite; }
.animal-cat   { animation: catPurr 2s ease-in-out infinite; }
.animal-cow   { animation: cowChew 2.4s ease-in-out infinite; }
.animal-hen   { animation: henPeck 0.9s ease-in-out infinite; }

@keyframes dogWag  { 0%, 100% { transform: rotate(-8deg) scale(1); } 50% { transform: rotate(8deg) scale(1.08); } }
@keyframes catPurr { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }
@keyframes cowChew { 0%, 100% { transform: rotate(0) translateY(0); } 30% { transform: rotate(-4deg) translateY(-2px); } 70% { transform: rotate(4deg) translateY(2px); } }
@keyframes henPeck { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(5px) rotate(-14deg); } }

@media (max-width: 600px) {
  .orbit { width: 52px; height: 52px; }
  .orbit-animal { width: 52px; height: 52px; font-size: 1.8rem; }
}

@media (max-width: 900px) {
  .hero { padding: 60px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { margin: 0 auto; max-width: 380px; }
  .floating-card.fc-1 { left: -4%; }
  .floating-card.fc-2 { right: -4%; }
}

/* ==========================================================================
   Feature cards / icon tiles
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .ficon {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(58,167,167,0.18), rgba(58,167,167,0.05));
  color: var(--brand-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--grey-600); font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   Product cards
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.product-card .pimg {
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  background: linear-gradient(135deg, #F8FCFC, #EAF3F5);
  position: relative;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .pimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 800ms var(--ease), filter 800ms var(--ease);
  filter: drop-shadow(0 8px 16px rgba(27,58,71,0.1));
}
.product-card:hover .pimg img {
  transform: scale(1.04) translateY(-4px);
  filter: drop-shadow(0 16px 28px rgba(27,58,71,0.18));
}
.product-card .ptag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.product-card .ptag.poultry { color: var(--brand-accent-dark); }
.product-card .ptag.livestock { color: var(--brand-green); }
.product-card .ptag.pet { color: var(--brand-teal-dark); }
.product-card .pbody { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.product-card .pname {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 4px;
  line-height: 1.25;
}
.product-card .psub {
  font-size: 0.78rem;
  color: var(--grey-500);
  margin-bottom: 8px;
}
.product-card .pdesc {
  font-size: 0.84rem;
  color: var(--grey-600);
  margin-bottom: 12px;
  flex: 1;
  line-height: 1.5;
}
.product-card .pfooter {
  padding-top: 10px;
}
.product-card .ppack { font-size: 0.75rem; }
.product-card .pmore { font-size: 0.78rem; }
.product-card .pfooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--grey-200);
}
.product-card .ppack {
  font-size: 0.8rem;
  color: var(--grey-500);
  font-weight: 600;
}
.product-card .pmore {
  color: var(--brand-teal-dark);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-card .pmore::after { content: '→'; transition: transform var(--t-fast); }
.product-card:hover .pmore::after { transform: translateX(4px); }

/* Product toolbar (search + filters) */
.product-toolbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-bottom: 32px;
}
.search-box {
  position: relative;
  width: 100%;
  max-width: 560px;
}
.search-box .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--grey-500);
  pointer-events: none;
}
.search-box input {
  width: 100%;
  padding: 14px 48px 14px 52px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--grey-800);
  transition: all var(--t-fast);
  box-shadow: 0 2px 8px rgba(27,58,71,0.04);
}
.search-box input:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 4px rgba(58,167,167,0.12), 0 6px 20px rgba(27,58,71,0.08);
}
.search-box input::placeholder { color: var(--grey-400); }
.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--grey-100);
  color: var(--grey-700);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.search-clear:hover { background: var(--brand-teal); color: var(--white); transform: translateY(-50%) rotate(90deg); }

.search-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--grey-600);
}
.search-empty a {
  color: var(--brand-teal-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0;
}
.filters button {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  color: var(--grey-700);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--t-fast);
}
.filters button:hover { border-color: var(--brand-teal); color: var(--brand-teal-dark); }
.filters button.active {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: var(--white);
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3vw + 1rem, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   About split / directors
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split .image-stack {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
}
.split .image-stack-white {
  background: #ffffff !important;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  max-height: 440px;
}
.split .image-stack-white img { padding: 24px !important; object-fit: contain !important; }
.split .image-stack-white .overlay { display: none !important; }
.split .image-stack .overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--white);
  background: linear-gradient(180deg, transparent 40%, rgba(15,39,48,0.7) 100%);
}
.split .image-stack .overlay h3 { color: var(--white); font-size: 1.4rem; }
.split .image-stack .overlay p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.95rem; }
.split .image-stack img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 48px;
}
.split .badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 32px; }
.split .badges span {
  background: rgba(58,167,167,0.1);
  color: var(--brand-teal-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
}
.split ul.checks { list-style: none; padding: 0; margin: 0 0 24px; }
.split ul.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--grey-700);
}
.split ul.checks li::before {
  content: '✓';
  flex: 0 0 24px;
  width: 24px; height: 24px;
  background: var(--brand-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 2px;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* Directors */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.director-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--t-med);
}
.director-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.director-card .avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
}
.director-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.director-card .role { color: var(--brand-teal-dark); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background:
    linear-gradient(135deg, rgba(27,58,71,0.92), rgba(43,135,135,0.88)),
    radial-gradient(circle at 10% 20%, rgba(245,140,59,0.3), transparent 40%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1.05rem; }
.cta-band .cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; text-align: center; } .cta-band .cta-actions { justify-content: center; } }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  transition: all var(--t-med);
}
.contact-item:hover {
  border-color: var(--brand-teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-item .icon {
  flex: 0 0 48px; width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(58,167,167,0.18), rgba(58,167,167,0.05));
  color: var(--brand-teal-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-item h4 { margin: 0 0 4px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-500); font-weight: 600; }
.contact-item p, .contact-item a { margin: 0; color: var(--grey-800); font-weight: 500; }

form.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--grey-700);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--grey-800);
  transition: all var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 4px rgba(58,167,167,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, var(--brand-navy-dark), #0a1a20);
  color: rgba(255,255,255,0.72);
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 36px;
  margin-bottom: 32px;
}
.footer h4 {
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-brand img { height: 150px; width: auto; margin-bottom: 20px; background: rgba(255,255,255,0.96); padding: 16px 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 320px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,0.72); font-size: 0.93rem; transition: color var(--t-fast); }
.footer ul a:hover { color: var(--brand-teal-light); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 12px; font-size: 0.93rem; align-items: flex-start; }
.footer-contact-item .ico {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  color: var(--brand-teal-light);
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-contact-item .ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linejoin: round; stroke-linecap: round; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--brand-teal-light); }
.footer .socials { display: flex; gap: 10px; }
.footer .socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  transition: all var(--t-fast);
}
.footer .socials a:hover { background: var(--brand-teal); transform: translateY(-2px); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-head {
  padding: 40px 0 36px;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(58, 167, 167, 0.28), transparent 60%),
    linear-gradient(180deg, #F4FAFC 0%, #FFFFFF 100%);
  text-align: center;
  position: relative;
}
.page-head h1 { margin-bottom: 14px; }
.page-head p { color: var(--grey-600); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-bottom: 10px;
}
.breadcrumb a { color: var(--brand-teal-dark); }

/* Tighter spacing between page head and the first section below */
.page-head + .section { padding-top: 28px; }
.page-head + section.section-alt { padding-top: 28px; }
.page-head p { margin: 0 auto; max-width: 580px; }
.page-head h1 { margin-bottom: 10px; }

/* ==========================================================================
   Reveal on scroll - multiple variants
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease);
  will-change: transform, opacity;
}
[data-reveal="up"]        { transform: translateY(60px); }
[data-reveal="down"]      { transform: translateY(-40px); }
[data-reveal="left"]      { transform: translateX(-60px); }
[data-reveal="right"]     { transform: translateX(60px); }
[data-reveal="scale"]     { transform: scale(0.88); }
[data-reveal="scale-up"]  { transform: scale(0.92) translateY(40px); }
[data-reveal="blur"]      { filter: blur(12px); transform: translateY(30px); }
[data-reveal="rotate"]    { transform: rotate(-6deg) translateY(40px); }
[data-reveal="flip"]      { transform: perspective(800px) rotateX(20deg) translateY(40px); transform-origin: top; }

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0,0) scale(1) rotate(0) perspective(800px) rotateX(0);
  filter: none;
}

/* staggered delays */
[data-reveal][data-delay="1"] { transition-delay: 80ms; }
[data-reveal][data-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-delay="3"] { transition-delay: 240ms; }
[data-reveal][data-delay="4"] { transition-delay: 320ms; }
[data-reveal][data-delay="5"] { transition-delay: 400ms; }
[data-reveal][data-delay="6"] { transition-delay: 480ms; }
[data-reveal][data-delay="7"] { transition-delay: 560ms; }
[data-reveal][data-delay="8"] { transition-delay: 640ms; }

/* Hero entrance */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideDownBar {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.hero-eyebrow  { animation: heroFadeUp 900ms var(--ease) 100ms both; }
.hero h1       { animation: heroFadeUp 900ms var(--ease) 250ms both; }
.hero-lead     { animation: heroFadeUp 900ms var(--ease) 400ms both; }
.hero-cta      { animation: heroFadeUp 900ms var(--ease) 550ms both; }
.hero-trust    { animation: heroFadeUp 900ms var(--ease) 700ms both; }
.hero-visual   { animation: scaleIn 1100ms var(--ease) 400ms both; }
.floating-card.fc-1 { animation: floatIn 900ms var(--ease) 900ms both, float 6s ease-in-out 1500ms infinite; }
.floating-card.fc-2 { animation: floatIn 900ms var(--ease) 1100ms both, float 6s ease-in-out 1500ms infinite; }
.floating-card.fc-3 { animation: floatIn 900ms var(--ease) 1300ms both, float 6s ease-in-out 1500ms infinite; }
@keyframes floatIn {
  from { opacity: 0; transform: translateY(30px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.highlight-bar { animation: slideDownBar 700ms var(--ease) both; }
.nav { animation: slideDownBar 600ms var(--ease) 100ms both; }

/* Hover lift micro-interaction */
.hover-lift { transition: transform var(--t-med), box-shadow var(--t-med); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Shine effect on product images */
.product-card .pimg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 900ms var(--ease);
  pointer-events: none;
}
.product-card:hover .pimg::after { transform: translateX(100%); }

/* Animated gradient border */
.gradient-border {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-accent), var(--brand-teal));
  background-size: 200% 200%;
  z-index: -1;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Animated underline link */
.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--brand-teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease);
}
.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Counter animation-ready */
.stat .num { display: inline-block; }

/* ==========================================================================
   Mobile-friendly overrides (consolidated)
   ========================================================================== */
@media (max-width: 900px) {
  h1 { font-size: clamp(1.8rem, 6vw + 0.6rem, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 4vw + 0.6rem, 1.9rem); }
  .hero { padding: 30px 0 50px; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-inner > div { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero h1 { text-align: center; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-lead { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-trust {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-trust .metric { align-items: center; text-align: center; }
  .hero-trust .metric strong { font-size: 1.3rem; }
  .hero-cta { gap: 10px; justify-content: center; width: 100%; flex-wrap: wrap; }
  .hero-cta .btn { padding: 12px 20px; font-size: 0.88rem; }
  .highlight-bar { font-size: 0.78rem; padding: 8px 0; }
  .highlight-bar span { display: block; text-align: center; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split .image-stack { max-width: 380px; margin: 0 auto; }
  .section-head { margin-bottom: 28px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
  .features-grid { gap: 16px; }
  .feature-card { padding: 24px; }
  .cta-band { padding: 32px 24px; grid-template-columns: 1fr; text-align: center; }
  .cta-band .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { height: 110px; }
  .stats { gap: 24px; }
  .stat .num { font-size: 2rem; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: clamp(32px, 6vw, 50px) 0; }
  .hero { padding: 20px 0 40px; }
  .hero-visual { max-width: 280px; }
  .hero-trust { padding-top: 20px; margin-top: 24px; flex-wrap: wrap; gap: 16px 24px; }
  .hero-trust .metric { flex: 1 1 45%; }
  /* Mobile nav: logo centered, hamburger absolutely positioned on right */
  .nav-inner { gap: 0; padding: 10px 0; position: relative; justify-content: center; }
  .nav-logo { margin: 0 auto; }
  .nav-cta { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); gap: 0; }
  .nav-cta > a.btn, .nav-cta > .btn { display: none !important; }
  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .section-head .eyebrow { font-size: 0.7rem; padding: 6px 14px; }
  /* Mobile: show 2 small product cards per row instead of full-width */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card .pbody { padding: 10px 12px 12px; }
  .product-card .pname { font-size: 0.88rem; }
  .product-card .psub { font-size: 0.68rem; margin-bottom: 6px; }
  .product-card .pdesc { font-size: 0.74rem; margin-bottom: 8px; line-height: 1.4; }
  .product-card .ppack { font-size: 0.65rem; }
  .product-card .pmore { font-size: 0.7rem; }
  .product-card .ptag { font-size: 0.6rem; padding: 4px 8px; top: 8px; left: 8px; }
  .product-card .pimg { padding: 6px; }
  /* Products page: 2 cards per row on mobile */
  .product-showcase { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-item .pi-image { padding: 8px; }
  .product-item .pi-label { padding: 10px 12px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .product-item .pi-label h3 { font-size: 0.9rem; }
  .product-item .pi-label .pi-cat { font-size: 0.66rem; }
  .product-item .pi-label .pi-pack { font-size: 0.68rem; padding: 4px 8px; }
  .product-item .pi-badge { font-size: 0.62rem; padding: 5px 10px; top: 8px; right: 8px; }
  /* Mobile footer: brand on top full width, then 2 columns for link lists, office full width */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { height: 80px; padding: 10px 14px; }
  .footer-brand p { font-size: 0.88rem; }
  .footer h4 { font-size: 0.78rem; margin-bottom: 14px; }
  .footer ul a { font-size: 0.88rem; }
  /* The "Office" column (address + phone + email) has long content — span full width */
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .value-grid { grid-template-columns: 1fr; }
  .directors-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .filters { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: 8px; }
  .filters button { padding: 8px 16px; font-size: 0.82rem; }
  .cta-band h2 { font-size: 1.4rem; }
  .cta-band p { font-size: 0.95rem; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .page-head { padding: 50px 0 40px; }
}

/* ==========================================================================
   Extra polished animations
   ========================================================================== */

/* Button micro-interactions */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: translate(-50%, -50%);
  transition: width 600ms var(--ease), height 600ms var(--ease);
  pointer-events: none;
}
.btn:hover::before { width: 320%; height: 320%; }
.btn > * { position: relative; z-index: 1; }

/* Nav link underline sweep */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 2px;
  background: var(--brand-teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Section head fade-in line under */
.section-head h2 {
  position: relative;
  display: block;
}
.section-head h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-accent));
  border-radius: 2px;
  margin: 16px auto 0;
  animation: headLineGrow 1s var(--ease) 0.3s both;
}
@keyframes headLineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

/* Eyebrow badge tilt on hover */
.section-head .eyebrow {
  transition: transform var(--t-med), background var(--t-med);
}
.section-head .eyebrow:hover {
  transform: scale(1.05) rotate(-1deg);
  background: rgba(58,167,167,0.2);
}

/* Smooth image lift on product cards */
.product-card, .product-item {
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}

/* Feature-card icon pulse on hover */
.feature-card:hover .ficon {
  animation: iconPulse 0.6s var(--ease);
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12) rotate(-4deg); }
}

/* Stat numbers glow pulse */
.stat .num {
  transition: filter 400ms var(--ease);
}
.section-dark:hover .stat .num {
  filter: drop-shadow(0 0 20px rgba(127,201,201,0.5));
}

/* Contact item slide */
.contact-item {
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.contact-item:hover .icon {
  animation: iconSwing 0.6s var(--ease);
}
@keyframes iconSwing {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-10deg); }
  75%      { transform: rotate(10deg); }
}

/* Fade-up for newly visible product-cards (sweet stagger) */
.product-card, .product-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), box-shadow var(--t-med);
}
.product-card.is-visible, .product-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer links slide indicator */
.footer ul a {
  position: relative;
  padding-left: 0;
  transition: padding-left var(--t-fast), color var(--t-fast);
}
.footer ul a:hover { padding-left: 10px; }
.footer ul a::before {
  content: '→';
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: opacity var(--t-fast), left var(--t-fast);
  color: var(--brand-teal-light);
}
.footer ul a:hover::before { opacity: 1; left: -4px; }

/* Timeline dots pulse */
.timeline-item::before {
  animation: timelinePulse 2.4s ease-in-out infinite;
}
@keyframes timelinePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(58,167,167,0.25); }
  50%      { box-shadow: 0 0 0 10px rgba(58,167,167,0.08); }
}

/* Director avatar float */
.director-card:hover .avatar {
  animation: avatarFloat 0.8s var(--ease);
}
@keyframes avatarFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.05); }
}

/* Hero eyebrow shimmer */
.hero-eyebrow {
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, rgba(58,167,167,0.12) 0%, rgba(58,167,167,0.22) 50%, rgba(58,167,167,0.12) 100%);
  animation: shimmerBar 3s linear infinite;
}
@keyframes shimmerBar {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Filter buttons scale */
.filters button {
  transition: all var(--t-fast), transform 200ms var(--ease);
}
.filters button:active { transform: scale(0.95); }
.filters button.active {
  animation: filterActivate 0.4s var(--ease);
}
@keyframes filterActivate {
  0% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* Page head subtle gradient animation */
.page-head {
  background-size: 200% 200%;
  animation: pageHeadShift 8s ease-in-out infinite;
}
@keyframes pageHeadShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Accessibility: honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none !important; filter: none !important; }
}

/* ==========================================================================
   Misc
   ========================================================================== */
.divider-wave {
  display: block;
  width: 100%;
  height: 60px;
}

.highlight-bar {
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-teal-dark));
  color: rgba(255,255,255,0.9);
  padding: 10px 0;
  font-size: 0.88rem;
  text-align: center;
  letter-spacing: 0.04em;
}
.highlight-bar strong { color: var(--white); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--grey-200);
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
}
.value-card::after {
  content: attr(data-num);
  position: absolute;
  right: -10px; top: -20px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(58,167,167,0.06);
  line-height: 1;
  pointer-events: none;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--grey-600); margin: 0; }

/* Species chips for products page */
.species-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.species-chips span {
  font-size: 0.72rem;
  color: var(--grey-500);
  background: var(--grey-100);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

/* Product detail (on products page) modal-like section */
.pdetail {
  display: none;
}

/* ==========================================================================
   3D Animal Scene section
   ========================================================================== */
.scene-3d-section {
  position: relative;
  height: 640px;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 50% 120%, rgba(58,167,167,0.25), transparent 60%),
    radial-gradient(800px 400px at 50% 0%, rgba(245,140,59,0.10), transparent 60%),
    linear-gradient(180deg, #F4FAFC 0%, #E8F4F6 100%);
  border-top: 1px solid rgba(27,58,71,0.04);
  border-bottom: 1px solid rgba(27,58,71,0.04);
  z-index: 0;
}
.scene-3d-section #scene3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.scene-3d-section .scene-content {
  position: absolute;
  top: 10%;
  left: 0; right: 0;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}
.scene-3d-section .scene-content h2 {
  font-size: clamp(1.8rem, 2.6vw + 0.8rem, 2.8rem);
  margin-bottom: 8px;
}
@media (max-width: 700px) {
  .scene-3d-section { height: 500px; }
  .scene-3d-section .scene-content { top: 6%; padding: 0 20px; }
}

/* ==========================================================================
   Old (now unused) playground styles kept deleted
   ========================================================================== */
.playground-hidden {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: linear-gradient(180deg, #87CEEB 0%, #B0E0E6 40%, #C2E3B4 60%, #90C67C 100%);
  border-top: 1px solid rgba(27,58,71,0.08);
  border-bottom: 1px solid rgba(27,58,71,0.08);
  display: none;
}
.playground-sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, #87CEEB 0%, #D6ECEA 100%);
  z-index: 0;
}
.playground-ground {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(46,139,87,0.3), transparent 60%),
    radial-gradient(ellipse at 75% 100%, rgba(46,139,87,0.25), transparent 60%),
    linear-gradient(180deg, #A5D68A 0%, #7FB26C 100%);
  z-index: 1;
}
.playground-ground::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, transparent 0 12px, rgba(255,255,255,0.3) 12px 14px);
  opacity: 0.5;
}

.playground-text {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  max-width: 600px;
  padding: 0 20px;
  pointer-events: none;
}
.playground-text h2 {
  color: var(--brand-navy);
  font-size: clamp(1.4rem, 2.4vw + 0.5rem, 2.2rem);
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(255,255,255,0.7);
}
.playground-text p {
  color: var(--grey-700);
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(255,255,255,0.6);
}

/* Clouds drifting */
.cloud {
  position: absolute;
  font-size: 3.6rem;
  filter: drop-shadow(0 4px 8px rgba(27,58,71,0.08));
  top: 8%;
  animation: cloudDrift 45s linear infinite;
  z-index: 2;
  opacity: 0.85;
}
.cloud-1 { animation-delay: 0s;   top: 12%; }
.cloud-2 { animation-delay: -15s; top: 28%; font-size: 2.6rem; opacity: 0.7; }
.cloud-3 { animation-delay: -30s; top: 6%;  font-size: 3rem; }
@keyframes cloudDrift {
  from { left: -10%; }
  to   { left: 110%; }
}

/* Running animals (dog, cat, horse, rabbit) */
.runners { position: absolute; left: 0; right: 0; bottom: 12%; z-index: 4; height: 100px; pointer-events: none; }
.runner {
  position: absolute;
  font-size: 3.2rem;
  bottom: 0;
  filter: drop-shadow(0 6px 12px rgba(27,58,71,0.18));
  animation: runAcross 18s linear infinite, bounceRun 0.45s ease-in-out infinite alternate;
  transform-origin: bottom center;
  display: inline-block;
}
.runner-dog    { animation-delay: 0s,    0s;   animation-duration: 16s, 0.4s; }
.runner-cat    { animation-delay: -4s,   0s;   animation-duration: 20s, 0.38s; font-size: 2.6rem; }
.runner-horse  { animation-delay: -10s,  0s;   animation-duration: 14s, 0.5s; font-size: 3.6rem; }
.runner-rabbit { animation-delay: -13s,  0s;   animation-duration: 12s, 0.3s; font-size: 2.4rem; }

@keyframes runAcross {
  from { left: -8%; }
  to   { left: 108%; }
}
@keyframes bounceRun {
  from { transform: translateY(0) scaleX(1); }
  to   { transform: translateY(-10px) scaleX(1.02); }
}

/* Grazing / static animals on the ground */
.grazers {
  position: absolute;
  bottom: 3%;
  left: 0; right: 0;
  z-index: 3;
  height: 80px;
  pointer-events: none;
}
.grazer {
  position: absolute;
  bottom: 0;
  font-size: 3rem;
  filter: drop-shadow(0 6px 12px rgba(27,58,71,0.15));
  animation: grazeBob 3s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes grazeBob {
  0%, 100% { transform: rotate(0) translateY(0); }
  25%      { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(0) translateY(-3px); }
  75%      { transform: rotate(6deg) translateY(0); }
}

/* Butterfly & bee */
.butterflies { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.butterfly {
  position: absolute;
  font-size: 1.8rem;
  filter: drop-shadow(0 4px 8px rgba(27,58,71,0.15));
  animation: flutter 12s linear infinite, flutterWings 0.25s ease-in-out infinite alternate;
}
.butterfly-1 { top: 30%; animation-delay: 0s, 0s; }
.butterfly-2 { top: 45%; font-size: 1.4rem; animation-delay: -6s, 0s; animation-duration: 15s, 0.2s; }
@keyframes flutter {
  0%   { left: -5%;  transform: translateY(0); }
  25%  { transform: translateY(-25px); }
  50%  { left: 50%;  transform: translateY(10px); }
  75%  { transform: translateY(-18px); }
  100% { left: 108%; transform: translateY(0); }
}
@keyframes flutterWings {
  from { filter: drop-shadow(0 4px 8px rgba(27,58,71,0.15)) brightness(1); }
  to   { filter: drop-shadow(0 4px 8px rgba(27,58,71,0.15)) brightness(1.2); }
}

/* Disable playground on very small screens to keep it readable */
@media (max-width: 600px) {
  .playground { height: 260px; }
  .runner { font-size: 2.2rem; }
  .grazer { font-size: 2rem; }
}

/* ==========================================================================
   Animated species band
   ========================================================================== */
.species-band {
  position: relative;
  overflow: hidden;
}
.species-band::before, .species-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.species-band::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.species-band::after  { right: 0; background: linear-gradient(270deg, var(--white), transparent); }

.species-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: speciesScroll 35s linear infinite;
  width: max-content;
  padding: 20px 0;
}
.species-band:hover .species-track { animation-play-state: paused; }
@keyframes speciesScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.species-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--grey-700);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  min-width: 140px;
  transition: all var(--t-med);
}
.species-item:hover { color: var(--brand-teal-dark); transform: translateY(-4px); }
.species-item .s-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #EAF7F7);
  border: 2px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.species-item:hover .s-icon {
  border-color: var(--brand-teal);
  box-shadow: var(--shadow-brand);
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
  color: var(--white);
  animation: wiggle 0.6s ease;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-6deg); }
  75% { transform: rotate(6deg); }
}

/* Animated animal silhouette cards (grid section) */
.animal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.animal-card {
  position: relative;
  padding: 40px 28px;
  background: linear-gradient(135deg, var(--white), var(--cream));
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t-med);
}
.animal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: 0;
}
.animal-card > * { position: relative; z-index: 1; }
.animal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.animal-card:hover::before { opacity: 1; }
.animal-card:hover .a-emoji { animation: bounce 0.6s ease; }
.animal-card:hover h3, .animal-card:hover p { color: var(--white); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.animal-card .a-silhouette {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(58,167,167,0.14), rgba(58,167,167,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-med);
  box-shadow: inset 0 2px 6px rgba(27,58,71,0.04);
}
.animal-card .a-silhouette img {
  width: 72px; height: 72px;
  transition: transform var(--t-med);
  filter: drop-shadow(0 6px 10px rgba(27,58,71,0.18));
}
.animal-card:hover .a-silhouette {
  background: rgba(255,255,255,0.25);
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.3);
}
.animal-card:hover .a-silhouette img {
  transform: scale(1.15) rotate(-4deg);
}
.animal-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  transition: color var(--t-med);
}
.animal-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
  margin: 0;
  transition: color var(--t-med);
}
.animal-card:hover::before {
  /* keep gradient swap overriding white on text handled elsewhere */
}

/* Running paw prints across the page */
.paw-trail {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  font-size: 1.4rem;
  animation: pawRun 20s linear infinite;
}
@keyframes pawRun {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100vw); }
}

/* ==========================================================================
   Product detail (on products page expanded) - optional inline
   ========================================================================== */
.product-detail-section {
  background: var(--cream);
  padding: 80px 0;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.product-detail-grid img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 800px) {
  .product-detail-grid { grid-template-columns: 1fr; }
}

/* Timeline (About/Quality) */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-teal-light), var(--brand-teal-dark), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  width: 50%;
  padding: 20px 36px;
  position: relative;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-item::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--brand-teal);
  border: 3px solid var(--white);
  border-radius: 50%;
  position: absolute;
  top: 28px;
  box-shadow: 0 0 0 4px rgba(58,167,167,0.25);
}
.timeline-item:nth-child(odd)::before { right: -8px; }
.timeline-item:nth-child(even)::before { left: -8px; }
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-item .year {
  font-family: var(--font-heading);
  color: var(--brand-teal-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.timeline-item p { font-size: 0.93rem; color: var(--grey-600); margin: 8px 0 0; }
@media (max-width: 700px) {
  .timeline::before { left: 10px; }
  .timeline-item, .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { width: 100%; left: 0; padding: 20px 10px 20px 36px; text-align: left; }
  .timeline-item::before, .timeline-item:nth-child(odd)::before, .timeline-item:nth-child(even)::before { left: 2px; right: auto; }
}

/* ==========================================================================
   Product showcase (image-first)
   ========================================================================== */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 36px;
}
.product-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--t-med);
  cursor: pointer;
  position: relative;
}
.product-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.product-item .pi-image {
  aspect-ratio: 3 / 4.1;
  overflow: hidden;
  background: linear-gradient(135deg, #F8FCFC, #EAF3F5);
  position: relative;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-item .pi-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 800ms var(--ease), filter 800ms var(--ease);
  filter: drop-shadow(0 10px 20px rgba(27,58,71,0.12));
}
.product-item:hover .pi-image img {
  transform: scale(1.04) translateY(-6px);
  filter: drop-shadow(0 20px 36px rgba(27,58,71,0.22));
}
.product-item .pi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,39,48,0.85) 100%);
  opacity: 0;
  transition: opacity var(--t-med);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
}
.product-item:hover .pi-overlay { opacity: 1; }
.product-item .pi-overlay-text {
  transform: translateY(20px);
  transition: transform 400ms var(--ease);
}
.product-item:hover .pi-overlay-text { transform: translateY(0); }
.product-item .pi-overlay h3 { color: var(--white); font-size: 1.15rem; margin: 0 0 4px; }
.product-item .pi-overlay p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.product-item .pi-overlay .zoom-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
}
.product-item .pi-label {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--grey-100);
}
.product-item .pi-label h3 {
  font-family: var(--font-heading);
  color: var(--brand-navy);
  font-size: 1.15rem;
  margin: 0 0 4px;
}
.product-item .pi-label .pi-cat {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-teal-dark);
  font-weight: 600;
}
.product-item .pi-label .pi-pack {
  background: var(--grey-100);
  color: var(--grey-700);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}
.product-item .pi-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--white);
  color: var(--brand-navy);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.product-item .pi-badge.poultry { color: var(--brand-accent-dark); }
.product-item .pi-badge.livestock { color: var(--brand-green); }
.product-item .pi-badge.pet { color: var(--brand-teal-dark); }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 39, 48, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 300ms var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  animation: lbIn 400ms var(--ease);
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox .close-btn {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox .close-btn:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }
.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.lightbox .lb-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox .lb-nav.prev { left: 24px; }
.lightbox .lb-nav.next { right: 24px; }

/* Quality page: tiles */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.quality-tile {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.quality-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.quality-tile .q-ico {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.quality-tile h3 { font-size: 1.15rem; margin-bottom: 8px; }
.quality-tile p { color: var(--grey-600); font-size: 0.93rem; margin: 0; }
