* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f0e4;
  --surface: rgba(255, 252, 246, 0.78);
  --surface-strong: #fffaf1;
  --ink: #1f251d;
  --muted: #5c6557;
  --line: rgba(37, 57, 43, 0.12);
  --primary: #194d7a;
  --accent: #6a8540;
  --shadow: 0 18px 40px rgba(24, 33, 24, 0.12);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(106, 133, 64, 0.18), transparent 24%),
    radial-gradient(circle at right, rgba(25, 77, 122, 0.1), transparent 22%),
    linear-gradient(180deg, #f9f4ea 0%, var(--bg) 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 16px;
}

.header-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(7, 13, 12, 0.28), rgba(7, 13, 12, 0.08));
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1;
  color: #ffffff;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(255, 247, 231, 0.76);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav > a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(12, 18, 16, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
  border-radius: 999px;
}

.page-content {
  min-height: 100vh;
  padding-top: 0;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-track {
  position: relative;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 132px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease, transform 700ms ease;
  transform: scale(1.03);
  background-position: center;
  background-size: cover;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 19, 18, 0.16) 0%, rgba(12, 19, 18, 0.58) 66%, rgba(12, 19, 18, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  color: #f8f4ed;
  transform: translateY(18px);
}

.hero-kicker {
  margin: 0 0 14px;
  color: rgba(255, 247, 231, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-content h1,
.hero-content h2 {
  margin: 0;
  max-width: 11ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 5vw, 4.9rem);
  line-height: 1;
  text-wrap: balance;
}

.hero-content p:last-child {
  max-width: 56ch;
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(248, 244, 237, 0.9);
}

.hero-kicker,
.hero-content h1,
.hero-content h2,
.hero-content p:last-child {
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.hero-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(12, 18, 16, 0.32);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-dot.is-active {
  background: #ffffff;
  transform: scale(1.16);
}

.about-highlight {
  padding: 110px 24px 130px;
  background: #fbf8f1;
}

.about-highlight__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: 72px;
}

.about-highlight__media {
  position: relative;
}

.about-highlight__image-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 64px 20px 64px 20px;
  box-shadow: 0 28px 60px rgba(15, 32, 20, 0.12);
}

.about-highlight__image {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-highlight__shape {
  position: absolute;
  top: 30px;
  right: -22px;
  width: 82%;
  height: 72%;
  border-radius: 56px 14px 56px 14px;
  background: linear-gradient(180deg, rgba(25, 77, 122, 0.12), rgba(106, 133, 64, 0.12));
}

.about-highlight__content h2 {
  margin: 18px 0 20px;
  max-width: 10ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  line-height: 0.95;
  color: #0f4265;
}

.about-highlight__content h2 span {
  color: #1eaf5d;
}

.about-highlight__content p {
  max-width: 32ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #1f251d;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.section-tag span {
  width: 24px;
  height: 1px;
  background: #1eaf5d;
}

.section-tag p {
  margin: 0;
  color: #042f49;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  color: #042f49;
  font-weight: 700;
  text-decoration: none;
}

.section-link:hover,
.section-link:focus-visible {
  color: #1eaf5d;
}

.livestock-showcase {
  padding: 0 24px 120px;
  background:
    radial-gradient(circle at top right, rgba(30, 175, 93, 0.06), transparent 18%),
    linear-gradient(180deg, #fbf8f1 0%, #f4efe5 100%);
}

.livestock-showcase__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.livestock-showcase__heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.livestock-showcase__eyebrow {
  margin: 0 0 14px;
  color: #1eaf5d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.livestock-showcase__heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  color: #0f4265;
}

.livestock-showcase__heading p:last-child {
  max-width: 60ch;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(31, 37, 29, 0.82);
}

.livestock-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.livestock-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  aspect-ratio: 0.95 / 1;
  border: 1px solid rgba(15, 66, 101, 0.08);
  border-radius: 28px;
  text-decoration: none;
  background: #dcd7cc;
  box-shadow: 0 22px 44px rgba(17, 35, 27, 0.12);
  isolation: isolate;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.livestock-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 17, 14, 0.02), rgba(9, 17, 14, 0.08) 38%, rgba(9, 17, 14, 0.76) 100%);
}

.livestock-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 300ms ease;
}

