/* Shared stylesheet generated from page-level CSS. */

/* Shared site baseline */
body.site-page {
  --leaf: #778021;
  --earth: #4D3C25;
  --moss: #5d6719;
  --cream: #f8f4e8;
  --paper: #fffdf6;
  --ink: #1d1b16;
  --muted: #6d665a;
  --line: rgba(77, 60, 37, .18);
  --shadow: 0 24px 70px rgba(43, 35, 23, .14);
  --radius: 8px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.site-page *,
body.site-page *::before,
body.site-page *::after {
  box-sizing: border-box;
}
html:has(body.site-page) {
  scroll-behavior: smooth;
}
body.site-page a {
  color: inherit;
  text-decoration: none;
}
body.site-page img,
body.site-page video,
body.site-page iframe {
  display: block;
  max-width: 100%;
}
body.site-page h1,
body.site-page h2,
body.site-page h3,
body.site-page p,
body.site-page ul,
body.site-page ol {
  margin-top: 0;
}
body.site-page button,
body.site-page input:not(.nav-toggle),
body.site-page select,
body.site-page textarea {
  font: inherit;
}
body.site-page input:not(.nav-toggle),
body.site-page select,
body.site-page textarea {
  width: 100%;
  border: 1px solid rgba(77, 60, 37, .2);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}
body.site-page input:not(.nav-toggle):focus,
body.site-page select:focus,
body.site-page textarea:focus {
  outline: 0;
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(119, 128, 33, .12);
}
body.site-page textarea {
  resize: vertical;
}
body.site-page .section-inner,
body.site-page .wrap {
  width: min(1220px, calc(100% - 36px));
  margin-inline: auto;
}
body.site-page .card,
body.site-page article {
  border-radius: var(--radius);
}

/* index.html */
body.home-page {
      --leaf: #778021;
      --earth: #4D3C25;
      --moss: #5d6719;
      --cream: #f8f4e8;
      --paper: #fffdf6;
      --ink: #1d1b16;
      --muted: #6d665a;
      --line: rgba(77, 60, 37, .18);
      --shadow: 0 24px 70px rgba(43, 35, 23, .14);
      --radius: 8px;
    }
body.home-page * {
      box-sizing: border-box;
    }
html:has(body.home-page) {
      scroll-behavior: smooth;
    }
body.home-page {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.6;
    }
body.home-page a {
      color: inherit;
      text-decoration: none;
    }
body.home-page img,
body.home-page video,
body.home-page iframe {
      max-width: 100%;
      display: block;
    }
body.home-page .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 40;
      padding: 18px clamp(18px, 4vw, 56px);
      transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
    }
body.home-page .site-header.is-solid {
      background: rgba(255, 253, 246, .92);
      box-shadow: 0 14px 50px rgba(29, 27, 22, .08);
      backdrop-filter: blur(18px);
      padding-block: 12px;
    }
body.home-page .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      max-width: 1220px;
      margin: 0 auto;
    }
body.home-page .brand {
      display: grid;
      gap: 0;
      color: #fff;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
    }
body.home-page .site-header.is-solid .brand {
      color: var(--earth);
    }
body.home-page .brand small {
      color: rgba(255, 255, 255, .72);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
    }
body.home-page .site-header.is-solid .brand small {
      color: var(--leaf);
    }
body.home-page .nav {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
    }
body.home-page .site-header.is-solid .nav {
      color: var(--earth);
    }
body.home-page .nav a,
body.home-page .nav button {
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: inherit;
      cursor: pointer;
      font: inherit;
      padding: 10px 14px;
      white-space: nowrap;
    }
body.home-page .nav a:hover,
body.home-page .nav button:hover {
      background: rgba(119, 128, 33, .15);
    }
body.home-page .dropdown {
      position: relative;
    }
body.home-page .dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 240px;
      padding: 8px;
      border: 1px solid rgba(77, 60, 37, .12);
      border-radius: var(--radius);
      background: rgba(255, 253, 246, .96);
      box-shadow: var(--shadow);
      color: var(--earth);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: .18s ease;
    }
body.home-page .dropdown:hover > .dropdown-menu,
body.home-page .dropdown:focus-within > .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
body.home-page .dropdown-menu a {
      display: flex;
      justify-content: space-between;
      border-radius: 6px;
      padding: 10px 12px;
    }
body.home-page .nested {
      border-top: 1px solid var(--line);
      margin-top: 6px;
      padding-top: 6px;
    }
body.home-page .menu-toggle {
      display: none;
      border: 1px solid rgba(255, 255, 255, .35);
      border-radius: 999px;
      background: rgba(255, 255, 255, .12);
      color: #fff;
      font-weight: 800;
      padding: 10px 14px;
      cursor: pointer;
    }
body.home-page .nav-toggle {
      position: absolute;
      inline-size: 1px;
      block-size: 1px;
      opacity: 0;
      pointer-events: none;
    }
body.home-page .nav-toggle:focus-visible + .menu-toggle {
      outline: 2px solid currentColor;
      outline-offset: 3px;
    }
body.home-page .site-header.is-solid .menu-toggle {
      border-color: rgba(77, 60, 37, .2);
      color: var(--earth);
      background: rgba(119, 128, 33, .08);
    }
body.home-page .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      align-items: end;
      overflow: hidden;
      color: #fff;
      background: #2b271b;
    }
body.home-page .hero video,
body.home-page .hero iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: max(100vw, 177.78vh);
      height: max(56.25vw, 100vh);
      object-fit: cover;
      transform: translate(-50%, -50%);
      opacity: .76;
      border: 0;
      pointer-events: none;
    }
body.home-page .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(29, 27, 22, .82), rgba(29, 27, 22, .45) 48%, rgba(29, 27, 22, .16)),
        linear-gradient(0deg, rgba(29, 27, 22, .88), transparent 45%);
      z-index: 1;
    }
body.home-page .hero-fallback {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(29, 27, 22, .48), rgba(29, 27, 22, .62)),
        url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=85") center/cover;
    }
body.home-page .hero-content {
      position: relative;
      z-index: 2;
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
      padding: 160px 0 56px;
    }
body.home-page .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: #efe7c8;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
body.home-page .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--leaf);
    }
body.home-page main section:not(.hero) .eyebrow {
      color: var(--leaf);
    }
body.home-page h1,
body.home-page h2,
body.home-page h3,
body.home-page p {
      margin-top: 0;
    }
body.home-page h1 {
      max-width: 900px;
      margin-bottom: 20px;
      font-size: clamp(46px, 8vw, 112px);
      line-height: .92;
      letter-spacing: 0;
    }
body.home-page .hero-text {
      max-width: 680px;
      color: rgba(255, 255, 255, .84);
      font-size: clamp(17px, 2vw, 22px);
    }
body.home-page .hero-actions,
body.home-page .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }
body.home-page .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 12px 20px;
      font-weight: 800;
      transition: transform .2s ease, background .2s ease, border .2s ease;
    }
body.home-page .btn:hover {
      transform: translateY(-2px);
    }
body.home-page .btn-primary {
      background: var(--leaf);
      color: #fff;
    }
body.home-page .btn-secondary {
      border-color: rgba(255, 255, 255, .45);
      color: #fff;
      background: rgba(255, 255, 255, .1);
    }
body.home-page .hero-panel {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      margin-top: 52px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .15);
      backdrop-filter: blur(18px);
    }
body.home-page .hero-stat {
      min-height: 132px;
      padding: 22px;
      background: rgba(29, 27, 22, .28);
    }
body.home-page .hero-stat strong {
      display: block;
      font-size: 30px;
      line-height: 1;
    }
body.home-page .hero-stat span {
      color: rgba(255, 255, 255, .76);
      font-size: 14px;
    }
body.home-page section {
      padding: 96px clamp(18px, 4vw, 56px);
    }
body.home-page .section-inner {
      max-width: 1220px;
      margin: 0 auto;
    }
body.home-page .section-head {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(280px, .6fr);
      gap: 42px;
      align-items: end;
      margin-bottom: 38px;
    }
body.home-page h2 {
      color: var(--earth);
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1;
      letter-spacing: 0;
    }
body.home-page .lead {
      color: var(--muted);
      font-size: 18px;
    }
body.home-page .band {
      background: var(--cream);
    }
body.home-page .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
      gap: 28px;
      align-items: stretch;
    }
body.home-page .story {
      padding: clamp(24px, 4vw, 44px);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 18px 50px rgba(77, 60, 37, .08);
    }
body.home-page .image-tile {
      min-height: 440px;
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(77, 60, 37, .1), rgba(77, 60, 37, .36)),
        url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1200&q=85") center/cover;
    }
body.home-page .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }
body.home-page .pill {
      border: 1px solid rgba(119, 128, 33, .25);
      border-radius: 999px;
      padding: 8px 12px;
      color: var(--moss);
      background: rgba(119, 128, 33, .08);
      font-size: 13px;
      font-weight: 800;
    }
body.home-page .business-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }
body.home-page .business-card {
      display: grid;
      align-content: space-between;
      min-height: 340px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
    }
body.home-page .card-media {
      min-height: 150px;
      background: var(--earth) center/cover;
    }
body.home-page .livestock { background-image: url("https://images.unsplash.com/photo-1548550023-2bdb3c5beed7?auto=format&fit=crop&w=900&q=85"); }
body.home-page .fertiliser { background-image: url("https://images.unsplash.com/photo-1589923188900-85dae523342b?auto=format&fit=crop&w=900&q=85"); }
body.home-page .agriculture { background-image: url("https://images.unsplash.com/photo-1523741543316-beb7fc7023d8?auto=format&fit=crop&w=900&q=85"); }
body.home-page .agrotourism { background-image: url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=900&q=85"); }
body.home-page .card-body {
      padding: 22px;
    }
body.home-page .card-body h3 {
      margin-bottom: 10px;
      color: var(--earth);
      font-size: 23px;
      line-height: 1.12;
    }
body.home-page .card-body p {
      color: var(--muted);
      font-size: 15px;
    }
body.home-page .feature-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 34px;
    }
body.home-page .feature {
      border-left: 4px solid var(--leaf);
      padding: 4px 0 4px 18px;
    }
body.home-page .feature h3 {
      color: var(--earth);
      margin-bottom: 6px;
    }
body.home-page .feature p {
      color: var(--muted);
      margin-bottom: 0;
    }
body.home-page .rd-grid,
body.home-page .support-grid {
      display: grid;
      grid-template-columns: minmax(0, .72fr) minmax(320px, .48fr);
      gap: 28px;
      align-items: start;
    }
body.home-page .timeline {
      display: grid;
      gap: 14px;
    }
body.home-page .timeline-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px;
      background: #fff;
    }
body.home-page .timeline-item span {
      color: var(--leaf);
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
body.home-page .timeline-item h3 {
      margin: 6px 0;
      color: var(--earth);
    }
body.home-page .quote-box {
      position: sticky;
      top: 100px;
      border-radius: var(--radius);
      padding: 32px;
      color: #fff;
      background: var(--earth);
      box-shadow: var(--shadow);
    }
body.home-page .quote-box h3 {
      font-size: 30px;
      line-height: 1.05;
    }
body.home-page .quote-box p {
      color: rgba(255, 255, 255, .78);
    }
body.home-page .tour-layout {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
body.home-page .tour-step {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
      background: #fff;
    }
body.home-page .tour-step span {
      color: var(--leaf);
      font-size: 13px;
      font-weight: 900;
    }
body.home-page .support-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
      background: #fff;
      box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
    }
body.home-page .contact-list {
      display: grid;
      gap: 16px;
      padding: 0;
      margin: 0;
      list-style: none;
    }
body.home-page .contact-list strong {
      display: block;
      color: var(--earth);
    }
body.home-page form {
      display: grid;
      gap: 14px;
    }
body.home-page label {
      display: grid;
      gap: 6px;
      color: var(--earth);
      font-weight: 800;
      font-size: 13px;
    }
body.home-page input,
body.home-page textarea,
body.home-page select {
      width: 100%;
      border: 1px solid rgba(77, 60, 37, .2);
      border-radius: var(--radius);
      padding: 13px 14px;
      color: var(--ink);
      background: #fff;
      font: inherit;
    }
body.home-page textarea {
      min-height: 120px;
      resize: vertical;
    }
body.home-page .submit {
      border: 0;
      border-radius: 999px;
      padding: 14px 18px;
      background: var(--leaf);
      color: #fff;
      font: inherit;
      font-weight: 900;
      cursor: pointer;
    }
body.home-page footer {
      padding: 42px clamp(18px, 4vw, 56px);
      color: rgba(255, 255, 255, .72);
      background: #251e14;
    }
body.home-page .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      max-width: 1220px;
      margin: 0 auto;
    }
body.home-page .footer-inner strong {
      color: #fff;
    }
@media (max-width: 980px) {
body.home-page .menu-toggle {
        display: inline-flex;
      }
body.home-page .nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid rgba(77, 60, 37, .12);
        border-radius: var(--radius);
        background: rgba(255, 253, 246, .98);
        color: var(--earth);
        box-shadow: var(--shadow);
      }
body.home-page .nav-toggle:checked ~ .nav {
        display: flex;
      }
body.home-page .dropdown-menu {
        position: static;
        display: none;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(119, 128, 33, .06);
      }
body.home-page .dropdown:hover > .dropdown-menu,
body.home-page .dropdown:focus-within > .dropdown-menu {
        display: block;
      }
body.home-page .hero-panel,
body.home-page .business-grid,
body.home-page .tour-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
body.home-page .section-head,
body.home-page .about-grid,
body.home-page .rd-grid,
body.home-page .support-grid {
        grid-template-columns: 1fr;
      }
body.home-page .feature-strip {
        grid-template-columns: 1fr;
      }

    
}
@media (max-width: 640px) {
body.home-page section {
        padding-block: 70px;
      }
body.home-page .hero {
        min-height: 760px;
        align-items: end;
      }
body.home-page .hero iframe {
        display: none;
      }
body.home-page .hero-fallback {
        background:
          linear-gradient(rgba(29, 27, 22, .54), rgba(29, 27, 22, .74)),
          url("../assets/drive/Farm/farm-1.jpg") center/cover;
      }
body.home-page .hero::before {
        background:
          linear-gradient(180deg, rgba(29, 27, 22, .42), rgba(29, 27, 22, .86)),
          linear-gradient(90deg, rgba(29, 27, 22, .78), rgba(29, 27, 22, .22));
      }
body.home-page .hero-content {
        width: min(100% - 28px, 1220px);
        padding: 132px 0 38px;
      }
body.home-page h1 {
        font-size: clamp(40px, 14vw, 62px);
        line-height: .96;
      }
body.home-page .hero-text {
        font-size: 16px;
      }
body.home-page .hero-actions .btn {
        width: 100%;
      }
body.home-page .hero-panel,
body.home-page .business-grid,
body.home-page .tour-layout {
        grid-template-columns: 1fr;
      }
body.home-page .hero-stat {
        min-height: auto;
      }
body.home-page .image-tile {
        min-height: 300px;
      }
body.home-page .footer-inner {
        display: grid;
      }

    
}

  

/* Modern home page redesign */
body.home-page .btn-outline {
  border-color: rgba(77, 60, 37, .22);
  color: var(--earth);
  background: #fff;
}
body.home-page .home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .72fr);
  gap: 42px;
  align-items: center;
}
body.home-page .home-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
body.home-page .home-photo-stack {
  position: relative;
  min-height: 540px;
}
body.home-page .home-photo-stack img {
  position: absolute;
  width: 78%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
body.home-page .home-photo-stack img:first-child {
  top: 0;
  right: 0;
}
body.home-page .home-photo-stack img:last-child {
  left: 0;
  bottom: 0;
  border: 10px solid var(--paper);
}
body.home-page .home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
body.home-page .home-service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
body.home-page .home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
body.home-page .home-service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
body.home-page .home-service-card div {
  padding: 24px;
}
body.home-page .home-service-card span,
body.home-page .experience-feature span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
body.home-page .home-service-card h3,
body.home-page .experience-feature h3 {
  margin-bottom: 10px;
  color: var(--earth);
  font-size: 26px;
  line-height: 1.08;
}
body.home-page .home-service-card p,
body.home-page .experience-feature p {
  margin-bottom: 0;
  color: var(--muted);
}
body.home-page .experience-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
body.home-page .experience-feature {
  display: grid;
  grid-template-columns: minmax(220px, .78fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
}

/* Instagram updates page */
body.instagram-page .nav-news {
  color: inherit;
  background: rgba(255, 255, 255, .12);
}
body.instagram-page .site-header.is-solid .nav-news {
  background: rgba(119, 128, 33, .15);
}
.instagram-page-main {
  --instagram-green: #778021;
  --instagram-earth: #4d3c25;
  --instagram-ink: #1d1b16;
  --instagram-muted: #70685b;
  --instagram-paper: #fffdf6;
  --instagram-cream: #f8f4e8;
  --instagram-line: rgba(77, 60, 37, .14);
  --instagram-shadow: 0 24px 70px rgba(43, 35, 23, .12);
  color: var(--instagram-ink);
  background: var(--instagram-paper);
}
.instagram-hero {
  position: relative;
  overflow: hidden;
  padding: 164px clamp(18px, 4vw, 56px) 104px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(29, 27, 22, .9), rgba(77, 60, 37, .56) 52%, rgba(119, 128, 33, .18)),
    url("../assets/home/farm-team.jpg") center/cover;
}
.instagram-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(180deg, transparent, var(--instagram-paper));
}
.instagram-hero-inner {
  position: relative;
  z-index: 1;
}
.instagram-hero .hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.instagram-hero .eyebrow,
.instagram-bottom-cta .eyebrow {
  color: #efe7c8;
}
.instagram-hero h1 {
  max-width: 880px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .96;
}
.instagram-hero p:not(.hero-breadcrumb):not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}
.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 24px;
  border-radius: 999px;
  padding: 13px 20px;
  color: #fff;
  background: var(--instagram-green);
  box-shadow: 0 14px 30px rgba(119, 128, 33, .24);
  font-weight: 900;
  text-decoration: none;
}
.instagram-btn:focus-visible,
.instagram-post-card:focus-visible {
  outline: 3px solid rgba(119, 128, 33, .45);
  outline-offset: 4px;
}
.instagram-feed-section {
  padding: 92px clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 10% 10%, rgba(119, 128, 33, .1), transparent 24rem),
    var(--instagram-paper);
}
.instagram-feed-head {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin-bottom: 28px;
}
.instagram-feed-head h2,
.instagram-bottom-cta h2 {
  margin: 0;
  color: var(--instagram-earth);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
}
.instagram-feed-head p:not(.eyebrow),
.instagram-bottom-cta p:not(.eyebrow) {
  margin: 0;
  color: var(--instagram-muted);
  font-size: clamp(17px, 2vw, 20px);
}
.instagram-feed-status {
  margin: 0 0 18px;
  border: 1px solid var(--instagram-line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--instagram-muted);
  background: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}
.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.instagram-post-card,
.instagram-skeleton-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--instagram-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(77, 60, 37, .09);
}
.instagram-post-card {
  color: inherit;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.instagram-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 78px rgba(43, 35, 23, .15);
}
.instagram-post-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--instagram-cream);
}
.instagram-post-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.instagram-post-card:hover .instagram-post-image img {
  transform: scale(1.05);
}
.instagram-post-type {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(29, 27, 22, .72);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.instagram-post-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}
.instagram-post-caption {
  min-height: 62px;
  color: var(--instagram-earth);
  font-weight: 800;
  line-height: 1.42;
}
.instagram-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--instagram-muted);
  font-size: 13px;
  font-weight: 800;
}
.instagram-post-link-icon {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 999px;
  color: #fff;
  background: var(--instagram-green);
}
.instagram-skeleton-card {
  padding-bottom: 16px;
}
.instagram-skeleton-image,
.instagram-skeleton-line,
.instagram-skeleton-date {
  display: block;
  background: linear-gradient(90deg, rgba(119, 128, 33, .08), rgba(119, 128, 33, .18), rgba(119, 128, 33, .08));
  background-size: 220% 100%;
  animation: instagram-shimmer 1.35s ease-in-out infinite;
}
.instagram-skeleton-image {
  aspect-ratio: 1 / 1;
}
.instagram-skeleton-line {
  height: 14px;
  margin: 16px 16px 0;
  border-radius: 999px;
}
.instagram-skeleton-line.is-short {
  width: 70%;
}
.instagram-skeleton-date {
  width: 42%;
  height: 12px;
  margin: 18px 16px 0;
  border-radius: 999px;
}
.instagram-bottom-cta {
  padding: 34px clamp(18px, 4vw, 56px) 92px;
  background: var(--instagram-paper);
}
.instagram-bottom-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(37, 53, 29, .18);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(105deg, rgba(37, 53, 29, .94), rgba(77, 60, 37, .82)),
    url("../assets/home/farm-tour.jpg") center/cover;
  box-shadow: var(--instagram-shadow);
}
.instagram-bottom-cta h2,
.instagram-bottom-cta .eyebrow {
  color: #fff;
}
.instagram-bottom-cta p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
}
@keyframes instagram-shimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}
@media (max-width: 1120px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .instagram-bottom-cta-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .instagram-hero {
    padding-top: 138px;
    padding-bottom: 92px;
  }
  .instagram-feed-section {
    padding-block: 68px;
  }
  .instagram-feed-grid {
    grid-template-columns: 1fr;
  }
  .instagram-btn,
  .instagram-bottom-cta .instagram-btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .instagram-post-card,
  .instagram-post-image img {
    transition: none;
  }
  .instagram-skeleton-image,
  .instagram-skeleton-line,
  .instagram-skeleton-date {
    animation: none;
  }
}
body.home-page .experience-feature img {
  width: 100%;
  height: auto;
  min-height: 310px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}
body.home-page .experience-feature .btn {
  margin-top: 20px;
}
body.home-page .impact-grid,
body.home-page .team-feature {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, .65fr);
  gap: 36px;
  align-items: center;
}
body.home-page .impact-list {
  display: grid;
  gap: 14px;
}
body.home-page .home-impact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(119, 128, 33, .16), transparent 26rem),
    radial-gradient(circle at 88% 12%, rgba(77, 60, 37, .08), transparent 24rem),
    linear-gradient(135deg, #f8f4e8 0%, #fffdf6 52%, #eef6d7 100%);
}
body.home-page .home-impact::before {
  content: "";
  position: absolute;
  inset: 24px clamp(16px, 3vw, 44px);
  border: 1px solid rgba(119, 128, 33, .14);
  border-radius: 8px;
  pointer-events: none;
}
body.home-page .home-impact::after {
  content: "";
  position: absolute;
  right: clamp(18px, 7vw, 110px);
  bottom: -22px;
  width: clamp(110px, 16vw, 210px);
  aspect-ratio: 1;
  background: url("../assets/ayam-satoyama.png") center/contain no-repeat;
  opacity: .18;
  pointer-events: none;
}
body.home-page .home-impact .section-inner {
  position: relative;
  z-index: 1;
}
body.home-page .impact-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}
body.home-page .impact-logo-row span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(119, 128, 33, .16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .74)),
    rgba(119, 128, 33, .08);
  box-shadow: 0 14px 34px rgba(77, 60, 37, .10);
}
body.home-page .impact-logo-row img {
  width: 66%;
  max-height: 66%;
  object-fit: contain;
}
body.home-page .impact-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(77, 60, 37, .09);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease;
}
body.home-page .impact-list article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 68px rgba(77, 60, 37, .13);
}
body.home-page .impact-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--earth);
  font-size: 23px;
}
body.home-page .impact-list span {
  color: var(--muted);
}
body.home-page .team-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
body.home-page .partner-section {
  position: relative;
  padding: 92px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(195, 214, 79, .24), transparent 28%),
    linear-gradient(135deg, #f7fbeb 0%, #fff 48%, #eef6d7 100%);
}
body.home-page .partner-section::before {
  content: "";
  position: absolute;
  inset: 18px clamp(16px, 3vw, 44px);
  border: 1px solid rgba(123, 148, 56, .16);
  border-radius: 8px;
  pointer-events: none;
}
body.home-page .partner-section .section-inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(18px, 4vw, 56px);
}
body.home-page .partner-head {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}
body.home-page .partner-head .lead {
  max-width: 720px;
  margin-inline: auto;
}
body.home-page .partner-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  border: 1px solid rgba(123, 148, 56, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 24px 70px rgba(77, 60, 37, .1);
  backdrop-filter: blur(8px);
}
body.home-page .partner-marquee::before,
body.home-page .partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(140px, 20vw);
  pointer-events: none;
}
body.home-page .partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fbfdf2, transparent);
}
body.home-page .partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fbfdf2, transparent);
}
body.home-page .partner-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 28px 20px;
  animation: partner-scroll 34s linear infinite;
}
body.home-page .partner-marquee:hover .partner-track {
  animation-play-state: paused;
}
body.home-page .partner-logo-card {
  position: relative;
  display: grid;
  grid-template-rows: 92px auto;
  gap: 14px;
  align-items: center;
  justify-items: center;
  min-width: 252px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(123, 148, 56, .18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(77, 60, 37, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body.home-page .partner-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(117, 142, 34, .34);
  box-shadow: 0 18px 42px rgba(77, 60, 37, .13);
}
body.home-page .partner-logo-card img {
  position: relative;
  z-index: 1;
  width: 174px;
  height: 86px;
  object-fit: contain;
}
body.home-page .partner-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
body.home-page .partner-logo-card strong {
  color: var(--earth);
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
}
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 980px) {
  body.home-page .home-intro-grid,
  body.home-page .impact-grid,
  body.home-page .team-feature,
  body.home-page .experience-feature,
  body.home-page .experience-feature-grid {
    grid-template-columns: 1fr;
  }
  body.home-page .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.home-page .home-photo-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  body.home-page .home-photo-stack img {
    position: static;
    width: 100%;
    height: 300px;
    border: 0;
  }
}
@media (max-width: 640px) {
  body.home-page .home-service-grid {
    grid-template-columns: 1fr;
  }
  body.home-page .home-photo-stack {
    grid-template-columns: 1fr;
  }
  body.home-page .partner-logo-card {
    min-width: 220px;
    padding-inline: 18px;
  }
  body.home-page .partner-logo-card img {
    width: 146px;
  }
}

/* about.html */
body.about-page {
      --leaf: #778021;
      --earth: #4D3C25;
      --moss: #5d6719;
      --cream: #f8f4e8;
      --paper: #fffdf6;
      --ink: #1d1b16;
      --muted: #6d665a;
      --line: rgba(77, 60, 37, .18);
      --shadow: 0 24px 70px rgba(43, 35, 23, .14);
      --radius: 8px;
    }
body.about-page * {
      box-sizing: border-box;
    }
html:has(body.about-page) {
      scroll-behavior: smooth;
    }
body.about-page {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.6;
    }
body.about-page a {
      color: inherit;
      text-decoration: none;
    }
body.about-page header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 253, 246, .94);
      backdrop-filter: blur(16px);
    }