.livestock-tile::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.livestock-tile span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(10, 18, 15, 0.28);
  backdrop-filter: blur(8px);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.livestock-tile span::after {
  content: "Explore";
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.livestock-tile:hover img,
.livestock-tile:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.06);
}

.livestock-tile:hover,
.livestock-tile:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(30, 175, 93, 0.24);
  box-shadow: 0 28px 56px rgba(17, 35, 27, 0.16);
}

.how-it-works {
  position: relative;
  overflow: hidden;
  padding: 110px 24px 120px;
  background-image:
    linear-gradient(135deg, rgba(10, 37, 56, 0.34), rgba(19, 74, 55, 0.3)),
    url("assets/images/how-it-works-bg.jpg");
  background-position: center;
  background-size: cover;
}

.how-it-works__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 14, 13, 0.74) 0%, rgba(8, 19, 17, 0.78) 45%, rgba(9, 17, 14, 0.88) 100%),
    radial-gradient(circle at top right, rgba(30, 175, 93, 0.14), transparent 24%),
    radial-gradient(circle at left, rgba(25, 77, 122, 0.14), transparent 28%);
}

.how-it-works__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.how-it-works__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works__eyebrow {
  margin: 0 0 14px;
  color: #89efb6;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.how-it-works__intro h2 {
  margin: 0;
  max-width: 18ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4.6vw, 4.6rem);
  line-height: 1;
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.how-it-works__intro p {
  max-width: 60ch;
  margin: 18px auto 0;
  color: rgba(245, 248, 250, 0.86);
  font-size: 1rem;
  line-height: 1.8;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.14);
}

.timeline-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1eaf5d, #a5f2c3);
  color: #082117;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.timeline-step__line {
  position: absolute;
  top: 54px;
  left: calc(100% - 10px);
  width: calc(100% - 36px);
  height: 1px;
  background: linear-gradient(90deg, rgba(137, 239, 182, 0.65), rgba(137, 239, 182, 0));
}

.timeline-step:last-child .timeline-step__line {
  display: none;
}

.timeline-step__content {
  margin-top: 24px;
}

.timeline-step__content h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.98;
  color: #ffffff;
}

.timeline-step__content p {
  margin: 14px 0 0;
  color: rgba(245, 248, 250, 0.84);
  font-size: 0.96rem;
  line-height: 1.8;
}

.how-it-works__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 38px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f4265;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.how-it-works__cta:hover,
.how-it-works__cta:focus-visible {
  transform: translateY(-2px);
  background: #89efb6;
}

.services-spotlight {
  padding: 110px 24px 130px;
  background:
    radial-gradient(circle at top left, rgba(30, 175, 93, 0.05), transparent 18%),
    linear-gradient(180deg, #fbf8f1 0%, #f7f1e7 100%);
}

.services-spotlight__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.services-spotlight__intro {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.services-spotlight__eyebrow {
  margin: 0 0 14px;
  color: #7eb515;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.services-spotlight__intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 0.96;
  color: #103f20;
}

.services-spotlight__intro p {
  max-width: 52ch;
  margin: 18px auto 0;
  color: rgba(31, 37, 29, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.services-spotlight__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 72px;
}

.services-spotlight__visual {
  position: relative;
  min-height: 560px;
  margin-left: -34px;
}

.services-spotlight__sunburst {
  position: absolute;
  top: 34px;
  left: -8px;
  width: 190px;
  height: 190px;
}

.services-spotlight__sunburst::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      #174f1f 0deg 14deg,
      transparent 14deg 30deg,
      #174f1f 30deg 44deg,
      transparent 44deg 60deg,
      #174f1f 60deg 74deg,
      transparent 74deg 90deg,
      #174f1f 90deg 104deg,
      transparent 104deg 120deg,
      #174f1f 120deg 134deg,
      transparent 134deg 150deg,
      #174f1f 150deg 164deg,
      transparent 164deg 180deg,
      #174f1f 180deg 194deg,
      transparent 194deg 210deg,
      #174f1f 210deg 224deg,
      transparent 224deg 240deg,
      #174f1f 240deg 254deg,
      transparent 254deg 270deg,
      #174f1f 270deg 284deg,
      transparent 284deg 300deg,
      #174f1f 300deg 314deg,
      transparent 314deg 330deg,
      #174f1f 330deg 344deg,
      transparent 344deg 360deg
    );
  -webkit-mask: radial-gradient(circle, transparent 0 82px, black 82px);
  mask: radial-gradient(circle, transparent 0 82px, black 82px);
  opacity: 0.98;
}

.services-spotlight__circle {
  position: absolute;
  top: 92px;
  left: 78px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #f5c81f;
}

.services-spotlight__image {
  position: absolute;
  left: 84px;
  bottom: 0;
  width: min(100%, 600px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 26px 60px rgba(15, 32, 20, 0.16);
}

.services-spotlight__accent {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 120px;
  height: 120px;
  background:
    radial-gradient(circle at 6px 6px, #7eb515 0 4px, transparent 4px);
  background-size: 20px 20px;
  opacity: 0.85;
}

.services-spotlight__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  padding: 34px 36px;
  border-radius: 28px;
  border-left: 8px solid #7eb515;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px rgba(16, 45, 25, 0.1);
}

.service-card--primary {
  margin-top: 14px;
}

.service-card h3 {
  margin: 0;
  max-width: 16ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1;
  color: #103f20;
}

.service-card p {
  max-width: 34ch;
  margin: 18px 0 0;
  color: rgba(31, 37, 29, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.service-callout {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 0 0;
}

.service-callout__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c617, #ffd64d);
  color: #103f20;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(242, 198, 23, 0.28);
}

.service-callout p {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: #103f20;
}

.service-callout a {
  color: #0f4265;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 800;
  text-decoration: none;
}

.service-callout a:hover,
.service-callout a:focus-visible {
  color: #1eaf5d;
}

.testimonials-band {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 130px;
  background-image:
    linear-gradient(180deg, rgba(17, 58, 28, 0.26), rgba(17, 58, 28, 0.26)),
    url("assets/images/testimonials-bg.jpg");
  background-position: center;
  background-size: cover;
}

.testimonials-band::before,
.testimonials-band::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 38px;
  background:
    radial-gradient(circle at 20px 18px, transparent 24px, #f7f1e7 25px) 0 0 / 120px 38px repeat-x;
  z-index: 2;
}

.testimonials-band::before {
  top: 0;
  transform: rotate(180deg);
}

.testimonials-band::after {
  bottom: 0;
}

.testimonials-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 67, 31, 0.82), rgba(16, 67, 31, 0.72)),
    radial-gradient(circle at top right, rgba(126, 181, 21, 0.18), transparent 24%);
}

.testimonials-band__inner {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.testimonials-band__intro {
  margin-bottom: 38px;
  color: #ffffff;
}

.testimonials-band__eyebrow {
  margin: 0 0 14px;
  color: #8fd823;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.testimonials-band__intro h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.6vw, 4.6rem);
  line-height: 0.96;
  color: #ffffff;
}

.testimonials-carousel {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
}

.testimonials-track {
  position: relative;
  min-height: 380px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: end;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.985);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.testimonial-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.testimonial-card__quote-mark {
  position: absolute;
  top: 26px;
  right: 30px;
  color: rgba(143, 216, 35, 0.26);
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  line-height: 1;
}

.testimonial-card__text {
  margin: 0;
  max-width: 34ch;
  color: #ffffff;
  font-size: clamp(1.18rem, 1.6vw, 1.5rem);
  line-height: 1.9;
}

.testimonial-card__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 12px;
}

.testimonial-card__person img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.testimonial-card__person strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.testimonial-card__person span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.testimonial-dot.is-active {
  background: #ffffff;
  transform: scale(1.18);
}