body.about-page .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      max-width: 1220px;
      margin: 0 auto;
      padding: 16px 22px;
    }
body.about-page .brand {
      color: var(--earth);
      font-weight: 900;
      text-transform: uppercase;
    }
body.about-page .brand small {
      display: block;
      color: var(--leaf);
      font-size: 11px;
      letter-spacing: .14em;
    }
body.about-page nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      color: var(--earth);
      font-size: 14px;
      font-weight: 800;
    }
body.about-page nav a {
      border-radius: 999px;
      padding: 9px 12px;
    }
body.about-page nav a:hover,
body.about-page nav a.active {
      color: var(--leaf);
      background: rgba(119, 128, 33, .12);
    }
body.about-page .dropdown,
body.business-page .dropdown,
body.news-page .dropdown {
      position: relative;
      display: inline-flex;
    }
body.about-page .dropdown-menu,
body.business-page .dropdown-menu,
body.news-page .dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      z-index: 30;
      display: grid;
      min-width: 180px;
      padding: 8px;
      border: 1px solid rgba(77, 60, 37, .12);
      border-radius: var(--radius);
      background: rgba(255, 253, 246, .98);
      box-shadow: var(--shadow, 0 18px 48px rgba(77, 60, 37, .12));
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: .18s ease;
    }
body.about-page .dropdown:hover > .dropdown-menu,
body.about-page .dropdown:focus-within > .dropdown-menu,
body.business-page .dropdown:hover > .dropdown-menu,
body.business-page .dropdown:focus-within > .dropdown-menu,
body.news-page .dropdown:hover > .dropdown-menu,
body.news-page .dropdown:focus-within > .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
body.about-page .dropdown-menu a,
body.business-page .dropdown-menu a,
body.news-page .dropdown-menu a {
      display: block;
      border-radius: 6px;
      white-space: nowrap;
    }
body.about-page .hero {
      position: relative;
      min-height: 78vh;
      display: grid;
      align-items: end;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(29, 27, 22, .86), rgba(29, 27, 22, .48) 48%, rgba(29, 27, 22, .1)),
        url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1800&q=85") center/cover;
    }
body.about-page .wrap {
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
    }
body.about-page .hero-content {
      padding: 120px 0 48px;
    }
body.about-page .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #efe7c8;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
body.about-page .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--leaf);
    }
body.about-page .eyebrow-leaf {
      color: var(--leaf);
    }
body.about-page h1,
body.about-page h2,
body.about-page h3,
body.about-page p {
      margin-top: 0;
    }
body.about-page h1 {
      max-width: 920px;
      margin: 18px 0 18px;
      font-size: clamp(44px, 8vw, 104px);
      line-height: .92;
      letter-spacing: 0;
    }
body.about-page .hero-lead {
      max-width: 720px;
      color: rgba(255, 255, 255, .82);
      font-size: clamp(17px, 2vw, 22px);
    }
body.about-page .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      margin-top: 42px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .16);
      backdrop-filter: blur(18px);
    }
body.about-page .stat {
      min-height: 128px;
      padding: 22px;
      background: rgba(29, 27, 22, .28);
    }
body.about-page .stat strong {
      display: block;
      font-size: 32px;
      line-height: 1;
    }
body.about-page .stat span {
      color: rgba(255, 255, 255, .76);
      font-size: 14px;
    }
body.about-page section {
      padding: 94px 0;
    }
body.about-page .section-head {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
      gap: 40px;
      align-items: end;
      margin-bottom: 34px;
    }
body.about-page h2 {
      color: var(--earth);
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1;
      letter-spacing: 0;
    }
body.about-page .lead {
      color: var(--muted);
      font-size: 18px;
    }
body.about-page .band {
      background: var(--cream);
    }
body.about-page .story-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(320px, .72fr);
      gap: 24px;
      align-items: stretch;
    }
body.about-page .panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 18px 50px rgba(77, 60, 37, .08);
    }
body.about-page .story-card {
      padding: clamp(26px, 4vw, 46px);
    }
body.about-page .story-card p {
      color: var(--muted);
      font-size: 17px;
    }
body.about-page .origin-card {
      display: grid;
      align-content: end;
      min-height: 520px;
      overflow: hidden;
      padding: 26px;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(77, 60, 37, .06), rgba(77, 60, 37, .86)),
        url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1100&q=85") center/cover;
    }
body.about-page .origin-card h3 {
      max-width: 360px;
      margin-bottom: 10px;
      font-size: 36px;
      line-height: 1;
    }
body.about-page .origin-card p {
      color: rgba(255, 255, 255, .8);
      margin-bottom: 0;
    }
body.about-page .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }
body.about-page .pill {
      border: 1px solid rgba(119, 128, 33, .25);
      border-radius: 999px;
      padding: 8px 12px;
      color: var(--moss);
      background: rgba(119, 128, 33, .08);
      font-size: 13px;
      font-weight: 900;
    }
body.about-page .belief-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
body.about-page .belief {
      padding: 28px;
      min-height: 260px;
    }
body.about-page .belief span {
      color: var(--leaf);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
body.about-page .belief h3 {
      margin: 12px 0 10px;
      color: var(--earth);
      font-size: 28px;
      line-height: 1.08;
    }
body.about-page .belief p {
      color: var(--muted);
      margin-bottom: 0;
    }
body.about-page .objective-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }
body.about-page .objective {
      min-height: 210px;
      border-radius: var(--radius);
      padding: 22px;
      color: #fff;
      background: var(--earth);
    }
body.about-page .objective:nth-child(even) {
      background: var(--leaf);
    }
body.about-page .objective strong {
      display: block;
      margin-bottom: 10px;
      font-size: 22px;
      line-height: 1.12;
    }
body.about-page .objective p {
      color: rgba(255, 255, 255, .78);
      margin-bottom: 0;
      font-size: 15px;
    }
body.about-page .rd-layout {
      display: grid;
      grid-template-columns: minmax(0, .75fr) minmax(320px, .46fr);
      gap: 30px;
      align-items: start;
    }
body.about-page .timeline {
      display: grid;
      gap: 14px;
    }
body.about-page .timeline-item {
      position: relative;
      padding: 24px 24px 24px 72px;
    }
body.about-page .timeline-item::before {
      content: attr(data-step);
      position: absolute;
      top: 24px;
      left: 24px;
      display: grid;
      place-items: center;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      color: #fff;
      background: var(--leaf);
      font-size: 12px;
      font-weight: 900;
    }
body.about-page .timeline-item span {
      color: var(--leaf);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
body.about-page .timeline-item h3 {
      margin: 6px 0;
      color: var(--earth);
      font-size: 24px;
    }
body.about-page .timeline-item p {
      color: var(--muted);
      margin-bottom: 0;
    }
body.about-page .sticky-note {
      position: sticky;
      top: 96px;
      padding: 32px;
      color: #fff;
      background: var(--earth);
    }
body.about-page .sticky-note h3 {
      font-size: 34px;
      line-height: 1.04;
    }
body.about-page .sticky-note p {
      color: rgba(255, 255, 255, .78);
    }
body.about-page .mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }
body.about-page .mini {
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius);
      padding: 14px;
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
    }
body.about-page .experience-grid,
body.about-page .store-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
body.about-page .store-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
body.about-page .experience-card,
body.about-page .store-card {
      padding: 24px;
      min-height: 250px;
    }
body.about-page .experience-card span {
      color: var(--leaf);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .12em;
    }
body.about-page .experience-card h3,
body.about-page .store-card h3,
body.about-page .training-note h3 {
      margin: 12px 0 10px;
      color: var(--earth);
      font-size: 26px;
      line-height: 1.08;
    }
body.about-page .experience-card p,
body.about-page .store-card p,
body.about-page .training-note p {
      color: var(--muted);
      margin-bottom: 0;
    }
body.about-page .training-layout {
      display: grid;
      grid-template-columns: minmax(0, .75fr) minmax(320px, .45fr);
      gap: 28px;
      align-items: start;
    }
body.about-page .training-note {
      padding: 30px;
    }
body.about-page .training-note .btn {
      margin-top: 20px;
      color: #fff;
      background: var(--leaf);
    }
body.about-page .cta {
      padding: 68px 0;
      color: #fff;
      background: var(--leaf);
    }
body.about-page .cta-grid {
      display: grid;
      grid-template-columns: minmax(0, .8fr) auto;
      gap: 24px;
      align-items: center;
    }
body.about-page .cta h2 {
      color: #fff;
      margin-bottom: 8px;
    }
body.about-page .cta p {
      max-width: 720px;
      color: rgba(255, 255, 255, .82);
      margin-bottom: 0;
    }
body.about-page .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border-radius: 999px;
      padding: 12px 20px;
      color: var(--earth);
      background: #fff;
      font-weight: 900;
      white-space: nowrap;
    }
body.about-page footer {
      padding: 36px 0;
      color: rgba(255, 255, 255, .72);
      background: #251e14;
    }
body.about-page .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 22px;
    }
body.about-page .footer-inner strong {
      color: #fff;
    }
@media (max-width: 960px) {
body.about-page .nav-shell,
body.about-page .section-head,
body.about-page .story-grid,
body.about-page .rd-layout,
body.about-page .training-layout,
body.about-page .cta-grid {
        grid-template-columns: 1fr;
      }
body.about-page .nav-shell {
        display: grid;
      }
body.about-page .hero-stats,
body.about-page .belief-grid,
body.about-page .objective-grid,
body.about-page .experience-grid,
body.about-page .store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
body.about-page .origin-card {
        min-height: 380px;
      }

    
}
@media (max-width: 620px) {
body.about-page .wrap {
        width: min(100% - 28px, 1220px);
      }
body.about-page section {
        padding: 68px 0;
      }
body.about-page .hero {
        min-height: 82vh;
      }
body.about-page .hero-stats,
body.about-page .belief-grid,
body.about-page .objective-grid,
body.about-page .mini-grid,
body.about-page .experience-grid,
body.about-page .store-grid {
        grid-template-columns: 1fr;
      }
body.about-page .stat,
body.about-page .objective,
body.about-page .experience-card,
body.about-page .store-card {
        min-height: auto;
      }
body.about-page .timeline-item {
        padding-left: 24px;
        padding-top: 70px;
      }
body.about-page .footer-inner {
        display: grid;
      }

    
}

  
/* Center heading */

body.business-page .business-section-head-center{
    max-width:900px;
    margin:0 auto 42px;
    text-align:center;
}

body.business-page .business-section-head-center .eyebrow{
    justify-content:center;
}

/* Placeholder image */

body.business-page .business-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:260px;
    background:
        radial-gradient(circle at top right,
            rgba(119,128,33,.18),
            transparent 45%),
        linear-gradient(135deg,#f6f8ef,#eef3dd);
}

body.business-page .business-placeholder .material-symbols-rounded{
    font-size:72px;
    color:var(--business-green);
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48;
}

body.business-page .bakery-placeholder{
    background:
        radial-gradient(circle at top right,
            rgba(210,170,80,.20),
            transparent 45%),
        linear-gradient(135deg,#fbf8ef,#f5efdf);
}

body.business-page .catering-placeholder{
    background:
        radial-gradient(circle at top right,
            rgba(119,128,33,.18),
            transparent 45%),
        linear-gradient(135deg,#f6f8ef,#edf3e6);
}
/* our_business.php redesign */
body.business-page {
  --business-green: #778021;
  --business-deep: #2f3516;
  --business-earth: #4D3C25;
  --business-cream: #f8f4e8;
  --business-paper: #fffdf6;
  --business-muted: #6d665a;
  --business-line: rgba(77, 60, 37, .14);
  --business-shadow: 0 24px 70px rgba(43, 35, 23, .13);
  background:
    radial-gradient(circle at 14% 14%, rgba(119, 128, 33, .10), transparent 28rem),
    var(--business-paper);
}
body.business-page .business-wrap {
  width: min(1220px, calc(100% - 36px));
  margin-inline: auto;
}
body.business-page .business-hero {
  position: relative;
  overflow: hidden;
  padding: 164px clamp(18px, 4vw, 56px) 104px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(29, 27, 22, .88), rgba(77, 60, 37, .55) 50%, rgba(119, 128, 33, .22)),
    url("../assets/drive/Farm/farm-2.jpg") center/cover;
}
body.business-page .business-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--business-paper));
}
body.business-page .business-hero .business-wrap {
  position: relative;
  z-index: 1;
}
body.business-page .business-breadcrumb,
body.business-page .eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.business-page .business-breadcrumb {
  color: #efe7c8;
}
body.business-page .eyebrow {
  color: var(--business-green);
}
body.business-page .business-hero .eyebrow {
  color: #fff;
}
body.business-page .business-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .94;
}
body.business-page .business-hero p:last-child {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 700;
}
body.business-page .business-overview,
body.business-page .farm-business-section,
body.business-page .business-placeholder-section,
body.business-page .business-cta {
  padding: 92px clamp(18px, 4vw, 56px);
}
body.business-page .business-section-head {
  max-width: 860px;
  margin-bottom: 34px;
}
body.business-page .business-section-head h2,
body.business-page .business-placeholder-card h2,
body.business-page .business-cta h2 {
  margin: 0;
  color: var(--business-earth);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}
body.business-page .business-section-head > p:last-child,
body.business-page .business-placeholder-card p,
body.business-page .business-cta p {
  margin: 16px 0 0;
  color: var(--business-muted);
  font-size: 18px;
}
body.business-page .business-overview-grid,
body.business-page .farm-business-grid {
  display: grid;
  gap: 20px;
}
body.business-page .business-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.business-page .farm-business-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
body.business-page .business-product-stage {
  position: relative;
  padding-top: 76px;
}
body.business-page .business-chicken-runway {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 190px;
  overflow: visible;
  pointer-events: none;
}
body.business-page .business-chicken-runner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: clamp(125px, 14vw, 175px);
  aspect-ratio: 1;
  transform: translate3d(-190px, var(--chicken-start-y, 0), 0);
  animation: business-chicken-to-fertilizer 4.8s cubic-bezier(.38, .08, .2, 1) .25s forwards;
  animation-play-state: paused;
  will-change: transform;
}
body.business-page .business-chicken-runner.is-routed {
  animation-play-state: running;
}
body.business-page .business-chicken-runner img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 10px rgba(77, 60, 37, .2));
  transform: scaleX(-1);
  transform-origin: 50% 100%;
  animation: business-chicken-bob .55s ease-in-out infinite alternate;
}
@keyframes business-chicken-to-fertilizer {
  from {
    transform: translate3d(-190px, var(--chicken-start-y, 0), 0);
  }
  to {
    transform: translate3d(var(--chicken-end-x, 36vw), var(--chicken-end-y, 0), 0);
  }
}
@keyframes business-chicken-bob {
  from {
    transform: translateY(0) rotate(-1deg) scaleX(-1);
  }
  to {
    transform: translateY(-5px) rotate(1deg) scaleX(-1);
  }
}
body.business-page .business-feature-card,
body.business-page .farm-business-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: var(--business-deep);
  box-shadow: var(--business-shadow);
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease;
}
body.business-page .business-anchor {
  position: absolute;
  top: 0;
}
body.business-page .business-feature-card:hover,
body.business-page .farm-business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 86px rgba(43, 35, 23, .18);
}
body.business-page .business-feature-card img,
body.business-page .farm-business-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}
body.business-page .business-feature-card:hover img,
body.business-page .farm-business-card:hover img {
  transform: scale(1.08);
}
body.business-page .business-feature-card::after,
body.business-page .farm-business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(29, 27, 22, .05), rgba(29, 27, 22, .82)),
    linear-gradient(135deg, rgba(47, 53, 22, .42), rgba(119, 128, 33, .12));
}
body.business-page .farm-business-card::after {
  background:
    linear-gradient(180deg, rgba(19, 30, 12, .08), rgba(19, 30, 12, .88)),
    linear-gradient(135deg, rgba(47, 70, 21, .52), rgba(119, 128, 33, .16));
}
body.business-page .business-card-content {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  color: #fff;
}
body.business-page .business-card-content h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}
body.business-page .farm-business-card .business-card-content h3 {
  font-size: clamp(24px, 3vw, 34px);
}
body.business-page .business-card-content p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}
body.business-page .business-card-content a,
body.business-page .business-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: var(--business-green);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(119, 128, 33, .24);
}
body.business-page .farm-business-section,
body.business-page .catering-placeholder {
  background: var(--business-cream);
}
body.business-page .business-placeholder-section {
  background: #fff;
}
body.business-page .business-placeholder-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--business-line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at 88% 16%, rgba(119, 128, 33, .12), transparent 18rem),
    rgba(255, 255, 255, .94);
  box-shadow: 0 20px 60px rgba(77, 60, 37, .08);
}
body.business-page .business-disabled-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--business-earth);
  background: rgba(119, 128, 33, .14);
  font-weight: 900;
  text-decoration: none;
  cursor: default;
}
body.business-page .business-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, .14), transparent 18rem),
    linear-gradient(135deg, #2f3516, #778021);
}
body.business-page .business-cta::after {
  content: "";
  position: absolute;
  left: clamp(16px, 7vw, 110px);
  bottom: -26px;
  width: clamp(120px, 17vw, 220px);
  aspect-ratio: 1;
  background: url("../assets/ayam-satoyama.png") center/contain no-repeat;
  opacity: .14;
  pointer-events: none;
}
body.business-page .business-cta .business-wrap {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
body.business-page .business-cta .eyebrow,
body.business-page .business-cta h2 {
  color: #fff;
}
body.business-page .business-cta p {
  color: rgba(255, 255, 255, .82);
}
body.business-page .business-cta a {
  justify-self: center;
  margin-top: 24px;
  background: #fff;
  color: var(--business-earth);
  box-shadow: 0 18px 42px rgba(29, 27, 22, .18);
}
@media (max-width: 1020px) {
  body.business-page .business-overview-grid,
  body.business-page .farm-business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  body.business-page .business-hero {
    padding-top: 136px;
  }
  body.business-page .business-overview,
  body.business-page .farm-business-section,
  body.business-page .business-placeholder-section,
  body.business-page .business-cta {
    padding-block: 68px;
  }
  body.business-page .business-overview-grid,
  body.business-page .farm-business-grid,
  body.business-page .business-placeholder-card {
    grid-template-columns: 1fr;
  }
  body.business-page .business-feature-card,
  body.business-page .farm-business-card {
    min-height: 390px;
  }
  body.business-page .business-chicken-runway {
    height: 144px;
  }
  body.business-page .business-product-stage {
    padding-top: 56px;
  }
  body.business-page .business-chicken-runner {
    width: 118px;
    animation-duration: 4.2s;
  }
  body.business-page .business-disabled-link,
  body.business-page .business-card-content a,
  body.business-page .business-cta a {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.business-page .business-chicken-runner {
    animation: none;
    transform: translate3d(var(--chicken-end-x, 50%), var(--chicken-end-y, 0), 0);
  }
  body.business-page .business-chicken-runner img {
    animation: none;
  }
}

/* news.html */
/* contact.php / our_support.php */
body.contact-page {
  --leaf: #778021;
  --leaf-dark: #526018;
  --earth: #4D3C25;
  --cream: #f8f4e8;
  --paper: #fffdf6;
  --ink: #1d1b16;
  --muted: #6d665a;
  --line: rgba(77, 60, 37, .14);
  --radius: 8px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(119, 128, 33, .10), transparent 28rem),
    linear-gradient(180deg, #fffdf7 0%, #f8f4e8 100%);
}
body.contact-page .hero {
  position: relative;
  overflow: hidden;
  padding: 140px 22px 92px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(29, 27, 22, .88), rgba(77, 60, 37, .52) 52%, rgba(119, 128, 33, .42)),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .18), transparent 18rem),
    url("../assets/drive/Farm/farm-1.jpg") center/cover;
}
body.contact-page .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 84px;
  background: linear-gradient(180deg, transparent, rgba(248, 244, 232, .96));
  pointer-events: none;
}
body.contact-page .wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: auto;
}
body.contact-page .eyebrow {
  color: #efe7c8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.contact-page h1 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}
body.contact-page .hero p:not(.hero-breadcrumb):not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}
body.contact-page h2 {
  margin: 0 0 18px;
  color: var(--earth);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}
body.contact-page .contact-section {
  padding: 86px 22px 96px;
}
body.contact-page .contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: start;
}
body.contact-page .contact-stack {
  display: grid;
  gap: 24px;
}
body.contact-page .card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 22px 58px rgba(77, 60, 37, .10);
  backdrop-filter: blur(10px);
}
body.contact-page .contact-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
body.contact-page .contact-list li {
  display: grid;
  gap: 6px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(77, 60, 37, .10);
}
body.contact-page .contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
body.contact-page .contact-list strong {
  color: var(--earth);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.contact-page .contact-list span,
body.contact-page .contact-list a,
body.contact-page .farm-location-card p {
  margin: 0;
  color: var(--muted);
}
body.contact-page .contact-list a {
  color: var(--leaf-dark);
  font-weight: 800;
  text-decoration: none;
}
body.contact-page .contact-list a:hover {
  color: var(--leaf);
}
body.contact-page .contact-list .text-map-link {
  justify-self: start;
  margin-top: 4px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--leaf-dark);
  background: rgba(119, 128, 33, .12);
  font-size: 13px;
}
body.contact-page .contact-list .text-map-link:hover {
  background: rgba(119, 128, 33, .18);
}
body.contact-page .farm-location-card {
  display: grid;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(119, 128, 33, .12), rgba(255, 255, 255, .94)),
    #fff;
}
body.contact-page .farm-location-card .eyebrow {
  margin-bottom: 10px;
  color: var(--leaf-dark);
}
body.contact-page .map-button,
body.contact-page .support-enquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  box-shadow: 0 14px 28px rgba(82, 96, 24, .22);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
body.contact-page .map-button:hover,
body.contact-page .support-enquiry-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(82, 96, 24, .28);
}
body.contact-page .support-enquiry-form {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 15px;
}
body.contact-page .support-enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--earth);
  font-size: 13px;
  font-weight: 900;
}
body.contact-page .support-enquiry-form input,
body.contact-page .support-enquiry-form select,
body.contact-page .support-enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(77, 60, 37, .18);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}
body.contact-page .support-enquiry-form textarea {
  min-height: 142px;
  resize: vertical;
}
body.contact-page .support-enquiry-form button {
  width: 100%;
  margin-top: 4px;
}
body.contact-page .contact-faq-section {
  padding: 0 22px 96px;
}
body.contact-page .faq-heading {
  max-width: 760px;
  margin-bottom: 26px;
}
body.contact-page .faq-heading .eyebrow {
  margin-bottom: 10px;
  color: var(--leaf-dark);
}
body.contact-page .faq-accordion {
  display: grid;
  gap: 12px;
}
body.contact-page .faq-accordion details {
  border: 1px solid rgba(77, 60, 37, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
  overflow: hidden;
}
body.contact-page .faq-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--earth);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
body.contact-page .faq-accordion summary::-webkit-details-marker {
  display: none;
}
body.contact-page .faq-accordion summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--leaf-dark);
  background: rgba(119, 128, 33, .12);
  font-size: 22px;
  line-height: 1;
}
body.contact-page .faq-accordion details[open] summary::after {
  content: "-";
}
body.contact-page .faq-accordion p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}
@media (max-width: 900px) {
  body.contact-page .hero {
    padding: 112px 20px 72px;
  }
  body.contact-page .contact-section {
    padding: 60px 20px 72px;
  }
  body.contact-page .contact-faq-section {
    padding: 0 20px 72px;
  }
  body.contact-page .contact-grid {
    grid-template-columns: 1fr;
  }
  body.contact-page .support-enquiry-form {
    position: static;
  }
}
@media (max-width: 560px) {
  body.contact-page h1 {
    font-size: clamp(34px, 12vw, 48px);
  }
  body.contact-page .card {
    padding: 22px;
  }
  body.contact-page .map-button {
    width: 100%;
  }
}

  

/* farm training.html */
body.training-page {
  --leaf: #3f7a16;
  --leaf-light: #eff8d8;
  --leaf-soft: #849934;
  --earth: #4d3922;
  --paper: #fff;
  --ink: #2c2c2c;
  --muted: #646464;
  --footer: #4b351d;
  --radius: 4px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
}
body.training-page * {
  box-sizing: border-box;
}
body.training-page a {
  color: inherit;
  text-decoration: none;
}
body.training-page img {
  display: block;
  max-width: 100%;
}
body.training-page .wrap {
  width: min(1170px, calc(100% - 64px));
  margin: 0 auto;
}
body.training-page header {
  background: #fff;
  border-bottom: 1px solid rgba(77, 57, 34, .08);
}
body.training-page .nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 116px;
  width: min(1170px, calc(100% - 64px));
  margin: 0 auto;
}
body.training-page .brand,
body.training-page .footer-brand {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 88px;
  min-height: 72px;
  color: var(--earth);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: .9;
}
body.training-page .brand-mark {
  display: block;
  font-size: 21px;
  font-style: italic;
}
body.training-page .brand small,
body.training-page .footer-brand small {
  color: var(--leaf);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
body.training-page nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4a731b;
  font-size: 14px;
  font-weight: 800;
}
body.training-page nav a {
  border-radius: 999px;
  padding: 8px 0;
}
body.training-page nav a:hover,
body.training-page nav a.active {
  color: #c6b331;
}
body.training-page .dropdown {
  position: relative;
  display: inline-flex;
}
body.training-page .dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(77, 57, 34, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 48px rgba(77, 57, 34, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}
body.training-page .dropdown:hover > .dropdown-menu,
body.training-page .dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
body.training-page .dropdown-menu a {
  padding: 9px 10px;
  white-space: nowrap;
}
body.training-page .page-title {
  padding: 54px 0 50px;
  text-align: center;
  background: var(--leaf-light);
}
body.training-page .page-title p {
  margin: 0 0 8px;
  color: #4d7d25;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
body.training-page h1 {
  margin: 0;
  color: var(--leaf);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
}
body.training-page .intro {
  padding-top: 54px;
}
body.training-page .main-photo {
  width: min(780px, 100%);
  margin: 0 auto;
}
body.training-page .summary {
  width: min(1120px, 100%);
  margin: 44px auto 0;
  text-align: center;
}
body.training-page h2,
body.training-page h3,
body.training-page p {
  margin-top: 0;
}
body.training-page .summary h2,
body.training-page .program h2 {
  margin-bottom: 12px;
  color: #252525;
  font-size: 20px;
}
body.training-page .summary p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}
body.training-page .program {
  padding-top: 66px;
}
body.training-page .program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 120px;
  row-gap: 54px;
}
body.training-page .program article {
  max-width: 490px;
}
body.training-page .program h3 {
  margin-bottom: 10px;
  color: #222;
  font-size: 18px;
  line-height: 1.18;
}
body.training-page .program p {
  color: #484848;
  font-size: 18px;
  line-height: 1.28;
}
body.training-page .gallery {
  padding-top: 86px;
  padding-bottom: 142px;
}
body.training-page .gallery h2 {
  margin-bottom: 8px;
  color: #31572a;
  font-size: 32px;
  line-height: 1;
}
body.training-page .gallery > p {
  margin-bottom: 26px;
  color: #555;
  font-size: 12px;
  font-weight: 700;
}
body.training-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
body.training-page .gallery-grid img {
  width: 100%;
  aspect-ratio: 374 / 258;
  object-fit: cover;
  border-radius: var(--radius);
}
body.training-page .info-cta {
  padding: 36px 0 34px;
  text-align: center;
  background: #f4f4f4;
}
body.training-page .info-cta h2 {
  margin-bottom: 6px;
  color: #31572a;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.1;
}
body.training-page .info-cta p {
  margin-bottom: 24px;
  color: #333;
  font-size: 13px;
  font-weight: 600;
}
body.training-page .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
body.training-page .cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 265px;
  min-height: 56px;
  padding: 14px 24px;
  color: #fff;
  background: #7b942e;
  font-size: 16px;
  font-weight: 800;
}
body.training-page .cta-actions a:nth-child(2) {
  background: #3e7b07;
}
body.training-page footer {
  color: rgba(255, 255, 255, .76);
  background: var(--footer);
}
body.training-page .footer-inner {
  display: grid;
  grid-template-columns: 150px minmax(260px, 1.2fr) .55fr .95fr;
  gap: 54px;
  width: min(1170px, calc(100% - 64px));
  margin: 0 auto;
  padding: 48px 0 44px;
}
body.training-page .footer-brand {
  align-self: center;
  color: #fff;
}
body.training-page footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
}
body.training-page footer h3 span {
  color: #f1cb29;
}
body.training-page footer p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.45;
}
body.training-page footer a {
  display: inline-block;
}
body.training-page footer div:nth-child(3) a {
  display: block;
  margin-bottom: 15px;
}
body.training-page .social-links {
  display: flex;
  gap: 24px;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}
body.training-page .copyright {
  padding: 16px 24px;
  color: #88966d;
  background: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 900px) {
  body.training-page .wrap,
  body.training-page .nav-shell,
  body.training-page .footer-inner {
    width: min(100% - 32px, 1170px);
  }
  body.training-page .nav-shell {
    display: grid;
    justify-items: center;
    padding: 18px 0;
  }
  body.training-page nav {
    justify-content: center;
    gap: 14px;
  }
  body.training-page .program-grid,
  body.training-page .gallery-grid,
  body.training-page .footer-inner {
    grid-template-columns: 1fr;
  }
  body.training-page .program-grid {
    gap: 30px;
  }
  body.training-page .program article {
    max-width: none;
  }
  body.training-page .gallery {
    padding-bottom: 78px;
  }
}
@media (max-width: 560px) {
  body.training-page nav {
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }
  body.training-page .page-title p,
  body.training-page .summary p,
  body.training-page .program p {
    font-size: 16px;
  }
  body.training-page .cta-actions a {
    width: 100%;
    min-width: 0;
  }
}

/* Farm training page, restyled to follow index.html */
body.training-page {
  --leaf: #778021;
  --earth: #4D3C25;
  --moss: #5d6719;
  --cream: #f8f4e8;
  --paper: #fffdf6;
  --ink: #1d1b16;
  --muted: #6d665a;
  --line: rgba(77, 60, 37, .18);
  --shadow: 0 24px 70px rgba(43, 35, 23, .14);
  --radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
html:has(body.training-page) {
  scroll-behavior: smooth;
}
body.training-page img {
  max-width: 100%;
  display: block;
}
body.training-page .section-inner {
  max-width: 1220px;
  margin: 0 auto;
}
body.training-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 18px clamp(18px, 4vw, 56px);
  border: 0;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
body.training-page .site-header.is-solid {
  background: rgba(255, 253, 246, .92);
  box-shadow: 0 14px 50px rgba(29, 27, 22, .08);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}
body.training-page .nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: auto;
  max-width: 1220px;
  min-height: auto;
  margin: 0 auto;
  padding: 0;
}
body.training-page .brand {
  display: grid;
  gap: 0;
  justify-items: start;
  width: auto;
  min-height: auto;
  color: #fff;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}
body.training-page .site-header.is-solid .brand {
  color: var(--earth);
}
body.training-page .brand small {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}
body.training-page .site-header.is-solid .brand small {
  color: var(--leaf);
}
body.training-page .nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
body.training-page .site-header.is-solid .nav {
  color: var(--earth);
}
body.training-page .nav a,
body.training-page .nav button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 10px 14px;
  white-space: nowrap;
}
body.training-page .nav a:hover,
body.training-page .nav a.active,
body.training-page .nav button:hover {
  color: inherit;
  background: rgba(119, 128, 33, .15);
}
body.training-page .dropdown {
  position: relative;
  display: block;
}
body.training-page .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  min-width: 240px;
  padding: 8px;
  border: 1px solid rgba(77, 60, 37, .12);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, .96);
  box-shadow: var(--shadow);
  color: var(--earth);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}
body.training-page .dropdown:hover > .dropdown-menu,
body.training-page .dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
body.training-page .dropdown-menu a {
  display: flex;
  justify-content: space-between;
  border-radius: 6px;
  padding: 10px 12px;
}
body.training-page .nested {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 6px;
}
body.training-page .menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 800;
  padding: 10px 14px;
  cursor: pointer;
}
body.training-page .nav-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}
body.training-page .nav-toggle:focus-visible + .menu-toggle {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
body.training-page .site-header.is-solid .menu-toggle {
  border-color: rgba(77, 60, 37, .2);
  color: var(--earth);
  background: rgba(119, 128, 33, .08);
}
body.training-page .page-title {
  position: relative;
  padding: 172px clamp(18px, 4vw, 56px) 80px;
  overflow: hidden;
  text-align: left;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(29, 27, 22, .86), rgba(29, 27, 22, .46) 52%, rgba(29, 27, 22, .18)),
    url("../assets/drive/Farm Training/training-1.jpg") center/cover;
}
body.training-page .page-title::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(29, 27, 22, .55), transparent);
  pointer-events: none;
}
body.training-page .page-title .section-inner {
  position: relative;
  z-index: 1;
}
body.training-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #f7f1d9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.training-page .eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--leaf);
}
body.training-page h1,
body.training-page h2,
body.training-page h3,
body.training-page p {
  margin-top: 0;
}
body.training-page h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: clamp(46px, 8vw, 96px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: none;
}
body.training-page section {
  padding: 96px clamp(18px, 4vw, 56px);
}
body.training-page .intro {
  padding-top: 96px;
}
body.training-page .main-photo {
  width: min(860px, 100%);
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
body.training-page .summary {
  width: min(980px, 100%);
  margin: 44px auto 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 50px rgba(77, 60, 37, .08);
}
body.training-page .summary h2,
body.training-page .program h2,
body.training-page .gallery h2,
body.training-page .info-cta h2 {
  color: var(--earth);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}
body.training-page .summary h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 4vw, 40px);
}
body.training-page .summary p,
body.training-page .lead {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}
body.training-page .program {
  padding-top: 0;
}
body.training-page .program h2 {
  margin-bottom: 28px;
}
body.training-page .program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
body.training-page .program-card {
  min-height: 360px;
  max-width: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
}
body.training-page .program-card h3 {
  margin-bottom: 14px;
  color: var(--earth);
  font-size: 23px;
  line-height: 1.12;
}
body.training-page .program-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
body.training-page .band {
  background: var(--cream);
}
body.training-page .section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .6fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}
body.training-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body.training-page .gallery-grid img {
  width: 100%;
  aspect-ratio: 374 / 258;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
}
body.training-page .info-cta {
  padding: 78px clamp(18px, 4vw, 56px);
  text-align: center;
  background: #fff;
}
body.training-page .info-cta h2 {
  max-width: 980px;
  margin: 0 auto 10px;
}
body.training-page .info-cta p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}
body.training-page .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
body.training-page .cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  color: #fff;
  background: var(--leaf);
  font-size: 16px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border .2s ease;
}
body.training-page .cta-actions a:nth-child(2) {
  background: var(--moss);
}
body.training-page .cta-actions a:hover {
  transform: translateY(-2px);
}
body.training-page footer {
  padding: 42px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, .72);
  background: #251e14;
}
body.training-page .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  width: auto;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
}
body.training-page .footer-inner strong {
  color: #fff;
}
@media (max-width: 980px) {
  body.training-page .menu-toggle {
    display: inline-flex;
  }
  body.training-page .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(77, 60, 37, .12);
    border-radius: var(--radius);
    background: rgba(255, 253, 246, .98);
    color: var(--earth);
    box-shadow: var(--shadow);
  }
  body.training-page .nav-toggle:checked ~ .nav {
    display: flex;
  }
  body.training-page .dropdown-menu {
    position: static;
    display: none;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(119, 128, 33, .06);
  }
  body.training-page .dropdown:hover > .dropdown-menu,
  body.training-page .dropdown:focus-within > .dropdown-menu {
    display: block;
  }
  body.training-page .program-grid,
  body.training-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.training-page .section-head {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  body.training-page section {
    padding-block: 70px;
  }
  body.training-page .page-title {
    padding-top: 140px;
  }
  body.training-page .program-grid,
  body.training-page .gallery-grid {
    grid-template-columns: 1fr;
  }
  body.training-page .program-card {
    min-height: auto;
  }
  body.training-page .footer-inner {
    display: grid;
  }
}

/* Shared PHP include header/footer */
body.site-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 14px clamp(18px, 4vw, 56px);
  border: 0;
  background: linear-gradient(180deg, rgba(29, 27, 22, .18), rgba(29, 27, 22, .04) 72%, transparent);
  backdrop-filter: blur(6px);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
body.site-page .site-header.is-solid {
  background: rgba(255, 253, 246, .92);
  box-shadow: 0 14px 50px rgba(29, 27, 22, .08);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}
body.site-page .nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  width: auto;
  max-width: 1220px;
  min-height: auto;
  margin: 0 auto;
  padding: 0;
}
body.site-page .brand {
  display: none;
  align-items: center;
  width: 90px;
  min-height: auto;
}
body.site-page .site-header.is-solid .brand {
  display: inline-flex;
}
body.site-page .site-header.is-solid .nav-shell {
  justify-content: space-between;
}
body.site-page .brand img {
  display: block;
  width: 76px;
  height: auto;
  transition: width .25s ease;
}
body.site-page .site-header.is-solid .brand img {
  width: 68px;
}
body.site-page .nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .24);
}
body.site-page .nav-list,
body.site-page .dropdown-menu {
  list-style: none;
  margin: 0;
}
body.site-page .nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}
body.site-page .dropdown-menu {
  padding: 8px;
}
body.site-page .site-header.is-solid .nav {
  color: var(--earth);
  text-shadow: none;
}
body.site-page .nav a,
body.site-page .nav button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 10px 14px;
  text-decoration: none;
  white-space: nowrap;
}
body.site-page .mobile-submenu-toggle {
  display: none;
}
body.site-page .nav a:hover,
body.site-page .nav a.active,
body.site-page .nav button:hover,
body.site-page .nav button.active {
  color: inherit;
  background: rgba(255, 255, 255, .12);
}
body.site-page .site-header.is-solid .nav a:hover,
body.site-page .site-header.is-solid .nav a.active,
body.site-page .site-header.is-solid .nav button:hover,
body.site-page .site-header.is-solid .nav button.active {
  background: rgba(119, 128, 33, .15);
}
body.home-page .nav-home,
body.about-page .nav-about-group,
body.about-page .nav-about,
body.training-page .nav-business,
body.training-page .nav-agrotourism,
body.training-page .nav-training,
body.tour-page .nav-business,
body.tour-page .nav-agrotourism,
body.tour-page .nav-tour,
body.agrotourism-page .nav-business,
body.agrotourism-page .nav-agrotourism,
body.livestock-page .nav-business,
body.livestock-page .nav-livestock,
body.fertilizer-page .nav-business,
body.fertilizer-page .nav-fertilizer,
body.research-page .nav-about-group,
body.research-page .nav-research,
body.certifications-page .nav-about-group,
body.certifications-page .nav-certifications,
body.organic-feed-page .nav-organic-feed,
body.organic-chicken-page .nav-organic-chicken,
body.organic-plant-page .nav-organic-plant,
body.organic-compost-page .nav-organic-compost,
body.business-page .nav-business,
body.news-page .nav-news,
body.contact-page .nav-contact {
  color: inherit;
  background: rgba(255, 255, 255, .12);
}
body.home-page .site-header.is-solid .nav-home,
body.about-page .site-header.is-solid .nav-about-group,
body.about-page .site-header.is-solid .nav-about,
body.training-page .site-header.is-solid .nav-business,
body.training-page .site-header.is-solid .nav-agrotourism,
body.training-page .site-header.is-solid .nav-training,
body.tour-page .site-header.is-solid .nav-business,
body.tour-page .site-header.is-solid .nav-agrotourism,
body.tour-page .site-header.is-solid .nav-tour,
body.agrotourism-page .site-header.is-solid .nav-business,
body.agrotourism-page .site-header.is-solid .nav-agrotourism,
body.livestock-page .site-header.is-solid .nav-business,
body.livestock-page .site-header.is-solid .nav-livestock,
body.fertilizer-page .site-header.is-solid .nav-business,
body.fertilizer-page .site-header.is-solid .nav-fertilizer,
body.research-page .site-header.is-solid .nav-about-group,
body.research-page .site-header.is-solid .nav-research,
body.certifications-page .site-header.is-solid .nav-about-group,
body.certifications-page .site-header.is-solid .nav-certifications,
body.organic-feed-page .site-header.is-solid .nav-organic-feed,
body.organic-chicken-page .site-header.is-solid .nav-organic-chicken,
body.organic-plant-page .site-header.is-solid .nav-organic-plant,
body.organic-compost-page .site-header.is-solid .nav-organic-compost,
body.business-page .site-header.is-solid .nav-business,
body.news-page .site-header.is-solid .nav-news,
body.contact-page .site-header.is-solid .nav-contact {
  background: rgba(119, 128, 33, .15);
}
body.site-page .dropdown {
  position: relative;
  display: block;
}
body.site-page .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  display: block;
  min-width: 240px;
  padding: 8px;
  border: 1px solid rgba(77, 60, 37, .12);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, .96);
  box-shadow: var(--shadow, 0 24px 70px rgba(43, 35, 23, .14));
  color: var(--earth);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}
body.site-page .dropdown:hover > .dropdown-menu,
body.site-page .dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
body.site-page .dropdown-menu a {
  display: flex;
  justify-content: space-between;
  border-radius: 6px;
  padding: 10px 12px;
}
body.site-page .dropdown-submenu {
  position: relative;
}
body.site-page .dropdown-submenu > .nested-menu {
  top: -8px;
  left: calc(100% + 8px);
}
body.site-page .dropdown-submenu:hover > .nested-menu,
body.site-page .dropdown-submenu:focus-within > .nested-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
body.site-page .nested {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 6px;
}
body.site-page .menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 800;
  padding: 10px 14px;
  cursor: pointer;
}
body.site-page .nav-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}
body.site-page .nav-toggle:focus-visible + .menu-toggle {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
body.site-page .site-header.is-solid .menu-toggle {
  border-color: rgba(77, 60, 37, .2);
  color: var(--earth);
  background: rgba(119, 128, 33, .08);
}
body.site-page .site-footer {
  padding: 0;
  color: rgba(255, 255, 255, .78);
  background: #4b351d;
}
body.site-page .footer-inner {
  display: grid;
  grid-template-columns: 150px minmax(300px, 1.2fr) minmax(260px, .9fr) auto;
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 46px 0 42px;
}
body.site-page .footer-inner strong {
  color: #fff;
}
body.site-page .footer-logo {
  display: inline-flex;
  width: 116px;
}
body.site-page .footer-logo img {
  display: block;
  width: 116px;
  height: auto;
}
body.site-page .footer-column h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}
body.site-page .footer-column h3 span {
  color: #f0ca31;
}
body.site-page .footer-column p {
  margin: 0 0 8px;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.45;
}
body.site-page .footer-column a {
  color: inherit;
}
body.site-page .footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
body.site-page .footer-social a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
body.site-page .footer-social svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}
body.site-page .footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 202, 49, .7);
  background: rgba(240, 202, 49, .16);
}
body.site-page .copyright {
  padding: 14px 20px;
  color: #80905d;
  background: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
body.site-page .copyright a {
  color: var(--earth);
}
@media (max-width: 980px) {
  body.site-page .site-header,
  body.site-page .site-header.is-solid {
    padding: 12px 16px;
    background: rgba(255, 253, 246, .94);
    box-shadow: 0 14px 44px rgba(29, 27, 22, .10);
    backdrop-filter: blur(18px);
  }
  body.site-page .nav-shell {
    justify-content: space-between;
    width: 100%;
  }
  body.site-page .brand,
  body.site-page .site-header.is-solid .brand {
    display: inline-flex;
    width: auto;
  }
  body.site-page .brand img,
  body.site-page .site-header.is-solid .brand img {
    width: 62px;
  }
  body.site-page .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    border-color: rgba(77, 60, 37, .18);
    padding: 10px 14px;
    color: var(--earth);
    background: #fff;
    box-shadow: 0 10px 28px rgba(77, 60, 37, .10);
  }
  body.site-page .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px;
    border: 1px solid rgba(77, 60, 37, .10);
    border-radius: 18px;
    background:
      radial-gradient(circle at 12% 0, rgba(119, 128, 33, .14), transparent 14rem),
      rgba(255, 253, 246, .98);
    color: var(--earth);
    box-shadow: var(--shadow, 0 24px 70px rgba(43, 35, 23, .14));
    text-shadow: none;
  }
  body.site-page .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  body.site-page .nav-toggle:checked ~ .nav {
    display: flex;
  }
  body.site-page .nav-list > li > a,
  body.site-page .dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    border-radius: 12px;
    padding: 12px 14px;
    white-space: normal;
  }
  body.site-page .nav-list > li > a {
    background: rgba(255, 255, 255, .72);
  }
  body.site-page .dropdown,
  body.site-page .dropdown-submenu {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 6px;
  }
  body.site-page .dropdown > a,
  body.site-page .dropdown-submenu > a {
    min-width: 0;
  }
  body.site-page .mobile-submenu-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 12px;
    padding: 0;
    color: var(--leaf);
    background: rgba(119, 128, 33, .12);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
  }
  body.site-page .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  body.site-page .dropdown-menu {
    position: static;
    display: none;
    grid-column: 1 / -1;
    min-width: auto;
    margin: 6px 0 0;
    padding: 8px;
    border: 0;
    border-radius: 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(119, 128, 33, .07);
  }
  body.site-page .dropdown:hover > .dropdown-menu,
  body.site-page .dropdown:focus-within > .dropdown-menu {
    display: none;
  }
  body.site-page .dropdown.is-mobile-open > .dropdown-menu {
    display: block;
  }
  body.site-page .dropdown-submenu > .nested-menu {
    position: static;
    display: none;
    grid-column: 1 / -1;
    margin: 6px 0 0 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  body.site-page .dropdown-submenu:hover > .nested-menu,
  body.site-page .dropdown-submenu:focus-within > .nested-menu {
    display: none;
  }
  body.site-page .dropdown-submenu.is-mobile-open > .nested-menu {
    display: block;
  }
  body.site-page .dropdown-menu span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
  }
}
@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  body.site-page :where(img, video, iframe, canvas, svg) {
    max-width: 100%;
  }
  body.site-page :where(section, main, header, footer) {
    min-width: 0;
  }
  body.site-page :where(.section-inner, .wrap, .about-wrap) {
    width: min(100% - 32px, 1220px);
  }
  body.site-page :where(h1, h2, h3, p, a, span, strong, li) {
    overflow-wrap: anywhere;
  }
  body.site-page :where(.nav a, .nav button, .menu-toggle) {
    min-height: 44px;
  }
  body.site-page :where(
    .business-overview-grid,
    .farm-business-grid,
    .agri-product-grid,
    .fertilizer-product-grid,
    .livestock-product-grid,
    .certificate-grid,
    .partner-card-grid,
    .impact-card-grid,
    .social-feed-grid,
    .social-card-grid
  ) {
    grid-template-columns: 1fr;
  }
  body.site-page .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    width: min(100% - 32px, 1180px);
  }
}