.contact-banner {
  padding: 88px 24px 120px;
  background: linear-gradient(180deg, #f7f1e7 0%, #f6efe3 100%);
}

.contact-banner__inner {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-banner__spark {
  position: absolute;
  z-index: 1;
}

.contact-banner__spark--left {
  top: -28px;
  left: -18px;
  width: 120px;
  height: 120px;
}

.contact-banner__spark span {
  position: absolute;
  display: block;
  width: 18px;
  border-radius: 999px;
  background: #ffcf1f;
  transform-origin: center bottom;
}

.contact-banner__spark span:nth-child(1) {
  height: 82px;
  left: 22px;
  top: 14px;
  transform: rotate(-52deg);
}

.contact-banner__spark span:nth-child(2) {
  height: 92px;
  left: 52px;
  top: 0;
  transform: rotate(-16deg);
}

.contact-banner__spark span:nth-child(3) {
  height: 76px;
  left: 84px;
  top: 12px;
  transform: rotate(10deg);
}

.contact-banner__card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px 58px;
  border-radius: 28px;
  background: #184d17;
  box-shadow: 0 12px 0 #ffcf1f, 0 28px 56px rgba(19, 43, 21, 0.18);
  overflow: hidden;
}

.contact-banner__content {
  max-width: 760px;
}

.contact-banner__eyebrow {
  margin: 0 0 12px;
  color: #9de12d;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-banner__content h2 {
  margin: 0;
  max-width: 18ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 0.96;
  color: #ffcf1f;
}

.contact-banner__content p:last-child {
  max-width: 58ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.9;
}

.contact-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 176px;
  min-height: 64px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ffcf1f;
  color: #17311a;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-banner__button:hover,
.contact-banner__button:focus-visible {
  transform: translateY(-2px);
  background: #ffe16c;
}

.contact-banner__confetti {
  position: absolute;
  right: 26px;
  bottom: 22px;
  width: 130px;
  height: 130px;
  pointer-events: none;
}

.contact-banner__confetti span {
  position: absolute;
  width: 10px;
  height: 26px;
  border-radius: 999px;
  background: #7ec822;
}

.contact-banner__confetti span:nth-child(1) {
  right: 78px;
  bottom: 74px;
  transform: rotate(-54deg);
}

.contact-banner__confetti span:nth-child(2) {
  right: 50px;
  bottom: 82px;
  transform: rotate(-14deg);
}

.contact-banner__confetti span:nth-child(3) {
  right: 20px;
  bottom: 74px;
  transform: rotate(22deg);
}

.contact-banner__confetti span:nth-child(4) {
  right: 88px;
  bottom: 44px;
  transform: rotate(-78deg);
}

.contact-banner__confetti span:nth-child(5) {
  right: 54px;
  bottom: 50px;
  transform: rotate(18deg);
}

.contact-banner__confetti span:nth-child(6) {
  right: 14px;
  bottom: 42px;
  transform: rotate(-30deg);
}

.contact-banner__confetti span:nth-child(7) {
  right: 82px;
  bottom: 12px;
  transform: rotate(-26deg);
}

.contact-banner__confetti span:nth-child(8) {
  right: 46px;
  bottom: 14px;
  transform: rotate(36deg);
}

.contact-banner__confetti span:nth-child(9) {
  right: 0;
  bottom: 6px;
  transform: rotate(-50deg);
}

.theme-poultry {
  background-image:
    linear-gradient(135deg, rgba(12, 19, 18, 0.18), rgba(18, 79, 132, 0.14)),
    url("pou.webp"),
    linear-gradient(135deg, rgba(215, 126, 25, 0.32), rgba(18, 79, 132, 0.2)),
    radial-gradient(circle at top right, rgba(255, 232, 190, 0.16), transparent 28%),
    linear-gradient(135deg, #5f6c3d 0%, #d77e19 44%, #123f6b 100%);
}

.theme-eggs {
  background-image:
    linear-gradient(135deg, rgba(36, 24, 12, 0.24), rgba(99, 67, 33, 0.08)),
    url("assets/images/eggs-hero.jpg"),
    linear-gradient(135deg, rgba(222, 176, 110, 0.24), rgba(99, 67, 33, 0.14)),
    radial-gradient(circle at top right, rgba(255, 243, 216, 0.24), transparent 24%),
    linear-gradient(135deg, #7a5932 0%, #c49863 50%, #f3dfbb 100%);
}

.theme-goats {
  background-image:
    linear-gradient(135deg, rgba(17, 25, 14, 0.26), rgba(29, 45, 21, 0.1)),
    url("assets/images/goats-shared.jpg"),
    linear-gradient(135deg, rgba(106, 133, 64, 0.28), rgba(29, 45, 21, 0.18)),
    radial-gradient(circle at top right, rgba(248, 233, 200, 0.22), transparent 28%),
    linear-gradient(135deg, #3f5226 0%, #7b9550 48%, #d7bc8d 100%);
}

.theme-cows {
  background-image:
    linear-gradient(135deg, rgba(16, 18, 14, 0.22), rgba(25, 77, 122, 0.1)),
    url("assets/images/cows-shared.jpg"),
    linear-gradient(135deg, rgba(66, 38, 20, 0.18), rgba(25, 77, 122, 0.2)),
    radial-gradient(circle at left, rgba(255, 241, 224, 0.2), transparent 28%),
    linear-gradient(135deg, #4f3424 0%, #8f6950 48%, #214e74 100%);
}

.theme-sheep {
  background-image:
    linear-gradient(135deg, rgba(18, 24, 17, 0.26), rgba(26, 38, 31, 0.1)),
    url("assets/images/sheep-shared.jpg"),
    linear-gradient(135deg, rgba(89, 97, 81, 0.24), rgba(26, 38, 31, 0.16)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, #4e5c46 0%, #8d9581 50%, #d8d6ca 100%);
}

.theme-catfish {
  background-image:
    linear-gradient(135deg, rgba(5, 18, 28, 0.28), rgba(12, 18, 16, 0.1)),
    url("assets/images/catfish-shared.jpg"),
    linear-gradient(135deg, rgba(10, 56, 89, 0.24), rgba(12, 18, 16, 0.18)),
    radial-gradient(circle at top right, rgba(147, 211, 235, 0.2), transparent 26%),
    linear-gradient(135deg, #0d3958 0%, #215c7f 52%, #7ca4b1 100%);
}

.theme-pigs {
  background-image:
    linear-gradient(135deg, rgba(28, 17, 15, 0.24), rgba(70, 47, 43, 0.08)),
    url("assets/images/pigs-shared.jpg"),
    linear-gradient(135deg, rgba(138, 94, 88, 0.22), rgba(70, 47, 43, 0.14)),
    radial-gradient(circle at top left, rgba(250, 223, 216, 0.2), transparent 28%),
    linear-gradient(135deg, #7a4d48 0%, #b27d76 52%, #e4bfaf 100%);
}

.theme-cocks {
  background-image:
    linear-gradient(135deg, rgba(32, 16, 10, 0.22), rgba(114, 29, 25, 0.08)),
    url("assets/images/cocks-shared.jpg"),
    linear-gradient(135deg, rgba(215, 126, 25, 0.26), rgba(114, 29, 25, 0.16)),
    radial-gradient(circle at top right, rgba(255, 235, 200, 0.22), transparent 26%),
    linear-gradient(135deg, #6a251c 0%, #c76f1c 50%, #f0c07b 100%);
}

@media (max-width: 960px) {
  .header-shell {
    border-radius: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px 16px 14px;
  }

  .menu-toggle {
    display: inline-block;
    flex-shrink: 0;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown,
  .dropdown-menu {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .hero-slider,
  .hero-track {
    min-height: 100svh;
  }

  .hero-slide {
    align-items: center;
    padding: 138px 16px 26px;
  }

  .hero-content {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    background: rgba(10, 16, 14, 0.24);
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
    transform: none;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 13ch;
    font-size: clamp(2.7rem, 9vw, 4.6rem);
  }

  .about-highlight {
    padding: 86px 16px 96px;
  }

  .about-highlight__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-highlight__image {
    height: 360px;
  }

  .about-highlight__content h2,
  .about-highlight__content p {
    max-width: none;
  }

  .livestock-showcase {
    padding: 0 16px 96px;
  }

  .livestock-grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-it-works {
    padding: 88px 16px 96px;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-step__line {
    display: none;
  }

  .services-spotlight {
    padding: 88px 16px 96px;
  }

  .services-spotlight__layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .services-spotlight__visual {
    min-height: 480px;
    margin-left: 0;
  }

  .services-spotlight__image {
    left: 48px;
  }

  .testimonials-band {
    padding: 96px 16px 108px;
  }

  .testimonials-carousel {
    width: 100%;
  }

  .testimonials-track {
    min-height: 440px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }

  .contact-banner {
    padding: 72px 16px 96px;
  }

  .contact-banner__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px 54px;
  }

  .contact-banner__button {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px;
  }

  .header-shell {
    gap: 16px;
    padding: 10px 14px 12px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-text strong {
    font-size: 1.35rem;
  }

  .brand-text small {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .page-content {
    padding-top: 0;
  }

  .hero-slider,
  .hero-track {
    min-height: 100svh;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-content p:last-child {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-controls {
    right: 16px;
    bottom: 16px;
  }

  .hero-dots {
    gap: 8px;
    padding: 10px 12px;
  }

  .about-highlight {
    padding: 72px 16px 84px;
  }

  .about-highlight__image-wrap {
    border-radius: 36px 16px 36px 16px;
  }

  .about-highlight__image {
    height: 280px;
  }

  .about-highlight__shape {
    top: 18px;
    right: -10px;
    border-radius: 30px 12px 30px 12px;
  }

  .about-highlight__content h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .section-link {
    margin-top: 32px;
  }

  .livestock-showcase__heading {
    margin-bottom: 30px;
  }

  .livestock-showcase__heading h2 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .livestock-grid-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .livestock-tile {
    aspect-ratio: 1 / 1;
  }

  .livestock-tile span {
    font-size: 1.7rem;
    padding: 14px 16px;
  }

  .livestock-tile span::after {
    font-size: 0.72rem;
  }

  .how-it-works__intro h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .timeline-step {
    min-height: 0;
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .timeline-step__content h3 {
    font-size: 1.7rem;
  }

  .how-it-works__cta {
    width: 100%;
    margin-top: 28px;
  }

  .services-spotlight__intro h2 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .services-spotlight__visual {
    min-height: 0;
    margin-top: 10px;
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .services-spotlight__sunburst {
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
  }

  .services-spotlight__sunburst::before {
    -webkit-mask: radial-gradient(circle, transparent 0 50px, black 50px);
    mask: radial-gradient(circle, transparent 0 50px, black 50px);
  }

  .services-spotlight__circle {
    top: 42px;
    left: 14px;
    width: 180px;
    height: 180px;
  }

  .services-spotlight__image {
    position: relative;
    left: auto;
    bottom: auto;
    display: block;
    width: min(100%, 280px);
    margin: 42px auto 0;
  }

  .services-spotlight__accent {
    width: 76px;
    height: 76px;
    right: 22px;
    bottom: 0;
    background-size: 16px 16px;
  }

  .service-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .service-card h3 {
    font-size: 1.8rem;
  }

  .service-callout {
    gap: 16px;
  }

  .service-callout__icon {
    width: 58px;
    height: 58px;
    font-size: 1.6rem;
  }

  .service-callout p {
    font-size: 1.6rem;
  }

  .service-callout a {
    font-size: 1.3rem;
  }

  .testimonials-band {
    padding: 84px 16px 96px;
  }

  .testimonials-band__intro {
    text-align: center;
  }

  .testimonials-band__intro h2 {
    font-size: clamp(2.3rem, 10vw, 3.3rem);
  }

  .testimonials-track {
    min-height: 470px;
  }

  .testimonial-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .testimonial-card__quote-mark {
    top: 16px;
    right: 18px;
    font-size: 4.5rem;
  }

  .testimonial-card__text {
    font-size: 1.04rem;
    line-height: 1.8;
  }

  .testimonial-card__person img {
    width: 92px;
    height: 92px;
  }

  .testimonial-card__person strong {
    margin-top: 14px;
    font-size: 1rem;
  }

  .contact-banner__spark--left {
    top: -18px;
    left: 0;
    width: 84px;
    height: 84px;
  }

  .contact-banner__spark span {
    width: 12px;
  }

  .contact-banner__spark span:nth-child(1) {
    height: 52px;
    left: 14px;
    top: 12px;
  }

  .contact-banner__spark span:nth-child(2) {
    height: 58px;
    left: 34px;
    top: 0;
  }

  .contact-banner__spark span:nth-child(3) {
    height: 48px;
    left: 56px;
    top: 10px;
  }

  .contact-banner__card {
    padding: 34px 20px 48px;
    border-radius: 24px;
  }

  .contact-banner__content h2 {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
  }

  .contact-banner__button {
    width: 100%;
  }

  .contact-banner__confetti {
    width: 88px;
    height: 88px;
    right: 12px;
    bottom: 14px;
  }

  .contact-banner__confetti span {
    width: 8px;
    height: 18px;
  }
}