/* farm_tour.php */
body.tour-page {
  --leaf: #778021;
  --earth: #4D3C25;
  --moss: #5d6719;
  --cream: #f8f4e8;
  --paper: #fffdf6;
  --ink: #1d1b16;
  --muted: #6d665a;
  --line: rgba(77, 60, 37, .18);
  --shadow: 0 24px 70px rgba(43, 35, 23, .14);
  --radius: 8px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.tour-page img {
  max-width: 100%;
  display: block;
}
body.tour-page .section-inner {
  max-width: 1220px;
  margin: 0 auto;
}
body.tour-page .page-title {
  position: relative;
  padding: 172px clamp(18px, 4vw, 56px) 80px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(29, 27, 22, .86), rgba(77, 60, 37, .52) 48%, rgba(119, 128, 33, .22)),
    url("../assets/drive/Farm Tour/2024/tour-2.jpg") center/cover;
}
body.tour-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #efe7c8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.tour-page .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--leaf);
}
body.tour-page h1,
body.tour-page h2,
body.tour-page h3,
body.tour-page p {
  margin-top: 0;
}
body.tour-page h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 8vw, 96px);
  line-height: .92;
  letter-spacing: 0;
}
body.tour-page section {
  padding: 96px clamp(18px, 4vw, 56px);
}
body.tour-page .tour-intro {
  text-align: center;
}
body.tour-page .tour-fee {
  width: min(630px, 100%);
  margin: 0 auto 42px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
body.tour-page .tour-copy {
  width: min(1040px, 100%);
  margin: 0 auto;
}
body.tour-page .tour-copy h2,
body.tour-page .tour-gallery h2,
body.tour-page .tour-enquiry h2 {
  color: var(--earth);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}
body.tour-page .tour-copy h2 {
  margin-bottom: 18px;
}
body.tour-page .tour-copy p,
body.tour-page .lead {
  color: var(--muted);
  font-size: 18px;
}
body.tour-page .tour-pricing {
  padding-top: 18px;
  background:
    radial-gradient(circle at 12% 16%, rgba(119, 128, 33, .12), transparent 24rem),
    linear-gradient(180deg, #fffdf6, #f8f4e8);
}
body.tour-page .tour-pricing .section-head {
  margin-bottom: 30px;
}
body.tour-page .tour-pricing h2 {
  color: var(--earth);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}
body.tour-page .tour-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body.tour-page .tour-price-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  border: 1px solid rgba(119, 128, 33, .18);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 48px rgba(77, 60, 37, .08);
}
body.tour-page .tour-price-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .18), transparent 7rem),
    linear-gradient(135deg, var(--leaf), var(--earth));
}
body.tour-page .tour-price-card span {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.tour-page .tour-price-card.featured span,
body.tour-page .tour-price-card.featured p {
  color: rgba(255, 255, 255, .82);
}
body.tour-page .tour-price-card strong {
  color: var(--earth);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}
body.tour-page .tour-price-card.featured strong {
  color: #fff;
}
body.tour-page .tour-price-card p {
  margin: 0;
  color: var(--muted);
}
body.tour-page .tour-includes {
  padding-top: 0;
}
body.tour-page .tour-includes > .section-inner > h2 {
  margin-bottom: 30px;
  color: var(--earth);
  text-align: center;
  font-size: 22px;
}
body.tour-page .tour-include-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body.tour-page .tour-include-card {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
}
body.tour-page .tour-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border: 3px solid #bfd743;
  border-radius: 999px;
  color: var(--leaf);
  font-size: 24px;
  font-weight: 900;
}
body.tour-page .tour-include-card h3 {
  margin-bottom: 14px;
  color: var(--earth);
  font-size: 21px;
  line-height: 1.12;
}
body.tour-page .tour-include-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
body.tour-page .band {
  background: var(--cream);
}
body.tour-page .section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .6fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}
body.tour-page .tour-gallery .eyebrow {
  color: var(--leaf);
}
body.tour-page .tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
body.tour-page .tour-gallery-grid img {
  width: 100%;
  aspect-ratio: 374 / 258;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
}
body.tour-page .tour-enquiry {
  background: #fff;
}
body.tour-page .tour-enquiry h2 {
  margin-bottom: 28px;
  color: #31572a;
  font-size: clamp(30px, 4vw, 46px);
}
body.tour-page .tour-enquiry-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
}
body.tour-page .tour-enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--earth);
  font-size: 13px;
  font-weight: 800;
}
body.tour-page .tour-enquiry-form span {
  color: #d75b5b;
}
body.tour-page .tour-enquiry-form input,
body.tour-page .tour-enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(77, 60, 37, .32);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
body.tour-page .tour-enquiry-form textarea {
  min-height: 150px;
  resize: vertical;
}
body.tour-page .message-field {
  grid-column: span 1;
  grid-row: span 2;
}
body.tour-page .tour-enquiry-form button {
  justify-self: start;
  align-self: end;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  color: #fff;
  background: var(--leaf);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
@media (max-width: 980px) {
  body.tour-page .tour-pricing-grid,
  body.tour-page .tour-include-grid,
  body.tour-page .tour-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.tour-page .section-head,
  body.tour-page .tour-enquiry-form {
    grid-template-columns: 1fr;
  }
  body.tour-page .message-field {
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  body.tour-page section {
    padding-block: 70px;
  }
  body.tour-page .page-title {
    padding-top: 140px;
  }
  body.tour-page .tour-pricing-grid,
  body.tour-page .tour-include-grid,
  body.tour-page .tour-gallery-grid {
    grid-template-columns: 1fr;
  }
  body.tour-page .tour-include-card {
    min-height: auto;
  }
}
body.about-us-page .about-focus-section{
  padding:74px 24px;
  background:var(--paper);
}

body.about-us-page .about-focus-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  margin-top:42px;
}

body.about-us-page .about-focus-card{
  display:flex;
  flex-direction:column;
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 18px 48px rgba(77,60,37,.08);
  transition:.25s ease;
}

body.about-us-page .about-focus-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 60px rgba(77,60,37,.12);
}

body.about-us-page .about-focus-card>.material-symbols-rounded{
  display:flex;
  align-items:center;
  justify-content:center;
  width:60px;
  height:60px;
  margin-bottom:20px;
  border-radius:50%;
  background:rgba(119,128,33,.12);
  color:var(--leaf);
  font-size:32px;
  font-variation-settings:
      'FILL' 1,
      'wght' 500,
      'GRAD' 0,
      'opsz' 48;
}
body.about-us-page .about-chicken-foot-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:60px;
  height:60px;
  margin-bottom:20px;
  border-radius:50%;
  background:rgba(119,128,33,.12);
  color:var(--leaf);
}
body.about-us-page .about-chicken-foot-icon img{
  width:38px;
  height:38px;
  display:block;
  object-fit:contain;
}

body.about-us-page .about-focus-card h3{
  margin:0 0 12px;
  color:var(--earth);
  font-size:22px;
  line-height:1.2;
}

body.about-us-page .about-focus-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

body.about-us-page .about-focus-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:auto;
  padding-top:24px;
  color:var(--leaf);
  font-weight:700;
  transition:.2s ease;
}

body.about-us-page .about-focus-link:hover{
  gap:10px;
}

body.about-us-page .about-focus-link .material-symbols-rounded{
  width:auto;
  height:auto;
  background:none;
  color:inherit;
  font-size:20px;
  margin:0;
}

/* Tablet */

@media (max-width:960px){
  body.about-us-page .about-focus-grid{
      grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */

@media (max-width:640px){
  body.about-us-page .about-focus-grid{
      grid-template-columns:1fr;
  }
}
/* about.php supplied About Us layout */
body.about-us-page {
  --leaf: #778021;
  --earth: #4D3C25;
  --moss: #5d6719;
  --cream: #f1f9d9;
  --paper: #fffdf6;
  --ink: #26231f;
  --muted: #5f5b54;
  --line: rgba(77, 60, 37, .18);
  --shadow: 0 24px 70px rgba(43, 35, 23, .14);
  --radius: 8px;
  background:
    radial-gradient(ellipse at 24px 24px, rgba(190, 211, 77, .45) 0 2px, transparent 3px) 0 0 / 82px 82px,
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}
body.about-us-page .site-header {
  background: rgba(255, 253, 246, .94);
  box-shadow: 0 8px 34px rgba(29, 27, 22, .06);
  backdrop-filter: blur(16px);
}
body.about-us-page .brand,
body.about-us-page .nav {
  color: var(--earth);
}
body.about-us-page .brand small,
body.about-us-page .nav a.active,
body.about-us-page .nav button.active {
  color: var(--leaf);
}
body.about-us-page .about-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}
body.about-us-page .about-wrap.narrow {
  width: min(820px, calc(100% - 48px));
}
body.about-us-page .about-title {
  padding: 136px 24px 54px;
  text-align: center;
  background: var(--cream);
}
body.about-us-page .about-title p {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
body.about-us-page .about-title h1 {
  margin: 0;
  color: #3f7a16;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
}
body.about-us-page h1,
body.about-us-page h2,
body.about-us-page h3,
body.about-us-page p {
  margin-top: 0;
}
body.about-us-page h2 {
  color: #416f28;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.04;
}
body.about-us-page .about-story,
body.about-us-page .milestone-section,
body.about-us-page .management-section,
body.about-us-page .our-team-section {
  padding: 74px 24px;
  background: rgba(255, 253, 246, .94);
}
body.about-us-page .about-main-image {
  width: min(930px, 100%);
  margin: 0 auto 42px;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(77, 60, 37, .12);
}
body.about-us-page .about-copy {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}
body.about-us-page .about-copy p,
body.about-us-page .management-section > .about-wrap > p,
body.about-us-page .our-team-section p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
body.about-us-page .milestone-section {
  padding-top: 24px;
}
body.about-us-page .milestone-section h2 {
  margin-bottom: 34px;
}
body.about-us-page .milestone-list {
  position: relative;
  display: grid;
  gap: 16px;
  margin-left: 70px;
}
body.about-us-page .milestone-list::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 36px;
  width: 8px;
  border-radius: 999px;
  background: #4c7d22;
}
body.about-us-page .milestone-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 74px;
}
body.about-us-page .milestone-item span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 5px solid #315812;
  border-radius: 18px;
  color: #fff;
  background: #6a9b35;
  font-weight: 900;
}
body.about-us-page .milestone-item strong,
body.about-us-page .milestone-item em {
  color: #4f7c28;
  font-style: normal;
  font-weight: 900;
}
body.about-us-page .milestone-item.wide {
  grid-template-columns: 72px 190px minmax(0, 1fr);
}
body.about-us-page .milestone-item.wide em::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  margin: 0 18px 5px 0;
  background: rgba(77, 60, 37, .45);
}
body.about-us-page .belief-section {
  padding: 70px 24px;
  background: #85aa72;
  text-align: center;
}
body.about-us-page .belief-section h2 {
  margin-bottom: 34px;
  color: #1f281c;
  font-size: clamp(38px, 5vw, 58px);
}
body.about-us-page .belief-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
}
body.about-us-page .belief-cards article {
  border-radius: var(--radius);
  padding: 18px;
  background: #fbefc5;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .18);
}
body.about-us-page .belief-cards h3 {
  margin-bottom: 8px;
  color: #222;
  font-size: 28px;
}
body.about-us-page .belief-icon {
  display: grid;
  place-items: center;
  min-height: 72px;
  color: #050505;
  font-size: 30px;
  font-weight: 900;
}
body.about-us-page .belief-icon .material-symbols-rounded {
  font-size: 42px;
  font-variation-settings:
    'FILL' 1,
    'wght' 500,
    'GRAD' 0,
    'opsz' 48;
}
body.about-us-page .belief-cards p {
  min-height: 116px;
  margin: 0;
  border: 1px solid rgba(77, 60, 37, .35);
  border-radius: 5px;
  padding: 12px;
  color: #5f5b54;
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}
body.about-us-page .management-section h2 {
  margin-bottom: 22px;
}
body.about-us-page .manager-list {
  display: grid;
  gap: 58px;
  margin-top: 56px;
}
body.about-us-page .manager-card {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}
body.about-us-page .manager-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 44px;
  width: 54px;
  height: 54px;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 20% 50%);
  background: #8bd1c4;
  border: 3px solid #37766c;
}
body.about-us-page .manager-photo {
  min-height: 200px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 45% 28%, #fff 0 28px, transparent 29px),
    linear-gradient(0deg, #91c331 0 28%, #b4db5f 28% 40%, transparent 40%),
    linear-gradient(#c9f1ff, #e8fbff);
}
body.about-us-page .manager-card h3 {
  margin-bottom: 8px;
  color: #2c2c2c;
  font-size: 20px;
}
body.about-us-page .manager-card p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
body.about-us-page .our-team-section {
  padding-top: 28px;
}
body.about-us-page .our-team-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}
body.about-us-page .our-team-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(77, 60, 37, .12);
}
@media (max-width: 900px) {
  body.about-us-page .belief-cards,
  body.about-us-page .manager-card,
  body.about-us-page .our-team-grid {
    grid-template-columns: 1fr;
  }
  body.about-us-page .belief-cards {
    gap: 24px;
  }
  body.about-us-page .manager-card::after {
    display: none;
  }
  body.about-us-page .manager-photo {
    max-width: 240px;
  }
}
@media (max-width: 640px) {
  body.about-us-page .about-wrap,
  body.about-us-page .about-wrap.narrow {
    width: min(100% - 28px, 1120px);
  }
  body.about-us-page .about-story,
  body.about-us-page .milestone-section,
  body.about-us-page .management-section,
  body.about-us-page .our-team-section {
    padding-inline: 0;
  }
  body.about-us-page .milestone-list {
    margin-left: 0;
  }
  body.about-us-page .milestone-item,
  body.about-us-page .milestone-item.wide {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  body.about-us-page .milestone-item.wide em {
    grid-column: 2;
  }
}

/* Modern About Us redesign */
body.about-us-page {
  background:
    linear-gradient(180deg, rgba(248, 244, 232, .62), rgba(255, 253, 246, 1) 38%),
    var(--paper);
}
body.about-us-page .about-title {
  padding: 150px clamp(18px, 4vw, 56px) 90px;
  text-align: left;
  background:
    radial-gradient(circle at 85% 20%, rgba(119, 128, 33, .22), transparent 28%),
    linear-gradient(135deg, #2f3f20, #64712b 62%, #899b3d);
}
body.about-us-page .about-title .about-wrap {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .72fr);
  gap: 42px;
  align-items: center;
}

body.about-us-page .about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #efe7c8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.about-us-page .about-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #c6d760;
}
body.about-us-page .about-title h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(54px, 8vw, 104px);
  line-height: .92;
}
body.about-us-page .about-hero-copy > p:not(.about-kicker) {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 2vw, 21px);
}
body.about-us-page .about-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(29, 27, 22, .32);
}
body.about-us-page .about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px);
}
body.about-us-page .about-hero-stats span {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 20px;
  color: rgba(255, 255, 255, .78);
  background: rgba(29, 27, 22, .16);
}
body.about-us-page .about-hero-stats strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
body.about-us-page .about-story,
body.about-us-page .milestone-section,
body.about-us-page .our-team-section {
  padding: 96px clamp(18px, 4vw, 56px);
  background: transparent;
}
body.about-us-page .about-story {
  position: relative;
  overflow: hidden;
}
body.about-us-page .about-story::before {
  content: "";
  position: absolute;
  inset: 40px clamp(18px, 4vw, 56px);
  border: 1px solid rgba(119, 128, 33, .14);
  border-radius: 8px;
  pointer-events: none;
}
body.about-us-page .about-story-head {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin-bottom: 34px;
  text-align: center;
}
body.about-us-page .about-story-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--earth);
  font-family: inherit;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}
body.about-us-page .about-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
  gap: 16px;
  width: auto;
  text-align: left;
}
body.about-us-page .about-story-card {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
}
body.about-us-page .about-story-card.story-main {
  grid-row: span 3;
  align-content: end;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(180deg, rgba(43, 35, 23, .34), rgba(43, 35, 23, 0.5)),
    linear-gradient(90deg, rgba(43, 35, 23, .72), rgba(43, 35, 23, 0)),
    url("../assets/drive/Chickens/chicken-21.jpg") center/cover;
  color: #fff;
}
body.about-us-page .about-story-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--leaf);
  background: rgba(119, 128, 33, .12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.about-us-page .about-story-card.story-main span {
  color: #f5e7a9;
  background: rgba(43, 35, 23, .58);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}
body.about-us-page .about-story-card h3 {
  margin: 0;
  color: var(--earth);
  font-size: 24px;
  line-height: 1.1;
}
body.about-us-page .about-story-card.story-main h3 {
  max-width: 520px;
  color: #fffdf6;
  font-size: clamp(30px, 4vw, 48px);
  text-shadow: 0 3px 16px rgba(43, 35, 23, .56);
}
body.about-us-page .about-story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}
body.about-us-page .about-story-card.story-main p {
  max-width: 620px;
  border-radius: 8px;
  padding: 18px;
  color: #fff6d8;
  background: rgba(77, 60, 37, .54);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(43, 35, 23, .5);
  backdrop-filter: blur(6px);
}
body.about-us-page .milestone-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(119, 128, 33, .12), transparent 28%),
    linear-gradient(180deg, #f8f4e8 0%, #fffdf6 100%);
}
body.about-us-page .milestone-section::before {
  content: "";
  position: absolute;
  inset: 34px clamp(18px, 4vw, 56px);
  border: 1px solid rgba(119, 128, 33, .14);
  border-radius: 8px;
  pointer-events: none;
}
body.about-us-page .milestone-section .about-wrap.narrow {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
}
body.about-us-page .milestone-section h2,
body.about-us-page .our-team-section h2 {
  color: var(--earth);
  font-family: inherit;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}
body.about-us-page .milestone-intro {
  max-width: 640px;
  margin: 10px 0 44px;
  color: var(--muted);
  font-size: 17px;
}
body.about-us-page .milestone-list {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  gap: 0 28px;
  margin: 0;
  padding: 10px 0;
}
body.about-us-page .milestone-list::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 50%;
  display: block;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--leaf), #b6c85e, var(--earth));
  transform: translateX(-50%);
}
body.about-us-page .milestone-item,
body.about-us-page .milestone-item.wide {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 46px rgba(77, 60, 37, .09);
}
body.about-us-page .milestone-item:nth-child(odd) {
  grid-column: 1;
  margin: 0 0 26px;
  text-align: right;
}
body.about-us-page .milestone-item:nth-child(even) {
  grid-column: 3;
  margin: 62px 0 0;
}
body.about-us-page .milestone-item::before {
  content: "";
  position: absolute;
  top: 34px;
  width: 28px;
  height: 2px;
  background: rgba(77, 60, 37, .28);
}
body.about-us-page .milestone-item:nth-child(odd)::before {
  right: -28px;
}
body.about-us-page .milestone-item:nth-child(even)::before {
  left: -28px;
}
body.about-us-page .milestone-item::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 26px;
  height: 26px;
  border: 5px solid #fff;
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 0 0 3px rgba(119, 128, 33, .22), 0 10px 22px rgba(77, 60, 37, .18);
}
body.about-us-page .milestone-item:nth-child(odd)::after {
  right: -58px;
}
body.about-us-page .milestone-item:nth-child(even)::after {
  left: -58px;
}
body.about-us-page .milestone-item span {
  width: fit-content;
  height: auto;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--leaf);
  color: #fff;
  font-size: 13px;
  justify-self: start;
}
body.about-us-page .milestone-item:nth-child(odd) span {
  justify-self: end;
}
body.about-us-page .milestone-item strong {
  color: var(--earth);
  font-size: 22px;
  line-height: 1.14;
}
body.about-us-page .milestone-item em {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
body.about-us-page .milestone-item.wide em::before {
  display: none;
}
body.about-us-page .belief-section {
  position: relative;
  padding: 96px clamp(18px, 4vw, 56px);
  overflow: hidden;
  background: #314222;
  text-align: left;
}
body.about-us-page .belief-section::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(198, 215, 96, .18);
}
body.about-us-page .belief-section h2 {
  position: relative;
  max-width: 780px;
  margin-bottom: 34px;
  color: #fff;
  font-family: inherit;
  font-size: clamp(38px, 5vw, 64px);
}
body.about-us-page .belief-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
body.about-us-page .belief-cards article {
  display: grid;
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 253, 246, .96);
  box-shadow: 0 28px 80px rgba(29, 27, 22, .22);
}
body.about-us-page .belief-cards h3 {
  color: var(--earth);
  font-size: 28px;
}
body.about-us-page .belief-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  min-height: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--leaf);
  font-size: 18px;
}
body.about-us-page .belief-icon .material-symbols-rounded {
  font-size: 34px;
  font-variation-settings:
    'FILL' 1,
    'wght' 500,
    'GRAD' 0,
    'opsz' 48;
}
body.about-us-page .belief-cards p {
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}
body.about-us-page .management-section {
  display: none;
}
body.about-us-page .our-team-section {
  background: #fff;
}
body.about-us-page .our-team-grid {
  grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}
body.about-us-page .our-team-grid > div {
  border-left: 5px solid var(--leaf);
  padding-left: 24px;
}
body.about-us-page .our-team-grid p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}
body.about-us-page .our-team-grid img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
@media (max-width: 980px) {
  body.about-us-page .about-title .about-wrap,
  body.about-us-page .about-story-head,
  body.about-us-page .about-copy,
  body.about-us-page .belief-cards,
  body.about-us-page .our-team-grid {
    grid-template-columns: 1fr;
  }
  body.about-us-page .about-story-card.story-main {
    grid-row: auto;
    min-height: 440px;
  }
  body.about-us-page .milestone-list {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
  }
  body.about-us-page .milestone-list::before {
    left: 21px;
  }
  body.about-us-page .milestone-item,
  body.about-us-page .milestone-item.wide,
  body.about-us-page .milestone-item:nth-child(odd),
  body.about-us-page .milestone-item:nth-child(even) {
    grid-column: 2;
    margin: 0 0 20px;
    text-align: left;
  }
  body.about-us-page .milestone-item::before,
  body.about-us-page .milestone-item:nth-child(odd)::before,
  body.about-us-page .milestone-item:nth-child(even)::before {
    left: -28px;
    right: auto;
  }
  body.about-us-page .milestone-item::after,
  body.about-us-page .milestone-item:nth-child(odd)::after,
  body.about-us-page .milestone-item:nth-child(even)::after {
    left: -58px;
    right: auto;
  }
  body.about-us-page .milestone-item span,
  body.about-us-page .milestone-item:nth-child(odd) span {
    justify-self: start;
  }
}
@media (max-width: 640px) {
  body.about-us-page .about-title {
    padding-top: 130px;
  }
  body.about-us-page .about-hero-stats {
    grid-template-columns: 1fr;
  }
  body.about-us-page .milestone-item,
  body.about-us-page .milestone-item.wide {
    min-height: auto;
  }
}

/* Standard eyebrow colour treatment */
body.site-page .eyebrow {
  color: #efe7c8;
}
body.site-page .eyebrow::before {
  background: #f0ca31;
}
body.site-page main section:not(.hero):not(.page-title):not(.about-title) .eyebrow {
  color: #f0ca31;
}

/* Farm training course highlight redesign */
body.training-page .intro {
  background:
    radial-gradient(circle at 12% 18%, rgba(119, 128, 33, .12), transparent 28%),
    linear-gradient(180deg, #fffdf6 0%, #f8f4e8 100%);
}
body.training-page .training-overview {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: 28px;
  align-items: stretch;
}
body.training-page .training-media-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
body.training-page .training-media-card .main-photo {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}
body.training-page .summary {
  display: grid;
  align-content: center;
  width: auto;
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(119, 128, 33, .22);
  border-radius: 8px;
  background: #fff;
  text-align: left;
  box-shadow: 0 22px 60px rgba(77, 60, 37, .1);
}
body.training-page .summary h2 {
  margin-bottom: 16px;
  max-width: 620px;
  font-size: clamp(34px, 5vw, 58px);
}
body.training-page .summary p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}
body.training-page .summary-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}
body.training-page .summary-highlights span {
  min-height: 104px;
  border: 1px solid rgba(119, 128, 33, .18);
  border-radius: 8px;
  padding: 16px;
  color: var(--muted);
  background: rgba(119, 128, 33, .07);
  font-size: 14px;
  font-weight: 700;
}
body.training-page .summary-highlights strong {
  display: block;
  margin-bottom: 6px;
  color: var(--earth);
  font-size: 28px;
  line-height: 1;
}
body.training-page .program {
  position: relative;
  overflow: hidden;
  background: #fffdf6;
}
body.training-page .training-program-head {
  margin-bottom: 34px;
}
body.training-page .program-grid {
  gap: 20px;
}
body.training-page .program-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 430px;
  overflow: hidden;
  border-color: rgba(119, 128, 33, .18);
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 244, 232, .78));
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body.training-page .program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--leaf);
}
body.training-page .program-card:nth-child(2)::before {
  background: #98aa31;
}
body.training-page .program-card:nth-child(3)::before {
  background: var(--earth);
}
body.training-page .program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(119, 128, 33, .34);
  box-shadow: 0 24px 70px rgba(77, 60, 37, .13);
}
body.training-page .level-pill {
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.training-page .program-card:nth-child(2) .level-pill {
  background: #98aa31;
}
body.training-page .program-card:nth-child(3) .level-pill {
  background: var(--earth);
}
body.training-page .program-card h3 {
  font-size: 24px;
}
body.training-page .program-card p {
  margin-bottom: 0;
}
body.training-page .training-faq {
  background:
    radial-gradient(circle at 12% 20%, rgba(119, 128, 33, .10), transparent 24rem),
    var(--cream);
}
body.training-page .training-faq-accordion {
  display: grid;
  gap: 12px;
}
body.training-page .training-faq-accordion details {
  overflow: hidden;
  border: 1px solid rgba(77, 60, 37, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
}
body.training-page .training-faq-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--earth);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
body.training-page .training-faq-accordion summary::-webkit-details-marker {
  display: none;
}
body.training-page .training-faq-accordion summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--leaf);
  background: rgba(119, 128, 33, .12);
  font-size: 22px;
  line-height: 1;
}
body.training-page .training-faq-accordion details[open] summary::after {
  content: "-";
}
body.training-page .training-faq-accordion p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(77, 60, 37, .76);
}
@media (max-width: 980px) {
  body.training-page .training-overview {
    grid-template-columns: 1fr;
  }
  body.training-page .training-media-card {
    min-height: 420px;
  }
}
@media (max-width: 640px) {
  body.training-page .summary-highlights {
    grid-template-columns: 1fr;
  }
  body.training-page .training-media-card {
    min-height: 300px;
  }
body.training-page .program-card {
    min-height: auto;
  }
}

/* Farm tour vertical WhatsApp enquiry form */
body.tour-page .tour-enquiry {
  background:
    radial-gradient(circle at 88% 16%, rgba(119, 128, 33, .13), transparent 30%),
    linear-gradient(180deg, #fffdf6 0%, #f8f4e8 100%);
}
body.tour-page .tour-enquiry-shell {
  display: grid;
  grid-template-columns: minmax(280px, .58fr) minmax(360px, .92fr);
  gap: 30px;
  align-items: start;
}
body.tour-page .tour-enquiry-intro {
  position: sticky;
  top: 110px;
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(77, 60, 37, .2), rgba(77, 60, 37, .9)),
    url("../assets/drive/Farm Tour/2024/tour-5.jpg") center/cover;
  box-shadow: 0 22px 60px rgba(77, 60, 37, .14);
}
body.tour-page .tour-enquiry-intro h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
}
body.tour-page .tour-enquiry-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}
body.tour-page .tour-enquiry-note {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .1);
}
body.tour-page .tour-enquiry-note strong {
  color: #fff;
}
body.tour-page .tour-enquiry-note span {
  color: rgba(255, 255, 255, .78);
}
body.tour-page .tour-enquiry-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  border: 1px solid rgba(119, 128, 33, .18);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  box-shadow: 0 22px 60px rgba(77, 60, 37, .1);
}
body.tour-page .tour-enquiry-form label {
  gap: 6px;
  color: var(--earth);
  font-size: 13px;
  font-weight: 800;
}
body.tour-page .tour-enquiry-form .label-text {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--earth);
}
body.tour-page .tour-enquiry-form em {
  color: #d75b5b;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
body.tour-page .tour-enquiry-form input,
body.tour-page .tour-enquiry-form textarea {
  min-height: 40px;
  border: 1px solid rgba(77, 60, 37, .2);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fffdf8;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
body.tour-page .tour-enquiry-form input:focus,
body.tour-page .tour-enquiry-form textarea:focus {
  outline: 0;
  border-color: var(--leaf);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(119, 128, 33, .12);
}
body.tour-page .tour-enquiry-form textarea {
  min-height: 112px;
}
body.tour-page .message-field {
  grid-column: auto;
  grid-row: auto;
}
body.tour-page .tour-enquiry-form button {
  justify-self: stretch;
  min-height: 46px;
  margin-top: 4px;
  border-radius: 8px;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
body.tour-page .tour-enquiry-form button:hover {
  transform: translateY(-2px);
  background: #1fb65a;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .28);
}
body.tour-page .tour-pricing {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 88px;
}
body.tour-page .tour-pricing::before {
  content: "";
  position: absolute;
  inset: 34px clamp(18px, 4vw, 56px) auto;
  height: 220px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, .42), transparent 13rem),
    linear-gradient(135deg, rgba(119, 128, 33, .18), rgba(248, 244, 232, .12));
  pointer-events: none;
}
body.tour-page .tour-pricing > .section-inner {
  position: relative;
  z-index: 1;
}
body.tour-page .tour-price-card {
  min-height: 236px;
  border-color: rgba(119, 128, 33, .16);
  padding: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 50px rgba(77, 60, 37, .09);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body.tour-page .tour-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(119, 128, 33, .28);
  box-shadow: 0 26px 70px rgba(77, 60, 37, .13);
}
body.tour-page .tour-pricing-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
body.tour-page .tour-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 28px;
  color: #fff;
  background:
    linear-gradient(135deg, #8b972d, #4D3C25);
  box-shadow: 0 18px 38px rgba(77, 60, 37, .22);
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
body.tour-page .tour-booking-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(77, 60, 37, .28);
}
body.tour-page .tour-enquiry {
  background:
    radial-gradient(circle at 12% 20%, rgba(119, 128, 33, .13), transparent 26rem),
    radial-gradient(circle at 88% 12%, rgba(77, 60, 37, .08), transparent 24rem),
    linear-gradient(180deg, #fffdf6 0%, #f8f4e8 100%);
}
body.tour-page .tour-enquiry-shell {
  grid-template-columns: minmax(320px, .78fr) minmax(420px, .92fr);
  align-items: stretch;
}
body.tour-page .tour-enquiry-intro,
body.tour-page .tour-enquiry-form {
  min-height: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(77, 60, 37, .12);
}
body.tour-page .tour-enquiry-intro {
  position: relative;
  top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(29, 27, 22, .18), rgba(29, 27, 22, .86)),
    url("../assets/drive/Farm Tour/2024/tour-8.jpg") center/cover;
}
body.tour-page .tour-enquiry-form {
  border-color: rgba(119, 128, 33, .14);
  padding: clamp(24px, 4vw, 42px);
}
@media (max-width: 980px) {
  body.tour-page .tour-enquiry-shell {
    grid-template-columns: 1fr;
  }
  body.tour-page .tour-enquiry-intro {
    position: relative;
    top: auto;
    min-height: 420px;
  }
}
@media (max-width: 640px) {
  body.tour-page .tour-booking-button {
    width: 100%;
  }
  body.tour-page .tour-enquiry-intro {
    min-height: 360px;
  }
}

/* agrotourism.php */
body.agrotourism-page {
  --agro-green: #778021;
  --agro-deep: #243313;
  --agro-earth: #4D3C25;
  --agro-cream: #f8f4e8;
  --agro-paper: #fffdf6;
  --agro-muted: #6d665a;
  --agro-line: rgba(77, 60, 37, .14);
  --agro-shadow: 0 24px 70px rgba(43, 35, 23, .13);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(119, 128, 33, .10), transparent 28rem),
    var(--agro-paper);
}
body.agrotourism-page .agro-wrap {
  width: min(1220px, calc(100% - 36px));
  margin-inline: auto;
}
body.agrotourism-page .agro-hero {
  position: relative;
  overflow: hidden;
  padding: 164px clamp(18px, 4vw, 56px) 106px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(29, 27, 22, .88), rgba(77, 60, 37, .54) 52%, rgba(119, 128, 33, .24)),
    url("../assets/drive/Farm Tour/2024/tour-4.jpg") center/cover;
}
body.agrotourism-page .agro-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--agro-paper));
}
body.agrotourism-page .agro-hero .agro-wrap {
  position: relative;
  z-index: 1;
}
body.agrotourism-page .agro-breadcrumb,
body.agrotourism-page .eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.agrotourism-page .agro-breadcrumb {
  color: #efe7c8;
}
body.agrotourism-page .eyebrow {
  color: var(--agro-green);
}
body.agrotourism-page .agro-hero .eyebrow {
  color: #fff;
}
body.agrotourism-page h1,
body.agrotourism-page h2,
body.agrotourism-page h3,
body.agrotourism-page p {
  margin-top: 0;
}
body.agrotourism-page .agro-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(52px, 8vw, 100px);
  line-height: .92;
}
body.agrotourism-page .agro-hero p:last-child {
  max-width: 880px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}
body.agrotourism-page .agro-intro,
body.agrotourism-page .agro-experiences,
body.agrotourism-page .agro-why,
body.agrotourism-page .agro-cta {
  padding: 92px clamp(18px, 4vw, 56px);
}
body.agrotourism-page .agro-intro-card {
  border: 1px solid var(--agro-line);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 58px);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 64px rgba(77, 60, 37, .09);
}
body.agrotourism-page .agro-intro-card h2,
body.agrotourism-page .agro-section-head h2,
body.agrotourism-page .agro-cta h2 {
  margin-bottom: 16px;
  color: var(--agro-earth);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}
body.agrotourism-page .agro-intro-card p:last-child,
body.agrotourism-page .agro-why p,
body.agrotourism-page .agro-cta p {
  color: var(--agro-muted);
  font-size: 18px;
}
body.agrotourism-page .agro-section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
body.agrotourism-page .agro-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
body.agrotourism-page .agro-experience-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 560px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--agro-deep);
  box-shadow: var(--agro-shadow);
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease;
}
body.agrotourism-page .agro-experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 90px rgba(43, 35, 23, .18);
}
body.agrotourism-page .agro-experience-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}
body.agrotourism-page .agro-experience-card:hover img {
  transform: scale(1.08);
}
body.agrotourism-page .agro-experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(19, 30, 12, .04), rgba(19, 30, 12, .88)),
    linear-gradient(135deg, rgba(47, 70, 21, .52), rgba(119, 128, 33, .14));
}
body.agrotourism-page .agro-card-content {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 4vw, 44px);
  color: #fff;
}
body.agrotourism-page .agro-card-content h3 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}
body.agrotourism-page .agro-card-content p {
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}
body.agrotourism-page .agro-card-content a,
body.agrotourism-page .agro-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  color: #fff;
  background: var(--agro-green);
  box-shadow: 0 14px 30px rgba(119, 128, 33, .24);
  font-weight: 900;
  text-decoration: none;
}
body.agrotourism-page .agro-why {
  background: var(--agro-cream);
}
body.agrotourism-page .agro-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.agrotourism-page .agro-why-grid article {
  border: 1px solid var(--agro-line);
  border-radius: 20px;
  padding: 26px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 46px rgba(77, 60, 37, .08);
}
body.agrotourism-page .agro-why-grid span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(119, 128, 33, .12);
  font-size: 24px;
}
body.agrotourism-page .agro-why-grid h3 {
  margin-bottom: 8px;
  color: var(--agro-earth);
  font-size: 21px;
}
body.agrotourism-page .agro-why-grid p {
  margin-bottom: 0;
  font-size: 15px;
}
body.agrotourism-page .agro-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .14), transparent 18rem),
    linear-gradient(135deg, #243313, #778021);
}
body.agrotourism-page .agro-cta::after {
  content: "";
  position: absolute;
  right: clamp(16px, 8vw, 120px);
  top: 26px;
  width: clamp(110px, 15vw, 190px);
  aspect-ratio: 1;
  background: url("../assets/ayam-satoyama.png") center/contain no-repeat;
  opacity: .13;
  pointer-events: none;
}
body.agrotourism-page .agro-cta .agro-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
body.agrotourism-page .agro-cta .agro-eyebrow,
body.agrotourism-page .agro-cta h2 {
  color: #fff;
}
body.agrotourism-page .agro-cta p {
  color: rgba(255, 255, 255, .84);
}
body.agrotourism-page .agro-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
body.agrotourism-page .agro-cta-actions a:nth-child(2) {
  color: var(--agro-earth);
  background: #fff;
}
@media (max-width: 900px) {
  body.agrotourism-page .agro-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  body.agrotourism-page .agro-hero {
    padding-top: 136px;
  }
  body.agrotourism-page .agro-intro,
  body.agrotourism-page .agro-experiences,
  body.agrotourism-page .agro-why,
  body.agrotourism-page .agro-cta {
    padding-block: 68px;
  }
  body.agrotourism-page .agro-card-grid,
  body.agrotourism-page .agro-why-grid {
    grid-template-columns: 1fr;
  }
  body.agrotourism-page .agro-experience-card {
    min-height: 460px;
  }
  body.agrotourism-page .agro-card-content a,
  body.agrotourism-page .agro-cta-actions,
  body.agrotourism-page .agro-cta-actions a {
    width: 100%;
  }
}


/* agriculture.php */
body.agriculture-page {
    --agri-green: #778021;
    --agri-dark: #253015;
    --agri-earth: #4d3c25;
    --agri-cream: #f8f4e8;
    --agri-paper: #fffdf6;
    --agri-mint: #eef6e4;
    --agri-muted: #70685b;
    --agri-line: rgba(77, 60, 37, .14);
    --agri-shadow: 0 24px 70px rgba(43, 35, 23, .12);
    background: var(--agri-paper);
  }

  body.agriculture-page .nav-business,
  body.agriculture-page .nav-agriculture {
    color: inherit;
    background: rgba(255, 255, 255, .12);
  }

  body.agriculture-page .site-header.is-solid .nav-business,
  body.agriculture-page .site-header.is-solid .nav-agriculture {
    background: rgba(119, 128, 33, .15);
  }

  body.agriculture-page .agri-hero {
    position: relative;
    overflow: hidden;
    padding: 164px clamp(18px, 4vw, 56px) 94px;
    color: #fff;
    background:
      linear-gradient(105deg, rgba(29, 31, 20, .86), rgba(77, 60, 37, .48) 54%, rgba(119, 128, 33, .16)),
      url("../assets/crops/durian.jpg") center 58%/cover;
  }

  body.agriculture-page .agri-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background:
      radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .26), transparent 18rem),
      radial-gradient(circle at 12% 78%, rgba(119, 128, 33, .34), transparent 20rem);
  }

  body.agriculture-page .agri-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--agri-paper));
  }

  body.agriculture-page .agri-hero .section-inner {
    position: relative;
    z-index: 1;
  }

  body.agriculture-page .agri-hero h1 {
    max-width: 980px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(42px, 6.7vw, 82px);
    line-height: .96;
  }

  body.agriculture-page .agri-hero p:not(.hero-breadcrumb):not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 700;
  }

  body.agriculture-page .agri-hero .eyebrow {
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .42);
  }

  body.agriculture-page .agri-product-summary {
    max-width: 760px;
    margin: 0 0 34px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    padding: 28px;
    background: rgba(255, 255, 255, .68);
    box-shadow: var(--agri-shadow);
  }

  body.agriculture-page .agri-count {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 0;
  }

  body.agriculture-page .agri-count span {
    display: grid;
    gap: 4px;
    border-radius: 8px;
    padding: 16px;
    color: var(--agri-muted);
    background: #fff;
    font-size: 13px;
    font-weight: 800;
  }

  body.agriculture-page .agri-count strong {
    color: var(--agri-green);
    font-size: 28px;
    line-height: 1;
  }

  body.agriculture-page .agri-hero-actions,
  body.agriculture-page .agri-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }

  body.agriculture-page .agri-hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 10px;
    width: min(780px, 100%);
    margin-top: 30px;
  }

  body.agriculture-page .agri-hero-metrics span {
    display: grid;
    gap: 4px;
    min-height: 88px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: 14px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 800;
  }

  body.agriculture-page .agri-hero-metrics strong {
    color: #f5e7a9;
    font-size: 30px;
    line-height: 1;
  }

body.agriculture-page .agri-btn,
body.agriculture-page .agri-cta-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 13px 20px;
    color: #fff;
    background: var(--agri-green);
    box-shadow: 0 14px 30px rgba(119, 128, 33, .24);
    font-weight: 900;
    text-decoration: none;
  }

  body.agriculture-page .agri-cta-actions a:nth-child(2) {
    color: var(--agri-earth);
    background: #fff;
  }

  body.agriculture-page .agri-hero .agri-btn.is-secondary {
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .12);
  }

  body.agriculture-page .agri-intro,
  body.agriculture-page .agri-products,
  body.agriculture-page .agri-cta {
    padding: 92px clamp(18px, 4vw, 56px);
  }

  body.agriculture-page .agri-intro-panel {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    border: 1px solid var(--agri-line);
    border-radius: 8px;
    padding: clamp(26px, 5vw, 54px);
    background:
      radial-gradient(circle at 94% 12%, rgba(119, 128, 33, .12), transparent 18rem),
      #fff;
    box-shadow: var(--agri-shadow);
  }

  body.agriculture-page h2 {
    margin: 0;
    color: var(--agri-earth);
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.04;
  }

  body.agriculture-page .agri-intro-copy {
    display: grid;
    gap: 16px;
    border-left: 4px solid rgba(119, 128, 33, .28);
    padding-left: clamp(20px, 3vw, 32px);
  }

  body.agriculture-page .agri-intro-copy p,
  body.agriculture-page .agri-section-head p,
  body.agriculture-page .agri-note,
  body.agriculture-page .agri-cta p {
    color: var(--agri-muted);
    font-size: clamp(17px, 2vw, 20px);
  }

  body.agriculture-page .agri-intro-copy p {
    margin: 0;
  }

  body.agriculture-page .agri-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
  }

  body.agriculture-page .agri-highlight-grid article {
    border: 1px solid var(--agri-line);
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(77, 60, 37, .08);
  }

  body.agriculture-page .agri-highlight-grid span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 999px;
    color: var(--agri-green);
    background: rgba(119, 128, 33, .12);
    font-weight: 900;
  }

  body.agriculture-page .agri-highlight-grid h3,
  body.agriculture-page .agri-product-card h3 {
    margin: 0;
    color: var(--agri-earth);
  }

  body.agriculture-page .agri-highlight-grid p,
  body.agriculture-page .agri-product-card p {
    margin: 0;
    color: var(--agri-muted);
  }

  body.agriculture-page .agri-products {
    background:
      radial-gradient(circle at 10% 10%, rgba(119, 128, 33, .10), transparent 24rem),
      var(--agri-mint);
  }

  body.agriculture-page .agri-section-head {
    display: grid;
    gap: 14px;
    max-width: 880px;
    margin-bottom: 26px;
  }

  body.agriculture-page .agri-category-tabs {
    position: sticky;
    top: 86px;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: fit-content;
    margin-bottom: 34px;
    border: 1px solid var(--agri-line);
    border-radius: 999px;
    padding: 8px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 48px rgba(77, 60, 37, .10);
    backdrop-filter: blur(12px);
  }

  body.agriculture-page .agri-category-tabs a {
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--agri-earth);
    font-weight: 900;
    text-decoration: none;
  }

  body.agriculture-page .agri-category-tabs a:first-child {
    color: #fff;
    background: var(--agri-green);
  }

  body.agriculture-page .agri-seasonal-panel {
    display: grid;
    grid-template-columns: minmax(260px, .58fr) minmax(0, 1fr);
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
    margin: 0 0 44px;
    border: 1px solid rgba(119, 128, 33, .2);
    border-radius: 8px;
    padding: clamp(22px, 4vw, 36px);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 244, 232, .82)),
      radial-gradient(circle at 92% 18%, rgba(119, 128, 33, .14), transparent 18rem);
    box-shadow: 0 18px 52px rgba(77, 60, 37, .08);
  }

  body.agriculture-page .agri-seasonal-panel h3 {
    margin: 0 0 10px;
    color: var(--agri-earth);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.04;
  }

  body.agriculture-page .agri-seasonal-panel p:not(.eyebrow) {
    margin: 0;
    color: var(--agri-muted);
    font-size: 17px;
  }

  body.agriculture-page .agri-seasonal-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.agriculture-page .agri-seasonal-list a {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    border: 1px solid rgba(77, 60, 37, .1);
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
  }

  body.agriculture-page .agri-seasonal-list a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(77, 60, 37, .1);
  }

  body.agriculture-page .agri-seasonal-list img {
    grid-row: span 2;
    width: 44px;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
  }

  body.agriculture-page .agri-seasonal-list strong {
    overflow: hidden;
    color: var(--agri-earth);
    font-size: 15px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.agriculture-page .agri-seasonal-list small {
    overflow: hidden;
    color: var(--agri-muted);
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.agriculture-page .agri-category-block + .agri-category-block {
    margin-top: 58px;
  }

  body.agriculture-page .agri-category-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
  }

  body.agriculture-page .agri-category-heading h3 {
    margin: 0;
    color: var(--agri-earth);
    font-size: clamp(26px, 4vw, 42px);
  }

  body.agriculture-page .agri-category-heading span {
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--agri-green);
    background: rgba(119, 128, 33, .12);
    font-weight: 900;
  }

  body.agriculture-page .agri-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  body.agriculture-page .agri-product-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--agri-line);
    border-radius: 8px;
    padding: 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 52px rgba(77, 60, 37, .09);
    transition: transform .22s ease, box-shadow .22s ease;
  }

  body.agriculture-page .agri-product-card::after {
    content: "";
    position: absolute;
    inset: auto -34px -42px auto;
    width: 132px;
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(119, 128, 33, .08);
  }

  body.agriculture-page .agri-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 86px rgba(43, 35, 23, .15);
  }

  body.agriculture-page .agri-product-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    background: #e5ead7;
  }

  body.agriculture-page .agri-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
  }

  body.agriculture-page .agri-product-card:hover .agri-product-image img {
    transform: scale(1.045);
  }

  body.agriculture-page .agri-product-body {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
    flex: 1;
    padding: 20px;
  }

  body.agriculture-page .agri-badge {
    width: fit-content;
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--agri-green);
    background: rgba(119, 128, 33, .12);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  body.agriculture-page .agri-product-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 6px 0 0;
  }

  body.agriculture-page .agri-product-meta div {
    border: 1px solid rgba(77, 60, 37, .1);
    border-radius: 8px;
    padding: 10px;
    background: rgba(248, 244, 232, .56);
  }

  body.agriculture-page .agri-product-meta dt {
    margin: 0 0 3px;
    color: var(--agri-green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  body.agriculture-page .agri-product-meta dd {
    margin: 0;
    color: var(--agri-earth);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
  }

  body.agriculture-page .agri-note {
    margin-top: 28px;
    border-left: 4px solid var(--agri-green);
    border-radius: 8px;
    padding: 18px 20px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(77, 60, 37, .07);
  }

  body.agriculture-page .agri-cta {
    text-align: center;
    color: #fff;
    background:
      radial-gradient(circle at 18% 24%, rgba(255, 255, 255, .14), transparent 18rem),
      linear-gradient(135deg, #253015, #778021);
  }

  body.agriculture-page .agri-cta .section-inner {
    max-width: 880px;
  }

  body.agriculture-page .agri-cta h2 {
    color: #fff;
  }

  body.agriculture-page .agri-cta p {
    color: rgba(255, 255, 255, .84);
  }

  body.agriculture-page .agri-intro .eyebrow,
  body.agriculture-page .agri-products .eyebrow,
  body.agriculture-page .agri-product-summary .eyebrow,
  body.agriculture-page .agri-seasonal-panel .eyebrow {
    color: #fff;
  }

  body.agriculture-page .agri-cta .eyebrow {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .28);
  }

  body.agriculture-page .agri-cta-actions {
    justify-content: center;
  }

  @media (max-width: 1120px) {
    body.agriculture-page .agri-product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.agriculture-page .agri-count,
    body.agriculture-page .agri-hero-metrics {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.agriculture-page .agri-intro-panel {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 760px) {
    body.agriculture-page .agri-intro,
    body.agriculture-page .agri-products,
    body.agriculture-page .agri-cta {
      padding-block: 68px;
    }

    body.agriculture-page .agri-highlight-grid,
    body.agriculture-page .agri-product-grid,
    body.agriculture-page .agri-hero-metrics,
    body.agriculture-page .agri-seasonal-panel,
    body.agriculture-page .agri-seasonal-list,
    body.agriculture-page .agri-count {
      grid-template-columns: 1fr;
    }

    body.agriculture-page .agri-category-tabs {
      position: static;
      width: 100%;
      border-radius: 8px;
    }

    body.agriculture-page .agri-product-card {
      min-height: 0;
    }

    body.agriculture-page .agri-product-meta {
      grid-template-columns: 1fr;
    }

    body.agriculture-page .agri-intro-copy {
      border-left: 0;
      border-top: 4px solid rgba(119, 128, 33, .28);
      padding-left: 0;
      padding-top: 20px;
    }

    body.agriculture-page .agri-category-tabs a,
    body.agriculture-page .agri-hero-actions a,
    body.agriculture-page .agri-cta-actions,
    body.agriculture-page .agri-cta-actions a {
      width: 100%;
    }
  }

/* bsfcompost.php */
body.fertilizer-page {
  --fertilizer-green: #778021;
  --fertilizer-dark: #253015;
  --fertilizer-earth: #4d3c25;
  --fertilizer-cream: #f8f4e8;
  --fertilizer-paper: #fffdf6;
  --fertilizer-muted: #70685b;
  --fertilizer-line: rgba(77, 60, 37, .14);
  --fertilizer-shadow: 0 24px 70px rgba(43, 35, 23, .13);
  background:
    radial-gradient(circle at 12% 16%, rgba(119, 128, 33, .10), transparent 28rem),
    var(--fertilizer-paper);
}
body.fertilizer-page .fertilizer-hero {
  position: relative;
  overflow: hidden;
  padding: 164px clamp(18px, 4vw, 56px) 104px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(29, 31, 20, .92), rgba(77, 60, 37, .62) 52%, rgba(119, 128, 33, .26)),
    url("../assets/drive/BSF/bsf-4.jpg") center 42%/cover;
}
body.fertilizer-page .fertilizer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, .18), transparent 16rem),
    radial-gradient(circle at 10% 82%, rgba(119, 128, 33, .24), transparent 18rem);
  pointer-events: none;
}
body.fertilizer-page .fertilizer-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--fertilizer-paper));
}
body.fertilizer-page .fertilizer-hero .section-inner {
  position: relative;
  z-index: 1;
}
body.fertilizer-page .fertilizer-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .96;
}
body.fertilizer-page .fertilizer-hero p:not(.hero-breadcrumb):not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}
body.fertilizer-page .fertilizer-hero-actions,
body.fertilizer-page .fertilizer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
body.fertilizer-page .fertilizer-primary-btn,
body.fertilizer-page .fertilizer-secondary-btn,
body.fertilizer-page .fertilizer-product-body a,
body.fertilizer-page .fertilizer-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  color: #fff;
  background: var(--fertilizer-green);
  box-shadow: 0 14px 30px rgba(119, 128, 33, .24);
  font-weight: 900;
  text-decoration: none;
}
body.fertilizer-page .fertilizer-secondary-btn,
body.fertilizer-page .fertilizer-cta-actions a:nth-child(2) {
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .12);
}
body.fertilizer-page .fertilizer-intro,
body.fertilizer-page .fertilizer-products,
body.fertilizer-page .fertilizer-features,
body.fertilizer-page .fertilizer-applications,
body.fertilizer-page .fertilizer-process,
body.fertilizer-page .fertilizer-cta {
  padding: 92px clamp(18px, 4vw, 56px);
}
body.fertilizer-page .fertilizer-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, .62fr);
  gap: 42px;
  align-items: start;
}
body.fertilizer-page h2 {
  color: var(--fertilizer-earth);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
}
body.fertilizer-page .fertilizer-intro-copy,
body.fertilizer-page .fertilizer-section-head p,
body.fertilizer-page .fertilizer-cta p {
  color: var(--fertilizer-muted);
  font-size: clamp(17px, 2vw, 20px);
}
body.fertilizer-page .fertilizer-intro-copy p {
  margin-top: 0;
}
body.fertilizer-page .fertilizer-products,
body.fertilizer-page .fertilizer-applications {
  background: var(--fertilizer-cream);
}
body.fertilizer-page .fertilizer-section-head {
  max-width: 860px;
  margin-bottom: 34px;
}
body.fertilizer-page .fertilizer-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
body.fertilizer-page .fertilizer-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--fertilizer-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 58px rgba(77, 60, 37, .10);
  transition: transform .22s ease, box-shadow .22s ease;
}
body.fertilizer-page .fertilizer-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 86px rgba(43, 35, 23, .16);
}
body.fertilizer-page .fertilizer-product-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--fertilizer-cream);
}
body.fertilizer-page .fertilizer-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
body.fertilizer-page .fertilizer-product-image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
body.fertilizer-page .fertilizer-product-card:hover img {
  transform: scale(1.05);
}
body.fertilizer-page .fertilizer-product-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 12px;
  padding: 24px;
}
body.fertilizer-page .fertilizer-product-body span,
body.fertilizer-page .fertilizer-feature-grid span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--fertilizer-green);
  background: rgba(119, 128, 33, .12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.fertilizer-page .fertilizer-product-body h3,
body.fertilizer-page .fertilizer-feature-grid h3 {
  margin: 0;
  color: var(--fertilizer-earth);
  font-size: 24px;
  line-height: 1.1;
}
body.fertilizer-page .fertilizer-product-body p,
body.fertilizer-page .fertilizer-feature-grid p,
body.fertilizer-page .fertilizer-timeline p {
  margin: 0;
  color: var(--fertilizer-muted);
}
body.fertilizer-page .fertilizer-product-body a {
  width: 100%;
  margin-top: auto;
}
body.fertilizer-page .fertilizer-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.fertilizer-page .fertilizer-feature-grid article {
  display: grid;
  gap: 12px;
  border: 1px solid var(--fertilizer-line);
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 46px rgba(77, 60, 37, .08);
}
body.fertilizer-page .fertilizer-applications .section-inner {
  text-align: center;
}
body.fertilizer-page .fertilizer-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
body.fertilizer-page .fertilizer-chip-grid span {
  border: 1px solid var(--fertilizer-line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--fertilizer-earth);
  background: #fff;
  box-shadow: 0 12px 32px rgba(77, 60, 37, .07);
  font-weight: 900;
}
body.fertilizer-page .fertilizer-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
body.fertilizer-page .fertilizer-timeline article {
  position: relative;
  border: 1px solid var(--fertilizer-line);
  border-radius: 20px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(77, 60, 37, .08);
}
body.fertilizer-page .fertilizer-timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--fertilizer-green);
  font-weight: 900;
}
body.fertilizer-page .fertilizer-timeline strong {
  display: block;
  margin-bottom: 8px;
  color: var(--fertilizer-earth);
  font-size: 18px;
}
body.fertilizer-page .fertilizer-cta {
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, .14), transparent 18rem),
    linear-gradient(135deg, #253015, #778021);
}
body.fertilizer-page .fertilizer-cta .section-inner {
  max-width: 880px;
}
body.fertilizer-page .fertilizer-cta h2 {
  color: #fff;
}
body.fertilizer-page .fertilizer-cta p {
  color: rgba(255, 255, 255, .84);
}
body.fertilizer-page .fertilizer-cta-actions {
  justify-content: center;
}
body.fertilizer-page .fertilizer-cta-actions a:nth-child(2) {
  color: var(--fertilizer-earth);
  background: #fff;
  border-color: transparent;
}
@media (max-width: 1180px) {
  body.fertilizer-page .fertilizer-product-grid,
  body.fertilizer-page .fertilizer-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  body.fertilizer-page .fertilizer-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  body.fertilizer-page .fertilizer-hero {
    background-position: center top;
  }
  body.fertilizer-page .fertilizer-intro,
  body.fertilizer-page .fertilizer-products,
  body.fertilizer-page .fertilizer-features,
  body.fertilizer-page .fertilizer-applications,
  body.fertilizer-page .fertilizer-process,
  body.fertilizer-page .fertilizer-cta {
    padding-block: 68px;
  }
  body.fertilizer-page .fertilizer-intro-grid,
  body.fertilizer-page .fertilizer-product-grid,
  body.fertilizer-page .fertilizer-feature-grid,
  body.fertilizer-page .fertilizer-timeline {
    grid-template-columns: 1fr;
  }
  body.fertilizer-page .fertilizer-hero-actions a,
  body.fertilizer-page .fertilizer-cta-actions,
  body.fertilizer-page .fertilizer-cta-actions a {
    width: 100%;
  }
}

/* livestock.php */
body.livestock-page {
  --livestock-green: #778021;
  --livestock-dark: #283313;
  --livestock-earth: #4D3C25;
  --livestock-cream: #f8f4e8;
  --livestock-paper: #fffdf6;
  --livestock-muted: #6d665a;
  --livestock-line: rgba(77, 60, 37, .14);
  --livestock-shadow: 0 24px 70px rgba(43, 35, 23, .13);
  background:
    radial-gradient(circle at 12% 14%, rgba(119, 128, 33, .10), transparent 28rem),
    var(--livestock-paper);
}
body.livestock-page .livestock-hero {
  position: relative;
  overflow: hidden;
  padding: 164px clamp(18px, 4vw, 56px) 104px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(29, 27, 22, .9), rgba(77, 60, 37, .58) 52%, rgba(119, 128, 33, .2)),
    url("../assets/drive/Chickens/chicken-22.jpg") center/cover;
}
body.livestock-page .livestock-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--livestock-paper));
}
body.livestock-page .livestock-hero .section-inner {
  position: relative;
  z-index: 1;
}
body.livestock-page .livestock-hero .eyebrow {
  color: #fff;
}
body.livestock-page .livestock-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .96;
}
body.livestock-page .livestock-hero p:not(.hero-breadcrumb):not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}
body.livestock-page .livestock-hero-actions,
body.livestock-page .livestock-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
body.livestock-page .livestock-primary-btn,
body.livestock-page .livestock-secondary-btn,
body.livestock-page .livestock-product-body a,
body.livestock-page .livestock-sales-cta a,
body.livestock-page .livestock-final-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  color: #fff;
  background: var(--livestock-green);
  box-shadow: 0 14px 30px rgba(119, 128, 33, .24);
  font-weight: 900;
  text-decoration: none;
}
body.livestock-page .livestock-secondary-btn,
body.livestock-page .livestock-final-actions a:nth-child(2) {
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .12);
}
body.livestock-page .livestock-intro,
body.livestock-page .livestock-product-section,
body.livestock-page .livestock-sales-cta,
body.livestock-page .livestock-trust-section,
body.livestock-page .livestock-final-cta {
  padding: 92px clamp(18px, 4vw, 56px);
}
body.livestock-page .livestock-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, .58fr);
  gap: 42px;
  align-items: end;
}
body.livestock-page h2 {
  color: var(--livestock-earth);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
}
body.livestock-page .livestock-intro-grid > p,
body.livestock-page .livestock-section-head p,
body.livestock-page .livestock-sales-cta p,
body.livestock-page .livestock-final-cta p {
  color: var(--livestock-muted);
  font-size: clamp(17px, 2vw, 20px);
}
body.livestock-page .livestock-product-section,
body.livestock-page .livestock-trust-section {
  background: var(--livestock-cream);
}
body.livestock-page .livestock-section-head {
  max-width: 840px;
  margin-bottom: 34px;
}
body.livestock-page .livestock-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
body.livestock-page .livestock-product-card {
  overflow: hidden;
  border: 1px solid var(--livestock-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 58px rgba(77, 60, 37, .10);
  transition: transform .22s ease, box-shadow .22s ease;
}
body.livestock-page .livestock-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 86px rgba(43, 35, 23, .16);
}
body.livestock-page .livestock-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: contain;
  background: #f2ead8;
}
body.livestock-page .livestock-product-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}
body.livestock-page .product-badge {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--livestock-green);
  background: rgba(119, 128, 33, .12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.livestock-page .livestock-product-body h3 {
  margin: 0;
  color: var(--livestock-earth);
  font-size: 26px;
  line-height: 1.08;
}
body.livestock-page .livestock-product-body p {
  margin: 0;
  color: var(--livestock-muted);
}
body.livestock-page .livestock-product-body a {
  width: 100%;
  margin-top: 4px;
}
body.livestock-page .livestock-sales-cta {
  text-align: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(119, 128, 33, .12), transparent 24rem),
    #fff;
}
body.livestock-page .livestock-sales-cta .section-inner,
body.livestock-page .livestock-final-cta .section-inner {
  max-width: 860px;
}
body.livestock-page .livestock-sales-cta a {
  margin-top: 18px;
}
body.livestock-page .livestock-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.livestock-page .livestock-trust-grid article {
  border: 1px solid var(--livestock-line);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 46px rgba(77, 60, 37, .08);
}
body.livestock-page .livestock-trust-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--livestock-green);
  background: rgba(119, 128, 33, .12);
  font-weight: 900;
}
body.livestock-page .livestock-trust-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--livestock-earth);
  font-size: 19px;
}
body.livestock-page .livestock-trust-grid p {
  margin: 0;
  color: var(--livestock-muted);
  font-size: 15px;
}
body.livestock-page .livestock-final-cta {
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, .14), transparent 18rem),
    linear-gradient(135deg, #283313, #778021);
}
body.livestock-page .livestock-final-cta h2 {
  color: #fff;
}
body.livestock-page .livestock-final-cta p {
  color: rgba(255, 255, 255, .84);
}
body.livestock-page .livestock-final-actions {
  justify-content: center;
}
body.livestock-page .livestock-final-actions a:nth-child(2) {
  color: var(--livestock-earth);
  background: #fff;
  border-color: transparent;
}
@media (max-width: 1020px) {
  body.livestock-page .livestock-product-grid,
  body.livestock-page .livestock-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  body.livestock-page .livestock-intro,
  body.livestock-page .livestock-product-section,
  body.livestock-page .livestock-sales-cta,
  body.livestock-page .livestock-trust-section,
  body.livestock-page .livestock-final-cta {
    padding-block: 68px;
  }
  body.livestock-page .livestock-intro-grid,
  body.livestock-page .livestock-product-grid,
  body.livestock-page .livestock-trust-grid {
    grid-template-columns: 1fr;
  }
  body.livestock-page .livestock-hero-actions a,
  body.livestock-page .livestock-final-actions,
  body.livestock-page .livestock-final-actions a {
    width: 100%;
  }
}

/* Final shared consistency overrides */
body.site-page {
  --radius: 8px;
  line-height: 1.6;
}
body.site-page a {
  color: inherit;
  text-decoration: none;
}
body.site-page :where(.nav-list, .dropdown-menu, .contact-list, .impact-list, .milestone-list, .manager-list) {
  list-style: none;
}
body.site-page :where(.nav-list, .dropdown-menu) {
  padding-left: 0;
}
body.site-page :where(.card, .tour-include-card, .program-card, .belief, .belief-cards article, .timeline-item, .summary, .training-media-card, .tour-enquiry-intro, .tour-enquiry-form, .tour-gallery-grid img, .gallery-grid img, .main-photo, .tour-fee) {
  border-radius: var(--radius);
}
body.site-page :where(input:not(.nav-toggle), select, textarea) {
  width: 100%;
  border: 1px solid rgba(77, 60, 37, .2);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
}
body.site-page :where(input:not(.nav-toggle), select, textarea):focus {
  outline: 0;
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(119, 128, 33, .12);
}
body.site-page :where(.tour-enquiry-form button, .support-enquiry-form button, .cta-actions a) {
  border-radius: 999px;
  font-weight: 900;
}

/* research.php */
body.research-page {
  --research-green: #778021;
  --research-dark: #2d2818;
  --research-soft: #eef5d8;
}
body.research-page .research-hero {
  min-height: 760px;
  padding: 170px clamp(18px, 4vw, 56px) 96px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(29, 27, 22, .9), rgba(29, 27, 22, .58) 48%, rgba(29, 27, 22, .16)),
    url("../assets/drive/Working/working-10.jpg") center/cover;
}
body.research-page .research-hero-grid,
body.research-page .research-program-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
body.research-page .research-hero-copy {
  max-width: 820px;
}
body.research-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #efe7c8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.research-page .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--leaf);
}
body.research-page h1 {
  max-width: 900px;
  margin: 0 0 22px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: .94;
  letter-spacing: 0;
}
body.research-page h2 {
  margin: 0 0 16px;
  color: var(--earth);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
}
body.research-page h3 {
  margin: 0 0 10px;
  color: var(--earth);
  font-size: 22px;
  line-height: 1.15;
}
body.research-page .research-hero p:not(.hero-breadcrumb):not(.eyebrow),
body.research-page .lead {
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}
body.research-page .lead {
  color: var(--muted);
}
body.research-page section {
  padding: 92px clamp(18px, 4vw, 56px);
}
body.research-page .band {
  background: var(--cream);
}
body.research-page .research-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
body.research-page .research-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  color: #fff;
  background: var(--leaf);
  font-weight: 900;
}
body.research-page .research-actions a:nth-child(2) {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .12);
}
body.research-page .research-visual {
  position: relative;
  min-height: 430px;
  transform: rotateX(54deg) rotateZ(-38deg);
  transform-style: preserve-3d;
}
body.research-page .iso-stack {
  position: absolute;
  display: grid;
  place-items: center;
  width: 210px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(119, 128, 33, .92), rgba(93, 103, 25, .72));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  font-weight: 900;
  transform-style: preserve-3d;
}
body.research-page .iso-stack::after {
  content: "";
  position: absolute;
  inset: auto 0 -42px;
  height: 42px;
  border-radius: 0 0 18px 18px;
  background: rgba(77, 60, 37, .82);
  transform: rotateX(-90deg);
  transform-origin: top;
}
body.research-page .iso-compost { left: 12%; top: 45%; }
body.research-page .iso-plant { left: 30%; top: 28%; }
body.research-page .iso-feed { left: 48%; top: 12%; }
body.research-page .iso-chicken { left: 60%; top: 36%; }
body.research-page .section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .62fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 36px;
}
body.research-page .research-intro .eyebrow,
body.research-page .research-program .eyebrow,
body.research-page .research-milestones .eyebrow {
  color: var(--leaf);
}
body.research-page .research-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body.research-page .research-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
body.research-page .research-program-card {
  display: grid;
  align-content: start;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(119, 128, 33, .18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
body.research-page .research-program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
body.research-page .research-program-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
body.research-page .research-program-card span,
body.research-page .research-program-card h3,
body.research-page .research-program-card p,
body.research-page .research-program-card strong {
  margin-inline: 22px;
}
body.research-page .research-program-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-top: 22px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--leaf);
  background: var(--research-soft);
  font-weight: 900;
}
body.research-page .research-program-card p {
  color: var(--muted);
}
body.research-page .research-program-card strong {
  align-self: end;
  margin-top: 8px;
  margin-bottom: 24px;
  color: var(--leaf);
  font-size: 14px;
}
body.research-page .research-pillar-card {
  min-height: 250px;
  border: 1px solid rgba(119, 128, 33, .18);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
body.research-page .research-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
body.research-page .research-pillar-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--leaf);
  background: var(--research-soft);
  font-weight: 900;
}
body.research-page .research-pillar-card p,
body.research-page .research-program-copy p,
body.research-page .research-timeline p {
  color: var(--muted);
}
body.research-page .research-program-grid.flip .research-program-media {
  order: 2;
}
body.research-page .research-program-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
body.research-page .research-feature-list,
body.research-page .research-plant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
body.research-page .research-feature-list span,
body.research-page .research-plant-tags span {
  border: 1px solid rgba(119, 128, 33, .22);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--earth);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}
body.research-page .research-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
body.research-page .research-timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
}
body.research-page .research-timeline span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.research-detail-page .research-detail-hero {
  padding: 166px clamp(18px, 4vw, 56px) 88px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(29, 27, 22, .9), rgba(29, 27, 22, .58) 50%, rgba(29, 27, 22, .14)),
    url("../assets/drive/Working/working-10.jpg") center/cover;
}
body.research-detail-page .feed-hero {
  background:
    linear-gradient(90deg, rgba(29, 27, 22, .9), rgba(29, 27, 22, .56) 50%, rgba(29, 27, 22, .14)),
    url("../assets/drive/BSF/bsf-5.jpg") center/cover;
}
body.research-detail-page .chicken-hero {
  background:
    linear-gradient(90deg, rgba(29, 27, 22, .9), rgba(29, 27, 22, .56) 50%, rgba(29, 27, 22, .14)),
    url("../assets/drive/Chickens/chicken-9.jpg") center/cover;
}
body.research-detail-page .compost-hero {
  background:
    linear-gradient(90deg, rgba(29, 27, 22, .9), rgba(29, 27, 22, .56) 50%, rgba(29, 27, 22, .14)),
    url("../assets/drive/Working/workin-1.jpg") center/cover;
}
body.research-detail-page .research-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
body.research-detail-page .research-detail-hero h1 {
  max-width: 900px;
}
body.research-detail-page .research-detail-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}
body.research-detail-page .research-detail-hero img,
body.research-detail-page .detail-photo,
body.research-detail-page .detail-video,
body.research-detail-page .ingredient-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #1d1b16;
}
body.research-detail-page .research-detail-section {
  padding: 88px clamp(18px, 4vw, 56px);
}
body.research-detail-page .detail-two-col,
body.research-detail-page .ingredient-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .72fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
body.research-detail-page .detail-two-col > p,
body.research-detail-page .detail-two-col p,
body.research-detail-page .ingredient-panel p {
  color: var(--muted);
}
body.research-detail-page .detail-check-grid,
body.research-detail-page .detail-card-grid,
body.research-detail-page .plant-grid {
  display: grid;
  gap: 16px;
}
body.research-detail-page .detail-check-grid,
body.research-detail-page .detail-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.research-detail-page .plant-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
body.research-detail-page .detail-check-grid article,
body.research-detail-page .detail-card-grid article,
body.research-detail-page .plant-grid article,
body.research-detail-page .detail-stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
}
body.research-detail-page .detail-card-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--leaf);
  background: var(--research-soft);
  font-weight: 900;
}
body.research-detail-page .detail-pill-list,
body.research-detail-page .research-plant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.research-detail-page .detail-pill-list span {
  border: 1px solid rgba(119, 128, 33, .22);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--earth);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}
body.research-detail-page .detail-stat-card strong {
  display: block;
  color: var(--leaf);
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1;
}
body.research-detail-page .detail-stat-card span {
  display: block;
  margin: 4px 0 18px;
  color: var(--earth);
  font-weight: 900;
}
@media (max-width: 980px) {
  body.research-page .research-hero {
    min-height: auto;
    padding-top: 136px;
  }
  body.research-page .research-hero-grid,
  body.research-page .research-program-grid,
  body.research-page .section-head {
    grid-template-columns: 1fr;
  }
  body.research-page .research-program-grid.flip .research-program-media {
    order: 0;
  }
  body.research-page .research-visual {
    min-height: 340px;
    transform: scale(.78) rotateX(54deg) rotateZ(-38deg);
    transform-origin: left center;
  }
  body.research-page .research-pillar-grid,
  body.research-page .research-card-grid,
  body.research-page .research-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.research-detail-page .research-detail-hero-grid,
  body.research-detail-page .detail-two-col,
  body.research-detail-page .ingredient-panel,
  body.research-detail-page .detail-check-grid,
  body.research-detail-page .detail-card-grid {
    grid-template-columns: 1fr;
  }
  body.research-detail-page .plant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  body.research-page section {
    padding-block: 70px;
  }
  body.research-page .research-pillar-grid,
  body.research-page .research-card-grid,
  body.research-page .research-timeline {
    grid-template-columns: 1fr;
  }
  body.research-page .research-visual {
    display: none;
  }
  body.research-detail-page .plant-grid {
    grid-template-columns: 1fr;
  }
}

/* certifications-partnerships.php */
body.certifications-page {
  --cert-deep: #243018;
  --cert-leaf: #778021;
  --cert-soft: #eef6dc;
  --cert-glow: rgba(119, 128, 33, .14);
}
body.certifications-page .cert-hero {
  padding: 168px clamp(18px, 4vw, 56px) 96px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(29, 27, 22, .9), rgba(29, 27, 22, .54) 52%, rgba(29, 27, 22, .16)),
    url("../assets/drive/Farm/farm-1.jpg") center/cover;
}
body.certifications-page .cert-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .56fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
body.certifications-page .cert-breadcrumb {
  display: inline-flex;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
  font-weight: 800;
}
body.certifications-page h1 {
  max-width: 980px;
  margin: 0 0 22px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: .94;
}
body.certifications-page h2 {
  margin: 0 0 14px;
  color: var(--earth);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}
body.certifications-page h3 {
  margin: 0 0 10px;
  color: var(--earth);
  line-height: 1.14;
}
body.certifications-page .cert-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}
body.certifications-page .cert-hero-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}
body.certifications-page .cert-hero-panel span {
  border-radius: var(--radius);
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-weight: 900;
}
body.certifications-page .cert-section {
  padding: 92px clamp(18px, 4vw, 56px);
}
body.certifications-page .cert-section-head {
  max-width: 850px;
  margin-bottom: 34px;
}
body.certifications-page .cert-section-head.compact {
  max-width: 760px;
}
body.certifications-page .cert-section-head p:not(.eyebrow),
body.certifications-page .certificate-card p,
body.certifications-page .compliance-grid p,
body.certifications-page .partner-card p,
body.certifications-page .grass-timeline p,
body.certifications-page .planting-card p,
body.certifications-page .cert-cta p {
  color: var(--muted);
}
body.certifications-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.certifications-page .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
body.certifications-page .certificate-grid,
body.certifications-page .accreditation-grid,
body.certifications-page .partner-card-grid,
body.certifications-page .impact-card-grid {
  display: grid;
  gap: 18px;
}
body.certifications-page .accreditation-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(119, 128, 33, .12), transparent 28%),
    #fff;
}
body.certifications-page .accreditation-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: 62px;
  row-gap: 82px;
}
body.certifications-page .accreditation-card {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 270px;
  border: 1px solid rgba(119, 128, 33, .16);
  border-radius: var(--radius);
  padding: 82px 18px 24px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 50px rgba(77, 60, 37, .08);
}
body.certifications-page .accreditation-card span {
  position: absolute;
  top: -58px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  border: 1px solid rgba(119, 128, 33, .2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .74)),
    var(--cert-soft);
  box-shadow: 0 18px 44px rgba(77, 60, 37, .12);
}
body.certifications-page .accreditation-card img {
  width: 68%;
  max-height: 68%;
  object-fit: contain;
}
body.certifications-page .accreditation-card p {
  color: var(--muted);
  font-size: 14px;
}
body.certifications-page .certificate-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.certifications-page .certificate-card {
  display: grid;
  grid-template-columns: minmax(160px, .42fr) minmax(0, .58fr);
  overflow: hidden;
  border: 1px solid rgba(119, 128, 33, .16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(77, 60, 37, .08);
}
body.certifications-page .certificate-placeholder {
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(119, 128, 33, .12), rgba(255, 253, 246, .92)),
    repeating-linear-gradient(45deg, rgba(119, 128, 33, .08) 0 8px, transparent 8px 16px);
}
body.certifications-page .certificate-placeholder img {
  width: min(210px, 100%);
  max-height: 292px;
  object-fit: contain;
  border: 1px solid rgba(77, 60, 37, .16);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(77, 60, 37, .16);
}
body.certifications-page .certificate-placeholder span {
  display: grid;
  place-items: center;
  width: min(180px, 100%);
  aspect-ratio: 3 / 4;
  border: 1px dashed rgba(77, 60, 37, .28);
  border-radius: 6px;
  color: var(--earth);
  background: rgba(255, 255, 255, .78);
  box-shadow: none;
  text-align: center;
  font-weight: 900;
}
body.certifications-page .certificate-body {
  padding: 26px;
}
body.certifications-page .cert-badge {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--leaf);
  background: var(--cert-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.certifications-page dl {
  display: grid;
  gap: 9px;
  margin: 16px 0;
}
body.certifications-page dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.certifications-page dd {
  margin: 0;
  color: var(--earth);
  font-weight: 800;
}
body.certifications-page .certificate-body a,
body.certifications-page .cert-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: var(--leaf);
  font-weight: 900;
}
body.certifications-page .government-section,
body.certifications-page .partner-section {
  background: var(--cream);
}
body.certifications-page .compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.certifications-page .compliance-grid article,
body.certifications-page .partner-card,
body.certifications-page .impact-card-grid article,
body.certifications-page .planting-card {
  border: 1px solid rgba(119, 128, 33, .16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(77, 60, 37, .08);
}
body.certifications-page .compliance-grid article {
  padding: 26px;
}
body.certifications-page .compliance-grid span,
body.certifications-page .impact-card-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--leaf);
  background: var(--cert-soft);
  font-weight: 900;
}
body.certifications-page .partner-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
body.certifications-page .partner-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}
body.certifications-page .partner-card img {
  width: 100%;
  max-width: 150px;
  height: 88px;
  object-fit: contain;
  justify-self: start;
}
body.certifications-page .partner-card span,
body.certifications-page .planting-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.certifications-page .partner-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--earth);
}
body.certifications-page .grass-milestone-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(210, 232, 142, .3), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, .16), transparent 26%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, .08) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, #314618, #6c7c24 58%, #9bac3d);
}
body.certifications-page .grass-milestone-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(84deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, rgba(255, 255, 255, .1), transparent 36%);
  pointer-events: none;
}
body.certifications-page .grass-milestone-section .section-inner {
  position: relative;
  z-index: 1;
}
body.certifications-page .grass-milestone-section h2,
body.certifications-page .grass-milestone-section .eyebrow,
body.certifications-page .grass-timeline h3 {
  color: #fff;
}
body.certifications-page .grass-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body.certifications-page .grass-timeline article {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(10px);
}
body.certifications-page .grass-timeline span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #f7f1d9;
  background: rgba(29, 27, 22, .22);
  font-size: 12px;
  font-weight: 900;
}
body.certifications-page .grass-timeline p {
  color: rgba(255, 255, 255, .82);
}
body.certifications-page .planting-card {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(280px, .5fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(238, 246, 220, .92)),
    url("../assets/drive/Working/working-10.jpg") center/cover;
}
body.certifications-page .impact-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.certifications-page .impact-card-grid article {
  padding: 24px;
}
body.certifications-page .cert-cta {
  position: relative;
  overflow: hidden;
  padding: 88px clamp(18px, 4vw, 56px);
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(119, 128, 33, .12), transparent 28%),
    #fff;
}
body.certifications-page .cert-cta::after {
  content: "";
  position: absolute;
  right: clamp(18px, 8vw, 120px);
  bottom: -28px;
  width: clamp(120px, 16vw, 210px);
  aspect-ratio: 1;
  background: url("../assets/ayam-satoyama.png") center/contain no-repeat;
  opacity: .11;
  pointer-events: none;
}
body.certifications-page .cert-cta .section-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}
body.certifications-page .cert-cta .eyebrow {
  justify-content: center;
}
body.certifications-page .cert-cta .eyebrow::before {
  display: none;
}
body.certifications-page .cert-cta a {
  margin-top: 12px;
}
@media (max-width: 1180px) {
  body.certifications-page .partner-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.certifications-page .accreditation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.certifications-page .grass-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  body.certifications-page .cert-hero-grid,
  body.certifications-page .certificate-card,
  body.certifications-page .planting-card {
    grid-template-columns: 1fr;
  }
  body.certifications-page .certificate-grid,
  body.certifications-page .accreditation-grid,
  body.certifications-page .compliance-grid,
  body.certifications-page .impact-card-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  body.certifications-page .cert-hero {
    padding-top: 138px;
  }
  body.certifications-page .partner-card-grid,
  body.certifications-page .accreditation-grid,
  body.certifications-page .grass-timeline {
    grid-template-columns: 1fr;
  }
}

/* Inner page standardisation, excluding index.php */
body.site-page:not(.home-page) {
  --inner-wrap: min(1220px, calc(100% - 36px));
  --inner-hero-min: 560px;
  --inner-hero-top: 154px;
  --inner-hero-bottom: 92px;
  --inner-hero-title: clamp(44px, 7vw, 86px);
  --inner-section-title: clamp(32px, 5vw, 58px);
  --inner-lead: clamp(17px, 2vw, 21px);
}
body.site-page:not(.home-page) :where(.wrap, .section-inner, .business-wrap, .agro-wrap) {
  width: var(--inner-wrap);
  max-width: none;
  margin-inline: auto;
}
body.site-page:not(.home-page) :where(
  .hero,
  .page-title,
  .about-title,
  .business-hero,
  .agro-hero,
  .research-hero,
  .research-detail-hero,
  .cert-hero
) {
  display: grid;
  align-items: end;
  min-height: var(--inner-hero-min);
  padding: var(--inner-hero-top) clamp(18px, 4vw, 56px) var(--inner-hero-bottom);
  color: #fff;
}
body.site-page:not(.home-page) :where(
  .hero,
  .page-title,
  .about-title,
  .business-hero,
  .agro-hero,
  .research-hero,
  .research-detail-hero,
  .cert-hero
) :where(h1) {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: var(--inner-hero-title);
  line-height: .96;
  letter-spacing: 0;
}
body.site-page:not(.home-page) :where(
  .hero,
  .page-title,
  .about-title,
  .business-hero,
  .agro-hero,
  .research-hero,
  .research-detail-hero,
  .cert-hero,
  .agri-hero,
  .fertilizer-hero,
  .livestock-hero,
  .news-hero
) :where(p:not(.eyebrow)) {
  max-width: 860px;
  color: rgba(255, 255, 255, .86);
  font-size: var(--inner-lead);
  font-weight: 700;
}
body.site-page:not(.home-page) :where(
  .hero,
  .page-title,
  .about-title,
  .business-hero,
  .agro-hero,
  .research-hero,
  .research-detail-hero,
  .cert-hero,
  .agri-hero,
  .fertilizer-hero,
  .livestock-hero,
  .news-hero
) :where(.eyebrow:first-child) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
body.site-page:not(.home-page) :where(
  .hero,
  .page-title,
  .about-title,
  .business-hero,
  .agro-hero,
  .research-hero,
  .research-detail-hero,
  .cert-hero,
  .agri-hero,
  .fertilizer-hero,
  .livestock-hero,
  .news-hero
) :where(.eyebrow:not(:first-child)) {
  margin: 0 0 14px;
  color: #efe7c8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body.site-page:not(.home-page) :where(.hero, .page-title, .about-title, .business-hero, .agro-hero, .research-hero, .research-detail-hero, .cert-hero, .agri-hero, .fertilizer-hero, .livestock-hero, .news-hero) .eyebrow::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 34px;
  height: 2px;
  background: #f0ca31;
}
body.site-page:not(.home-page) :where(h2) {
  font-size: var(--inner-section-title);
  line-height: 1.04;
  letter-spacing: 0;
}
body.site-page:not(.home-page) :where(.lead, .section-lead) {
  color: var(--muted);
  font-size: var(--inner-lead);
}
body.research-page .research-hero-grid,
body.certifications-page .cert-hero-grid {
  align-items: center;
}
body.research-page .research-hero-copy {
  max-width: 920px;
}
@media (max-width: 760px) {
  body.site-page:not(.home-page) {
    --inner-wrap: min(100% - 32px, 1220px);
    --inner-hero-min: 460px;
    --inner-hero-top: 132px;
    --inner-hero-bottom: 72px;
    --inner-hero-title: clamp(36px, 12vw, 54px);
  }
  body.home-page .home-impact::after,
  body.business-page .business-cta::after,
  body.agrotourism-page .agro-cta::after,
  body.certifications-page .cert-cta::after {
    width: 120px;
    opacity: .08;
  }
}

/* Standard hero alignment for About, R&D, and Certifications */
body.about-us-page .about-title,
body.research-page .research-hero,
body.certifications-page .cert-hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 164px clamp(18px, 4vw, 56px) 104px;
  text-align: left;
  color: #fff;
}
body.about-us-page .about-title {
  background:
    linear-gradient(105deg, rgba(29, 27, 22, .9), rgba(77, 60, 37, .58) 52%, rgba(119, 128, 33, .2)),
    url("../assets/drive/Chickens/chicken-20.jpg") center/cover;
}
body.research-page .research-hero {
  background:
    linear-gradient(105deg, rgba(29, 27, 22, .9), rgba(77, 60, 37, .58) 52%, rgba(119, 128, 33, .2)),
    url("../assets/drive/Working/working-10.jpg") center/cover;
}
body.certifications-page .cert-hero {
  background:
    linear-gradient(105deg, rgba(29, 27, 22, .9), rgba(77, 60, 37, .58) 52%, rgba(119, 128, 33, .2)),
    url("../assets/drive/Farm/farm-1.jpg") center/cover;
}
body.about-us-page .about-title::after,
body.research-page .research-hero::after,
body.certifications-page .cert-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, #fffdf6);
}
body.about-us-page .about-title .about-wrap,
body.research-page .research-hero-grid,
body.certifications-page .cert-hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}
body.about-us-page .about-hero-copy,
body.research-page .research-hero-copy,
body.certifications-page .cert-hero-grid > div {
  max-width: 920px;
}
body.about-us-page .about-title h1,
body.research-page .research-hero h1,
body.certifications-page .cert-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .96;
}
body.about-us-page .about-hero-copy > p:not(.eyebrow),
body.research-page .research-hero p:not(.eyebrow),
body.certifications-page .cert-hero p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}
body.about-us-page .about-hero-image {
  display: none;
}
body.about-us-page .about-hero-stats {
  max-width: 620px;
  margin-top: 28px;
}
body.about-us-page .about-title .eyebrow:first-child,
body.research-page .research-hero .eyebrow:first-child,
body.certifications-page .cert-hero .eyebrow:first-child {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  body.about-us-page .about-title,
  body.research-page .research-hero,
  body.certifications-page .cert-hero {
    padding-top: 138px;
    padding-bottom: 92px;
  }
  body.about-us-page .about-hero-stats {
    grid-template-columns: 1fr;
  }
}

/* news.php */
body.news-page {
  --news-green: #778021;
  --news-dark: #253015;
  --news-earth: #4d3c25;
  --news-cream: #f8f4e8;
  --news-paper: #fffdf6;
  --news-muted: #70685b;
  --news-line: rgba(77, 60, 37, .14);
  --news-shadow: 0 24px 70px rgba(43, 35, 23, .12);
  color: #1d1b16;
  background: var(--news-paper);
}
body.news-page .news-hero {
  position: relative;
  overflow: hidden;
  padding: 164px clamp(18px, 4vw, 56px) 104px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(29, 27, 22, .9), rgba(77, 60, 37, .58) 52%, rgba(119, 128, 33, .2)),
    url("../assets/drive/Farm/farm-2.jpg") center/cover;
}
body.news-page .news-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--news-paper));
}
body.news-page .news-hero .section-inner {
  position: relative;
  z-index: 1;
}
body.news-page .news-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .96;
}
body.news-page .news-hero p:not(.hero-breadcrumb):not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}
body.news-page .social-section {
  padding: 92px clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 10% 8%, rgba(119, 128, 33, .10), transparent 24rem),
    var(--news-paper);
}
body.news-page .social-hub-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .7fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  border: 1px solid var(--news-line);
  border-radius: 28px;
  padding: clamp(26px, 5vw, 54px);
  background:
    radial-gradient(circle at 92% 12%, rgba(119, 128, 33, .14), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 244, 232, .78));
  box-shadow: var(--news-shadow);
}
body.news-page .social-copy {
  display: grid;
  gap: 18px;
}
body.news-page .social-copy h2 {
  max-width: 820px;
  margin: 0;
  color: var(--news-earth);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}
body.news-page .social-copy p:not(.eyebrow),
body.news-page .social-card p {
  max-width: 760px;
  margin: 0;
  color: var(--news-muted);
  font-size: clamp(17px, 2vw, 20px);
}
body.news-page .social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
body.news-page .social-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
body.news-page .social-copy a,
body.news-page .social-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  color: #fff;
  background: var(--news-green);
  box-shadow: 0 14px 30px rgba(119, 128, 33, .24);
  font-weight: 900;
  text-decoration: none;
}
body.news-page .social-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--news-line);
  border-radius: 22px;
  padding: 24px;
  background:
    radial-gradient(circle at 86% 12%, rgba(119, 128, 33, .16), transparent 12rem),
    #fff;
  box-shadow: 0 16px 46px rgba(77, 60, 37, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}
body.news-page .social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(43, 35, 23, .14);
}
body.news-page .social-card-icon {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 22px;
  color: #fff;
  background: #1877f2;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}
body.news-page .instagram-card .social-card-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 76%, #515bd4);
}
body.news-page .social-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--news-green);
  background: rgba(119, 128, 33, .12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.news-page .social-card h3 {
  margin: 0;
  color: var(--news-earth);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
}
body.news-page .social-feed-section {
  padding: 92px clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 88% 14%, rgba(119, 128, 33, .10), transparent 24rem),
    var(--news-cream);
}
body.news-page .social-feed-head {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin-bottom: 34px;
}
body.news-page .social-feed-head h2 {
  margin: 0;
  color: var(--news-earth);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
}
body.news-page .social-feed-head p {
  margin: 0;
  color: var(--news-muted);
  font-size: clamp(17px, 2vw, 20px);
}
body.news-page .social-feed-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr);
  gap: 22px;
  align-items: stretch;
}
body.news-page .instagram-only-feed {
  grid-template-columns: minmax(0, 1fr);
}
body.news-page .social-feed-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  border: 1px solid var(--news-line);
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(77, 60, 37, .09);
}
body.news-page .social-feed-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
body.news-page .social-feed-card-head span {
  color: var(--news-earth);
  font-size: 20px;
  font-weight: 900;
}
body.news-page .social-feed-card-head a,
body.news-page .instagram-feed-placeholder a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  background: var(--news-green);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}
body.news-page .facebook-feed-frame {
  overflow: hidden;
  width: 100%;
  height: 640px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(24, 119, 242, .08), rgba(248, 244, 232, .92));
}
body.news-page .facebook-feed-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}
body.news-page .instagram-feed-placeholder {
  display: grid;
  grid-template-columns: minmax(170px, .35fr) minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: clamp(22px, 5vw, 56px);
  min-height: 460px;
  border-radius: 18px;
  padding: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 82% 12%, rgba(221, 42, 123, .18), transparent 14rem),
    radial-gradient(circle at 12% 82%, rgba(245, 133, 41, .14), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 244, 232, .82));
}
body.news-page .instagram-feed-placeholder .social-card-icon {
  width: min(180px, 36vw);
  aspect-ratio: 1;
  border-radius: 8px;
  font-size: clamp(54px, 8vw, 92px);
}
body.news-page .instagram-feed-placeholder > :not(.social-card-icon) {
  grid-column: 2;
}
body.news-page .instagram-feed-placeholder h3 {
  margin: 0;
  color: var(--news-earth);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}
body.news-page .instagram-feed-placeholder p {
  max-width: 760px;
  margin: 0;
  color: var(--news-muted);
  font-size: clamp(17px, 2vw, 21px);
}
@media (max-width: 760px) {
  body.news-page .news-hero {
    padding-top: 138px;
    padding-bottom: 92px;
  }
  body.news-page .social-section,
  body.news-page .social-feed-section {
    padding-block: 68px;
  }
  body.news-page .social-hub-panel,
  body.news-page .social-card-grid,
  body.news-page .social-feed-grid {
    grid-template-columns: 1fr;
  }
  body.news-page .facebook-feed-frame,
  body.news-page .instagram-feed-placeholder {
    height: 520px;
  }
  body.news-page .instagram-feed-placeholder {
    grid-template-columns: 1fr;
    min-height: 520px;
  }
  body.news-page .instagram-feed-placeholder > :not(.social-card-icon) {
    grid-column: auto;
  }
  body.news-page .instagram-feed-placeholder .social-card-icon {
    width: 96px;
    font-size: 52px;
  }
  body.news-page .social-feed-card-head a,
  body.news-page .instagram-feed-placeholder a,
  body.news-page .social-actions,
  body.news-page .social-copy a,
  body.news-page .social-card a {
    width: 100%;
  }
}

/* 2026 home page refresh */
body.home-page {
  --home-olive: #778021;
  --home-forest: #25351d;
  --home-clay: #7b4f32;
  --home-sky: #e9f2f1;
  --home-rice: #fffdf6;
  --home-wheat: #f4eedc;
  --home-border: rgba(56, 70, 37, .16);
}
body.home-page .home-hero {
  min-height: 96dvh;
}
body.home-page .home-hero iframe {
  width: max(100vw, 177.78dvh);
  height: max(56.25vw, 100dvh);
  opacity: .9;
}
body.home-page .home-hero .hero-fallback {
  background:
    linear-gradient(105deg, rgba(22, 31, 18, .74), rgba(42, 51, 25, .38) 52%, rgba(22, 31, 18, .2)),
    url("../assets/drive/Farm/farm-1.jpg") center/cover;
  transition: opacity .45s ease, visibility .45s ease;
}
body.home-page .home-hero.is-video-ready .hero-fallback {
  opacity: 0;
  visibility: hidden;
}
body.home-page .home-hero::before {
  background:
    linear-gradient(90deg, rgba(21, 29, 18, .68), rgba(21, 29, 18, .34) 48%, rgba(21, 29, 18, .08)),
    linear-gradient(0deg, rgba(21, 29, 18, .72), transparent 52%);
}
body.home-page .home-hero-content {
  padding-bottom: 46px;
}
body.home-page .home-hero h1 {
  max-width: 850px;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: .96;
}
body.home-page .home-hero .hero-text {
  max-width: 760px;
  font-weight: 600;
}
body.home-page .home-proof-grid {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  margin-top: 44px;
}
body.home-page .home-proof-grid .hero-stat {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 118px;
}
body.home-page .home-proof-grid .hero-stat strong {
  color: #f5e7a9;
}
body.home-page .chicken-trail {
  position: relative;
  min-height: 540px;
  padding: 0 clamp(18px, 4vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(119, 128, 33, .12), transparent 17rem),
    linear-gradient(110deg, #f5edcf, #fff9e9 56%, #edf3d8);
}
body.home-page .chicken-trail::before,
body.home-page .chicken-trail::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
}
body.home-page .chicken-trail::before {
  width: 220px;
  height: 90px;
  left: -54px;
  bottom: -58px;
}
body.home-page .chicken-trail::after {
  width: 310px;
  height: 120px;
  right: -72px;
  top: -82px;
}
body.home-page .chicken-trail-inner {
  position: relative;
  width: min(1220px, 100%);
  min-height: 540px;
  margin: 0 auto;
}
body.home-page .chicken-trail-note {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  max-width: 340px;
  margin: 0;
  border: 1px solid rgba(77, 60, 37, .13);
  border-radius: 22px;
  padding: 17px 19px;
  color: var(--earth);
  background: rgba(255, 253, 246, .82);
  box-shadow: 0 12px 34px rgba(77, 60, 37, .08);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 800;
  transform: translateY(-50%) rotate(-1.5deg);
}
body.home-page .chicken-trail-note p {
  margin: 0;
}
body.home-page .chicken-trail-note p span {
  margin-right: 6px;
  color: var(--home-olive);
  font-weight: 900;
}
body.home-page .chicken-trail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 999px;
  padding: 9px 15px;
  color: #fff;
  background: var(--home-olive);
  box-shadow: 0 8px 18px rgba(93, 103, 25, .2);
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
body.home-page .chicken-trail-link:hover,
body.home-page .chicken-trail-link:focus-visible {
  background: var(--home-forest);
  box-shadow: 0 10px 22px rgba(37, 53, 29, .22);
  transform: translateY(-2px);
}
body.home-page .chicken-trail-link:focus-visible {
  outline: 3px solid rgba(119, 128, 33, .28);
  outline-offset: 3px;
}
body.home-page .magic-chicken {
  position: absolute;
  left: 0;
  bottom: 22px;
  z-index: 3;
  width: clamp(280px, 32vw, 410px);
  transform: translate3d(var(--home-chicken-start-x, -430px), 0, 0);
  transform-origin: 50% 100%;
}
body.home-page .magic-chicken.is-visible.is-routed {
  animation: home-chicken-cross 5.2s cubic-bezier(.36, .08, .18, 1) .12s forwards;
}
body.home-page .magic-chicken-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 22px rgba(77, 60, 37, .2));
}
body.home-page .chicken-egg {
  position: absolute;
  left: 82%;
  top: 66%;
  z-index: 5;
  display: block;
  width: clamp(58px, 6.4vw, 82px);
  height: auto;
  filter: drop-shadow(0 13px 10px rgba(77, 60, 37, .32));
  opacity: 0;
  transform: translate(-50%, -50%) scale(.55) rotate(-8deg);
  transform-origin: 50% 100%;
}
body.home-page .magic-chicken.is-visible .chicken-egg {
  animation: chicken-lay-egg 1.05s cubic-bezier(.22, .75, .25, 1) 5.55s forwards;
}
body.home-page .magic-chicken.is-ready .magic-chicken-photo {
  opacity: 0;
  transform: scale(.08) rotate(-14deg) scaleX(-1);
  filter: blur(14px) drop-shadow(0 24px 22px rgba(77, 60, 37, .2));
}
body.home-page .magic-chicken.is-visible .magic-chicken-photo {
  animation:
    chicken-materialize 1.15s cubic-bezier(.2, .9, .25, 1.25) .18s forwards,
    chicken-turn-left .45s ease 5s forwards;
}
body.home-page .chicken-speech {
  position: absolute;
  top: 6%;
  left: -6%;
  z-index: 4;
  border: 2px solid var(--earth);
  border-radius: 50%;
  padding: 10px 15px;
  color: var(--earth);
  background: #fffdf6;
  box-shadow: 4px 5px 0 rgba(77, 60, 37, .16);
  font-size: clamp(15px, 1.7vw, 21px);
  font-weight: 950;
  opacity: 0;
  transform: rotate(-9deg) scale(.2);
}
body.home-page .chicken-speech::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -9px;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--earth);
  border-bottom: 2px solid var(--earth);
  background: #fffdf6;
  transform: rotate(34deg);
}
body.home-page .magic-chicken.is-visible .chicken-speech {
  animation: chicken-talk .48s cubic-bezier(.2, .9, .3, 1.4) 5.35s forwards;
}
body.home-page .magic-puff {
  position: absolute;
  left: 50%;
  bottom: 33%;
  z-index: 1;
  width: 70%;
  aspect-ratio: 1;
  transform: translate(-50%, 50%);
}
body.home-page .magic-puff i {
  position: absolute;
  left: 44%;
  top: 44%;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 20px rgba(77, 60, 37, .08);
  opacity: 0;
}
body.home-page .magic-puff i:nth-child(2) {
  width: 22%;
}
body.home-page .magic-puff i:nth-child(3) {
  width: 18%;
}
body.home-page .magic-puff i:nth-child(4) {
  width: 25%;
}
body.home-page .magic-puff i:nth-child(5) {
  width: 14%;
}
body.home-page .magic-puff i:nth-child(6) {
  width: 17%;
}
body.home-page .magic-chicken.is-visible .magic-puff i {
  animation: magic-puff .9s ease-out forwards;
}
body.home-page .magic-chicken.is-visible .magic-puff i:nth-child(2) {
  --puff-x: 92px;
  --puff-y: -42px;
  animation-delay: .05s;
}
body.home-page .magic-chicken.is-visible .magic-puff i:nth-child(3) {
  --puff-x: -98px;
  --puff-y: -48px;
  animation-delay: .1s;
}
body.home-page .magic-chicken.is-visible .magic-puff i:nth-child(4) {
  --puff-x: 76px;
  --puff-y: 58px;
  animation-delay: .13s;
}
body.home-page .magic-chicken.is-visible .magic-puff i:nth-child(5) {
  --puff-x: -82px;
  --puff-y: 62px;
  animation-delay: .16s;
}
body.home-page .magic-chicken.is-visible .magic-puff i:nth-child(6) {
  --puff-x: 12px;
  --puff-y: -94px;
  animation-delay: .2s;
}
body.home-page .chicken-footprint {
  --foot-turn: 0deg;
  --foot-delay: 0s;
  position: absolute;
  width: 48px;
  height: 62px;
  opacity: .52;
  transform: rotate(var(--foot-turn));
  animation: chicken-step 5.4s ease-in-out var(--foot-delay) infinite;
}
body.home-page .chicken-footprint i {
  position: absolute;
  left: 50%;
  bottom: 19px;
  width: 8px;
  height: 31px;
  border-radius: 80% 80% 55% 55%;
  background: var(--home-olive);
  transform: translateX(-50%);
  transform-origin: 50% 90%;
}
body.home-page .chicken-footprint i:first-child {
  transform: translateX(-50%) rotate(-38deg);
}
body.home-page .chicken-footprint i:nth-child(3) {
  transform: translateX(-50%) rotate(38deg);
}
body.home-page .chicken-footprint b {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 15px;
  height: 17px;
  border-radius: 55% 55% 65% 65%;
  background: var(--home-olive);
  transform: translateX(-50%);
}
body.home-page .chicken-footprint-1 {
  --foot-turn: 72deg;
  --foot-reveal-delay: 1.05s;
  left: 16%;
  top: auto;
  bottom: 32px;
}
body.home-page .chicken-footprint-2 {
  --foot-turn: 82deg;
  --foot-reveal-delay: 1.65s;
  left: 30%;
  top: auto;
  bottom: 52px;
}
body.home-page .chicken-footprint-3 {
  --foot-turn: 68deg;
  --foot-reveal-delay: 2.25s;
  left: 44%;
  top: auto;
  bottom: 30px;
}
body.home-page .chicken-footprint-4 {
  --foot-turn: 80deg;
  --foot-reveal-delay: 2.85s;
  left: 58%;
  top: auto;
  bottom: 50px;
}
body.home-page .chicken-footprint-5 {
  --foot-turn: 70deg;
  --foot-reveal-delay: 3.45s;
  left: 72%;
  top: auto;
  bottom: 28px;
}
body.home-page .chicken-footprint-6 {
  --foot-turn: 85deg;
  --foot-reveal-delay: 4.05s;
  left: 86%;
  top: auto;
  bottom: 48px;
}
body.home-page .chicken-trail-inner > .chicken-footprint {
  opacity: 0;
  animation: none;
}
body.home-page .chicken-trail-inner.is-active > .chicken-footprint {
  animation: home-footprint-appear .48s ease var(--foot-reveal-delay) forwards;
}
body.home-page .chicken-trail-inner.has-arrived > .chicken-footprint {
  animation: home-footprint-fade .85s ease forwards;
}
body.home-page .section-chicken-steps {
  position: absolute;
  top: 24px;
  right: clamp(20px, 4vw, 64px);
  z-index: 0;
  width: 104px;
  height: 92px;
  opacity: .28;
  pointer-events: none;
  transform: rotate(14deg);
}
body.home-page .section-chicken-steps .chicken-footprint {
  position: absolute;
  left: auto;
  top: auto;
  width: 48px;
  height: 62px;
  opacity: 1;
  animation: none;
  scale: .62;
}
body.home-page .section-chicken-steps .chicken-footprint:first-child {
  right: 0;
  top: 0;
  transform: rotate(18deg);
}
body.home-page .section-chicken-steps .chicken-footprint:last-child {
  left: 0;
  bottom: 0;
  transform: rotate(-4deg);
}
body.home-page .section-chicken-steps ~ * {
  position: relative;
  z-index: 1;
}
@keyframes chicken-step {
  0%, 65%, 100% {
    opacity: .44;
    scale: 1;
  }
  8%, 18% {
    opacity: .72;
    scale: 1.08;
  }
}
@keyframes home-footprint-appear {
  from {
    opacity: 0;
    scale: .65;
  }
  to {
    opacity: .52;
    scale: 1;
  }
}
@keyframes home-footprint-fade {
  from {
    opacity: .52;
    filter: blur(0);
  }
  to {
    opacity: 0;
    filter: blur(3px);
  }
}
@keyframes home-chicken-cross {
  from {
    transform: translate3d(var(--home-chicken-start-x, -430px), 0, 0);
  }
  to {
    transform: translate3d(var(--home-chicken-end-x, 70vw), 0, 0);
  }
}
@keyframes chicken-materialize {
  0% {
    opacity: 0;
    transform: scale(.08) rotate(-14deg) scaleX(-1);
    filter: blur(14px) drop-shadow(0 24px 22px rgba(77, 60, 37, .2));
  }
  58% {
    opacity: 1;
    transform: scale(1.08) rotate(2deg) scaleX(-1);
    filter: blur(0) drop-shadow(0 24px 22px rgba(77, 60, 37, .2));
  }
  76% {
    transform: scale(.96) rotate(-1deg) scaleX(-1);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0) scaleX(-1);
    filter: blur(0) drop-shadow(0 24px 22px rgba(77, 60, 37, .2));
  }
}
@keyframes chicken-turn-left {
  0% {
    transform: scale(1) rotate(0) scaleX(-1);
  }
  45% {
    transform: scale(1) rotate(-2deg) scaleX(-.08);
  }
  55% {
    transform: scale(1) rotate(2deg) scaleX(.08);
  }
  100% {
    transform: scale(1) rotate(0) scaleX(1);
  }
}
@keyframes magic-puff {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(.15);
  }
  28% {
    opacity: .95;
  }
  100% {
    opacity: 0;
    transform: translate(var(--puff-x, -16px), var(--puff-y, -70px)) scale(1.65);
  }
}
@keyframes chicken-talk {
  0% {
    opacity: 0;
    transform: rotate(-9deg) scale(.2);
  }
  75% {
    opacity: 1;
    transform: rotate(-9deg) scale(1.13);
  }
  100% {
    opacity: 1;
    transform: rotate(-9deg) scale(1);
  }
}
@keyframes chicken-lay-egg {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.55) rotate(-8deg);
  }
  14% {
    opacity: 1;
  }
  68% {
    opacity: 1;
    transform: translate(-50%, 44px) scale(1) rotate(7deg);
  }
  82% {
    opacity: 1;
    transform: translate(-50%, 32px) scale(1.04, .94) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 40px) scale(1) rotate(0);
  }
}
body.home-page .home-intro {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--home-rice), #fbf8ee 58%, #fff);
}
body.home-page .home-intro-grid {
  grid-template-columns: minmax(0, .92fr) minmax(380px, .76fr);
  gap: clamp(34px, 6vw, 72px);
}
body.home-page .home-value-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
body.home-page .home-value-list article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 40px rgba(77, 60, 37, .06);
}
body.home-page .home-value-list span {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 999px;
  color: #fff;
  background: var(--home-olive);
  font-size: 13px;
  font-weight: 900;
}
body.home-page .home-value-list strong {
  color: var(--earth);
  font-size: 19px;
  line-height: 1.15;
}
body.home-page .home-value-list p {
  grid-column: 2;
  margin: 5px 0 0;
  color: var(--muted);
}
body.home-page .home-photo-story {
  display: grid;
  gap: 14px;
}
body.home-page .home-photo-story img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
body.home-page .home-photo-main {
  aspect-ratio: 5 / 4;
}
body.home-page .home-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
body.home-page .home-photo-row img {
  aspect-ratio: 1.25;
}
body.home-page .home-service-card {
  display: grid;
  grid-template-rows: auto 1fr;
}
body.home-page .home-service-card img {
  aspect-ratio: 1.45;
}
body.home-page .home-service-card h3,
body.home-page .experience-feature h3 {
  font-size: clamp(23px, 2.5vw, 31px);
}
body.home-page .experience-feature {
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1fr);
}
body.home-page .experience-feature img {
  min-height: 340px;
}
body.home-page .home-team {
  background:
    linear-gradient(180deg, #fff, var(--home-sky));
}
body.home-page .team-feature {
  align-items: center;
}
body.home-page .team-feature img {
  aspect-ratio: 1.35;
}
body.home-page .home-cta {
  padding-block: 34px;
  background: var(--home-sky);
}
body.home-page .home-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(37, 53, 29, .18);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(105deg, rgba(37, 53, 29, .94), rgba(77, 60, 37, .82)),
    url("../assets/home/farm-tour.jpg") center/cover;
  box-shadow: var(--shadow);
}
body.home-page .home-cta-panel h2,
body.home-page .home-cta-panel .eyebrow {
  color: #fff;
}
body.home-page .home-cta-panel .lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}
body.home-page .home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
body.home-page .home-cta .btn-outline {
  border-color: rgba(255, 255, 255, .42);
  color: #fff;
  background: rgba(255, 255, 255, .12);
}
body.home-page .partner-section {
  background:
    linear-gradient(180deg, var(--home-sky), #fbfdf2 44%, #fffdf6);
}
body.home-page .partner-head .eyebrow {
  justify-content: center;
}
body.home-page .partner-head .eyebrow::before {
  display: none;
}
@media (max-width: 1080px) {
  html:has(body.home-page) {
    overflow-x: hidden;
  }
  body.home-page {
    overflow-x: hidden;
  }
  body.home-page .dropdown-menu {
    left: auto;
    right: 0;
  }
  body.home-page .nested-menu {
    left: auto;
    right: 100%;
  }
  body.home-page .home-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.home-page .experience-feature-grid {
    grid-template-columns: 1fr;
  }
  body.home-page .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.home-page .partner-marquee {
    max-width: calc(100% - 36px);
    contain: paint;
  }
  body.home-page .partner-track {
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.home-page .chicken-footprint {
    animation: none;
  }
  body.home-page .chicken-trail-inner > .chicken-footprint,
  body.home-page .chicken-trail-inner.is-active > .chicken-footprint,
  body.home-page .chicken-trail-inner.has-arrived > .chicken-footprint {
    opacity: .18;
    filter: none;
    animation: none;
  }
  body.home-page .magic-chicken,
  body.home-page .magic-chicken.is-visible.is-routed {
    animation: none;
    transform: translate3d(var(--home-chicken-end-x, 0), 0, 0);
  }
  body.home-page .magic-chicken.is-ready .magic-chicken-photo,
  body.home-page .magic-chicken.is-visible .magic-chicken-photo {
    opacity: 1;
    transform: none;
    filter: drop-shadow(0 24px 22px rgba(77, 60, 37, .2));
    animation: none;
  }
  body.home-page .magic-chicken.is-visible .magic-puff i {
    display: none;
  }
  body.home-page .magic-chicken.is-visible .chicken-egg {
    opacity: 1;
    transform: translate(-50%, 40px);
    animation: none;
  }
  body.home-page .magic-chicken.is-visible .chicken-speech {
    opacity: 1;
    transform: rotate(-9deg);
    animation: none;
  }
}
@media (min-width: 641px) and (max-width: 900px) {
  body.home-page .chicken-trail,
  body.home-page .chicken-trail-inner {
    min-height: 600px;
  }
  body.home-page .chicken-trail-note {
    top: 46px;
    transform: rotate(-1.5deg);
  }
  body.home-page .magic-chicken {
    width: min(370px, 50vw);
  }
  body.home-page .home-hero {
    min-height: 860px;
    align-items: end;
  }
  body.home-page .home-hero iframe {
    display: none;
  }
  body.home-page .home-hero .hero-fallback {
    background:
      linear-gradient(105deg, rgba(22, 31, 18, .74), rgba(42, 51, 25, .38) 52%, rgba(22, 31, 18, .2)),
      url("../assets/drive/Farm/farm-1.jpg") center/cover;
    opacity: 1;
    visibility: visible;
  }
  body.home-page .home-hero-content {
    width: min(100% - 64px, 1220px);
    padding-top: 142px;
    padding-bottom: 42px;
  }
  body.home-page .home-hero h1 {
    max-width: 720px;
    font-size: clamp(54px, 8vw, 72px);
  }
  body.home-page .home-hero .hero-text {
    max-width: 690px;
    font-size: 19px;
  }
  body.home-page .home-proof-grid {
    margin-top: 34px;
  }
  body.home-page .home-proof-grid .hero-stat {
    min-height: 104px;
  }
  body.home-page .home-intro-grid,
  body.home-page .impact-grid,
  body.home-page .team-feature,
  body.home-page .home-cta-panel {
    grid-template-columns: 1fr;
  }
  body.home-page .home-photo-main {
    aspect-ratio: 16 / 9;
  }
  body.home-page .home-photo-row img,
  body.home-page .home-service-card img {
    aspect-ratio: 4 / 3;
  }
  body.home-page .experience-feature {
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  }
  body.home-page .experience-feature img {
    min-height: 300px;
  }
  body.home-page .home-cta-actions {
    justify-content: flex-start;
  }
}
@media (min-width: 981px) and (max-height: 820px) {
  body.home-page .home-hero {
    min-height: 100dvh;
  }
  body.home-page .home-hero-content {
    padding-top: 118px;
    padding-bottom: 28px;
  }
  body.home-page .home-hero h1 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: clamp(42px, 5.2vw, 68px);
  }
  body.home-page .home-hero .eyebrow {
    margin-bottom: 12px;
  }
  body.home-page .home-hero .hero-text {
    max-width: 660px;
    font-size: 18px;
    line-height: 1.45;
  }
  body.home-page .home-hero .hero-actions {
    margin-top: 20px;
  }
  body.home-page .home-proof-grid {
    margin-top: 26px;
  }
  body.home-page .home-proof-grid .hero-stat {
    min-height: 88px;
    padding: 16px 18px;
    gap: 7px;
  }
  body.home-page .home-proof-grid .hero-stat strong {
    font-size: 24px;
  }
  body.home-page .home-proof-grid .hero-stat span {
    font-size: 13px;
    line-height: 1.35;
  }
}
@media (min-width: 981px) and (min-height: 821px) and (max-height: 940px) {
  body.home-page .home-hero {
    min-height: 100dvh;
  }
  body.home-page .home-hero-content {
    padding-top: 130px;
    padding-bottom: 34px;
  }
  body.home-page .home-hero h1 {
    max-width: 800px;
    margin-bottom: 16px;
    font-size: clamp(44px, 5.6vw, 76px);
  }
  body.home-page .home-hero .hero-text {
    max-width: 700px;
  }
  body.home-page .home-hero .hero-actions {
    margin-top: 22px;
  }
  body.home-page .home-proof-grid {
    margin-top: 32px;
  }
  body.home-page .home-proof-grid .hero-stat {
    min-height: 100px;
    padding: 18px;
  }
}
@media (max-width: 640px) {
  body.home-page .section-chicken-steps {
    top: 14px;
    right: 8px;
    opacity: .2;
    scale: .82;
  }
  body.home-page .chicken-trail,
  body.home-page .chicken-trail-inner {
    min-height: 650px;
  }
  body.home-page .chicken-trail-note {
    top: 42px;
    left: 50%;
    width: min(320px, 100%);
    max-width: calc(100vw - 36px);
    text-align: center;
    transform: translateX(-50%) rotate(-1.5deg);
  }
  body.home-page .chicken-footprint {
    scale: .82;
  }
  body.home-page .chicken-footprint-1 {
    left: 3%;
    top: auto;
    bottom: 30px;
  }
  body.home-page .chicken-footprint-2 {
    left: 21%;
    top: auto;
    bottom: 48px;
  }
  body.home-page .chicken-footprint-3 {
    left: 40%;
    top: auto;
    bottom: 28px;
  }
  body.home-page .chicken-footprint-4 {
    left: 60%;
    top: auto;
    bottom: 46px;
  }
  body.home-page .chicken-footprint-5 {
    left: 79%;
    top: auto;
    bottom: 26px;
  }
  body.home-page .chicken-footprint-6 {
    display: none;
  }
  body.home-page .magic-chicken {
    right: auto;
    left: 0;
    width: min(310px, 84vw);
    transform: translate3d(var(--home-chicken-start-x, -330px), 0, 0);
  }
  body.home-page .chicken-speech {
    top: 2%;
    right: auto;
    left: 0;
  }
  body.home-page .chicken-egg {
    left: 80%;
    top: 67%;
    width: 72px;
  }
  body.home-page .home-intro-grid,
  body.home-page .impact-grid,
  body.home-page .team-feature,
  body.home-page .home-cta-panel {
    grid-template-columns: 1fr;
  }
  body.home-page .experience-feature {
    grid-template-columns: 1fr;
  }
  body.home-page .experience-feature img {
    min-height: 260px;
  }
  body.home-page .home-cta-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  body.home-page .home-hero iframe {
    display: none;
  }
  body.home-page .home-hero .hero-fallback {
    background:
      linear-gradient(105deg, rgba(22, 31, 18, .72), rgba(42, 51, 25, .38) 52%, rgba(22, 31, 18, .24)),
      url("../assets/home/farm-entrance.jpg") center/cover;
    opacity: 1;
    visibility: visible;
  }
  body.home-page .home-hero {
    min-height: 760px;
  }
  body.home-page .home-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }
  body.home-page .home-proof-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  body.home-page .home-proof-grid .hero-stat {
    min-height: auto;
  }
  body.home-page .home-value-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  body.home-page .home-value-list p {
    grid-column: auto;
  }
  body.home-page .home-photo-row {
    grid-template-columns: 1fr;
  }
  body.home-page .home-photo-main,
  body.home-page .home-photo-row img {
    aspect-ratio: 1.15;
  }
  body.home-page .home-quick-actions .btn,
  body.home-page .home-cta-actions,
  body.home-page .home-cta-actions .btn {
    width: 100%;
  }
  body.home-page .partner-logo-card {
    min-width: 220px;
  }
}

body.site-page main section:not(.hero):not(.page-title):not(.about-title):not(.business-hero):not(.agro-hero):not(.research-hero):not(.research-detail-hero):not(.cert-hero):not(.agri-hero):not(.fertilizer-hero):not(.livestock-hero):not(.news-hero) .eyebrow::before {
  background: var(--leaf);
}

body.site-page .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 0 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: var(--leaf) !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .16em !important;
  line-height: 1.2 !important;
  text-shadow: none !important;
  text-transform: uppercase !important;
}

body.site-page .eyebrow::before {
  content: "" !important;
  display: block !important;
  flex: 0 0 34px !important;
  width: 34px !important;
  height: 2px !important;
  background: var(--leaf) !important;
}

body.site-page :where(.hero, .home-hero, .page-title, .about-title, .business-hero, .agro-hero, .research-hero, .research-detail-hero, .cert-hero, .agri-hero, .fertilizer-hero, .livestock-hero, .instagram-hero) > :where(.section-inner, .wrap, .about-wrap, .business-wrap, .agro-wrap, .hero-content) .eyebrow:first-child,
body.site-page :where(.hero, .home-hero, .page-title, .about-title, .business-hero, .agro-hero, .research-hero, .research-detail-hero, .cert-hero, .agri-hero, .fertilizer-hero, .livestock-hero, .instagram-hero) .eyebrow:first-child {
  border: 1px solid rgba(255, 255, 255, .28) !important;
  border-radius: 999px !important;
  padding: 8px 12px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .14) !important;
  backdrop-filter: blur(10px) !important;
}

body.site-page :where(.hero, .home-hero, .page-title, .about-title, .business-hero, .agro-hero, .research-hero, .research-detail-hero, .cert-hero, .agri-hero, .fertilizer-hero, .livestock-hero, .instagram-hero) > :where(.section-inner, .wrap, .about-wrap, .business-wrap, .agro-wrap, .hero-content) .eyebrow:first-child::before,
body.site-page :where(.hero, .home-hero, .page-title, .about-title, .business-hero, .agro-hero, .research-hero, .research-detail-hero, .cert-hero, .agri-hero, .fertilizer-hero, .livestock-hero, .instagram-hero) .eyebrow:first-child::before {
  background: #fff !important;
}
