/* 鈹€鈹€ Base Reset 鈹€鈹€ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      /* Match hero section background so the area behind the fixed navbar is seamless */
      background: #0d1a0c;
      color: #1c1917;
      min-width: 320px;
      top: 0 !important;
    }
    * { word-break: break-word; overflow-wrap: break-word; }
    img { max-width: 100%; height: auto; display: block; }

    #google_translate_element,
    .goog-te-banner-frame,
    .goog-te-balloon-frame,
    .skiptranslate iframe {
      display: none !important;
    }

    .site-wrapper {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
    }

    /* 鈹€鈹€ Navbar 鈹€鈹€ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: transparent;
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 120px;
    }
    .nav-links-desktop {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    /* 鈹€鈹€ Scrolled state 鈹€鈹€ */
    #navbar.scrolled {
      background: rgba(255,255,255,0.97);
      box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    }

    /* 鈹€鈹€ Logo text: white when transparent, green when scrolled 鈹€鈹€ */
    .nav-logo-text { color: #fff; }
    .nav-logo-text .c249735 { color: #1e4d17; }
    #navbar.scrolled .nav-logo-text { color: #1e4d17; }
    #navbar.scrolled .nav-logo-text .c249735 { color: #8fd07f; }

    /* 鈹€鈹€ Nav links: white when transparent, dark when scrolled 鈹€鈹€ */
    .nav-link {
      color: rgba(255,255,255,0.92);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-decoration: none;
      padding: 6px 2px;
      position: relative;
      transition: color 0.25s;
    }
    #navbar.scrolled .nav-link { color: #292524; }
    #navbar.scrolled .nav-link:hover { color: #2d7a23; }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: #5fb550;
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }
    .nav-link:hover::after { transform: scaleX(1); }
    .nav-link.active { color: #1e4d17; }
    #navbar.scrolled .nav-link.active { color: #2d7a23; }

    /* 鈹€鈹€ CTA button: outline white when transparent, filled green when scrolled 鈹€鈹€ */
    .nav-cta {
      background: rgba(255,255,255,0.15);
      border: 1.5px solid rgba(255,255,255,0.7);
      color: #fff;
      padding: 10px 28px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      backdrop-filter: blur(4px);
    }
    .nav-cta:hover {
      background: rgba(255,255,255,0.25);
      border-color: #fff;
    }
    #navbar.scrolled .nav-cta {
      background: #2d7a23;
      border-color: transparent;
      color: #fff;
      backdrop-filter: none;
    }
    #navbar.scrolled .nav-cta:hover { background: #1e4d17; }

    .nav-translate {
      position: relative;
      z-index: 220;
    }

    .nav-translate-toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 10px 16px;
      border-radius: 6px;
      border: 1.5px solid rgba(255,255,255,0.45);
      background: rgba(255,255,255,0.10);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      backdrop-filter: blur(4px);
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }

    .nav-translate-toggle svg {
      width: 17px;
      height: 17px;
      flex-shrink: 0;
    }

    .nav-translate-toggle:hover,
    .nav-translate.is-open .nav-translate-toggle {
      background: rgba(255,255,255,0.22);
      border-color: rgba(255,255,255,0.82);
      color: #fff;
    }

    #navbar.scrolled .nav-translate-toggle {
      background: rgba(45,122,35,0.08);
      border-color: rgba(45,122,35,0.22);
      color: #1e4d17;
      backdrop-filter: none;
    }

    #navbar.scrolled .nav-translate-toggle:hover,
    #navbar.scrolled .nav-translate.is-open .nav-translate-toggle {
      background: #f2f9f0;
      border-color: rgba(45,122,35,0.36);
      color: #2d7a23;
    }

    .nav-translate-menu {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      min-width: 190px;
      max-height: min(620px, calc(100vh - 120px));
      overflow-y: auto;
      padding: 8px;
      border-radius: 10px;
      background: rgba(255,255,255,0.98);
      border: 1px solid rgba(36,97,28,0.12);
      box-shadow: 0 18px 45px rgba(15,42,11,0.18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

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

    .nav-translate-menu button {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: flex-start;
      min-height: 38px;
      padding: 9px 12px;
      border: 0;
      border-radius: 7px;
      background: transparent;
      color: #1c1917;
      font-size: 14px;
      font-weight: 700;
      text-align: left;
      cursor: pointer;
      transition: background 0.18s ease, color 0.18s ease;
    }

    .nav-translate-menu button:hover {
      background: #f2f9f0;
      color: #2d7a23;
    }

    /* 鈹€鈹€ Mobile Menu Button 鈹€鈹€ */
    #mobile-menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px; height: 40px;
      cursor: pointer;
      z-index: 200;
      background: transparent;
      border: none;
      padding: 4px;
    }
    #mobile-menu-btn .bar {
      display: block;
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }
    #navbar.scrolled #mobile-menu-btn .bar { background: #292524; }
    #mobile-menu-btn.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #mobile-menu-btn.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    #mobile-menu-btn.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    #mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 150;
      background: rgba(15, 42, 11, 0.97);
      backdrop-filter: blur(16px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 8px;
      opacity: 0;
      overflow-y: auto;
      transition: opacity 0.3s ease;
      padding: 40px 32px;
    }
    #mobile-nav.open { display: flex; opacity: 1; }
    .mobile-nav-link {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      padding: 12px 0;
      letter-spacing: -0.01em;
      transition: color 0.2s;
      text-align: center;
    }
    .mobile-nav-link:hover { color: #8fd07f; }
    .mobile-nav-cta {
      margin-top: 20px;
      background: #3d9930;
      color: #fff;
      padding: 14px 40px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.25s;
    }
    .mobile-nav-cta:hover { background: #2d7a23; }

    .mobile-translate {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      width: min(320px, 100%);
      margin-top: 16px;
    }

    .mobile-translate button {
      min-height: 38px;
      padding: 9px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.24);
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.88);
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .mobile-translate button:hover {
      background: #3d9930;
      border-color: #3d9930;
      color: #fff;
    }

    /* 鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲
       FOOTER
    鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲 */
    #footer {
      background: #0f2a0b;
      padding: 80px 120px 40px;
      margin-top: -14px;
      position: relative;
      z-index: 10;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
      margin-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding-bottom: 60px;
    }
    .footer-brand h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.01em;
    }
    .footer-brand h2 span { color: #5fb550; }
    .footer-brand p {
      margin-top: 16px;
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      line-height: 1.8;
      max-width: min(300px, 100%);
    }
    .footer-socials { display: flex; gap: 12px; margin-top: 28px; }
    .social-btn {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      cursor: pointer;
      transition: all 0.25s;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .social-btn:hover {
      background: #3d9930;
      color: #fff;
      border-color: #3d9930;
      transform: translateY(-2px);
    }
    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #5fb550; }
    .footer-contact-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 10px;
    }
    .footer-contact-item .icon { color: #5fb550; flex-shrink: 0; margin-top: 2px; }
    .footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
    .footer-bottom a {
      font-size: 13px;
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      margin-left: 24px;
      transition: color 0.2s;
    }
    .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

    /* 鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲
       RESPONSIVE
    鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲 */
    @media (max-width: 1439px) {
      .nav-inner { padding: 20px 60px; }
      #footer { padding: 72px 60px 36px; }
    }
    @media (max-width: 1023px) {
      .nav-inner { padding: 16px 40px; }
      .nav-links-desktop { display: none; }
      #mobile-menu-btn { display: flex; }
      #footer { padding: 64px 40px 32px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 767px) {
      .nav-inner { padding: 14px 20px; }
      #mobile-nav { justify-content: flex-start; padding-top: 86px; }
      #footer { padding: 56px 20px 28px; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .footer-bottom div { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
      .footer-bottom a { margin-left: 0; }
    }

    /* 鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲
       OUR BUSINESS 鈥?PRODUCT SELECTOR
    鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲 */
    #our-business {
      background: #bdddb2;
      display: flex;
      align-items: flex-start;
      position: relative;
      overflow: hidden;
      padding: 118px 0 0;
    }
    #our-business::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse 70% 50% at 50% 18%, rgba(64,128,52,0.24) 0%, transparent 70%),
        radial-gradient(ellipse 42% 38% at 12% 82%, rgba(83,136,58,0.22) 0%, transparent 62%);
      pointer-events: none;
    }

    .ob-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: none;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Top hero text block */
    .ob-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 6;
      padding-bottom: 0;
      border-bottom: none;
      margin-bottom: 0;
    }
    .ob-hero { margin-left: 80px; margin-right: 80px; }

    /* Eyebrow label */
    .ob-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(61,153,48,0.12);
      border: 1px solid rgba(61,153,48,0.28);
      color: #5fb550;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 40px;
      width: fit-content;
    }

    /* Hero intro text */
    .ob-hero-intro {
      display: flex;
      gap: 80px;
      align-items: flex-start;
      max-width: 1100px;
      width: 100%;
      text-align: left;
    }
    .ob-hero-left {
      flex: 0 0 auto;
    }
    .ob-hero-big {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(42px, 5vw, 76px);
      font-weight: 900;
      line-height: 1.0;
      letter-spacing: -0.04em;
      color: #183f19;
      white-space: nowrap;
    }
    .ob-hero-big em {
      font-style: normal;
      background: linear-gradient(135deg, #2d7a23 0%, #5fa84a 52%, #1f6b49 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .ob-hero-right {
      flex: 1;
      padding-top: 8px;
    }
    .ob-hero-tagline {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(16px, 1.5vw, 20px);
      font-weight: 600;
      color: #365d33;
      line-height: 1.5;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }
    .ob-hero-tagline em {
      font-style: normal;
      color: #2d7a23;
    }
    .ob-hero-desc {
      font-size: 14px;
      line-height: 1.9;
      color: #58744f;
    }

    /* 鈹€鈹€ Statement Hero 鈹€鈹€ */
    .ob-matrix-hero {
      position: relative;
      width: 100%;
      max-width: 860px;
      margin: 0 auto;
      padding: 0;
    }
    .ob-matrix-text-wrap {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .ob-matrix-line1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(17px, 1.9vw, 22px);
      font-weight: 600;
      line-height: 1.75;
      color: #ffffff;
      letter-spacing: 0.01em;
      display: block;
      padding-left: 20px;
      border-left: none;
      text-shadow: 0 2px 10px rgba(0,0,0,0.16);
    }
    .ob-matrix-line2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(17px, 1.9vw, 22px);
      font-weight: 400;
      line-height: 1.85;
      color: #ffffff;
      letter-spacing: 0.01em;
      display: block;
      padding-left: 20px;
      border-left: none;
      text-shadow: 0 2px 10px rgba(18,46,15,0.42);
    }
    .ob-matrix-line1 em,
    .ob-matrix-line2 em {
      font-style: normal;
      color: #ffffff;
      font-size: 1.08em;
      font-weight: 800;
    }
    .ob-hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 28px;
    }
    .ob-stat {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .ob-stat-num {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: #2d7a23;
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .ob-stat-label {
      font-size: 11px;
      font-weight: 600;
      color: #64785b;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .ob-stat-divider {
      width: 1px;
      background: rgba(45,122,35,0.18);
      align-self: stretch;
    }

    /* Product cards grid 鈥?2脳2 around central text */
    .ob-cards-wrap {
      position: relative;
      margin-bottom: 0;
      min-height: 900px;
      isolation: isolate;
      overflow: visible;
    }

    .ob-center-text {
      position: absolute;
      top: 45%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 4;
      width: min(48vw, 580px);
      min-width: 300px;
      text-align: center;
      pointer-events: none;
      padding: 30px 52px 34px;
      background:
        radial-gradient(ellipse at center, rgba(255,248,225,0.18) 0%, rgba(255,248,225,0.08) 42%, rgba(21,70,29,0.03) 70%, transparent 100%),
        linear-gradient(180deg, rgba(12,48,22,0.2), rgba(12,48,22,0.06));
      border-radius: 999px;
      border: 1px solid rgba(255,248,225,0.32);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 18px 58px rgba(15,42,11,0.2);
      backdrop-filter: blur(3px);
    }
    .ob-center-text::before,
    .ob-center-text::after {
      content: '';
      position: absolute;
      left: 18%;
      right: 18%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,248,225,0.78), transparent);
      opacity: 0.9;
    }
    .ob-center-text::before { top: 14px; }
    .ob-center-text::after { bottom: 14px; }

    .ob-center-text .ob-hero-big {
      font-size: 46px;
      line-height: 1.08;
      white-space: normal;
      font-weight: 900;
      color: #fff8e9;
      -webkit-text-fill-color: #fff8e9;
      letter-spacing: 0;
      text-shadow:
        0 1px 2px rgba(31,76,26,0.42),
        0 10px 28px rgba(18,46,15,0.34);
      text-wrap: balance;
    }

    .ob-center-text .ob-hero-big span {
      display: block;
    }

    .ob-center-text .ob-hero-big span + span {
      margin-top: 3px;
    }

    .ob-center-text .ob-hero-big span {
      color: #fff8e9;
      -webkit-text-fill-color: #fff8e9;
    }

    .ob-download-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      pointer-events: auto;
      margin-top: 22px;
      min-height: 42px;
      padding: 12px 26px;
      border-radius: 999px;
      background: #fff8e9;
      color: #1f5f18;
      border: 1px solid rgba(255,248,225,0.78);
      box-shadow: 0 12px 28px rgba(18,46,15,0.22);
      font-size: 14px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: 0;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .ob-download-btn:hover {
      transform: translateY(-2px);
      background: #3d9930;
      color: #ffffff;
      text-decoration: none;
      box-shadow: 0 16px 34px rgba(18,46,15,0.28);
    }

    .ob-cards {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
    }

    .ob-card {
      position: absolute;
      width: clamp(320px, 29vw, 430px);
      aspect-ratio: 1.42 / 1;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      display: block;
      border-radius: 16px;
      background: #f7fbf3;
      box-shadow: 0 18px 46px rgba(55,101,46,0.18);
      pointer-events: auto;
      transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    }
    .ob-cards.is-dimming .ob-card {
      opacity: 0.45;
      filter: saturate(0.85) brightness(0.96);
    }
    .ob-cards.is-dimming .ob-card.is-active {
      opacity: 1;
      filter: none;
    }
    #ob-card-beef { left: clamp(64px, 6vw, 128px); top: 2%; }
    #ob-card-pork { right: clamp(64px, 6vw, 128px); top: 2%; }
    #ob-card-aquatic { left: clamp(64px, 6vw, 128px); bottom: 7%; }
    #ob-card-fruit { right: clamp(64px, 6vw, 128px); bottom: 7%; }

    .ob-card-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
      filter: brightness(1) saturate(1);
    }
    .c250997 { background-image: url('../images/remote/photo-1603048297172-c92544798d5a-7f398d8f8f72.webp'); }
    .c251213 { background-image: url('../images/remote/photo-1752555535777-0aed7bc93f98-7c4b29795e92.webp'); }
    .c251420 { background-image: url('../images/remote/PCC-EC-2025-Web-HLSO-e856dfdbf0cd.webp'); }
    .c251627 { background-image: url('../images/remote/photo-1511688878353-3a2f5be94cd7-c8bf61de4406.webp'); }

    .ob-card:hover .ob-card-img {
      transform: scale(1.08);
      filter: brightness(1.04) saturate(1.06);
    }

    .ob-card-overlay {
      position: absolute;
      inset: 0;
      background: transparent;
    }
    #ob-card-aquatic .ob-card-overlay {
      background: linear-gradient(180deg, rgba(18,46,15,0.08) 0%, rgba(18,46,15,0.28) 100%);
    }
    .ob-card:hover .ob-card-overlay {
      background: linear-gradient(to top, rgba(237,248,233,0.18) 0%, rgba(237,248,233,0.08) 48%, transparent 100%);
    }

    .ob-card-accent {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #3d9930, #8fd07f);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .ob-card:hover .ob-card-accent { opacity: 1; }

    .ob-card-num {
      display: none;
    }

    .ob-card-content {
      position: absolute;
      inset: 0;
      padding: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .ob-card-icon-wrap {
      display: none;
    }
    .ob-card-icon-wrap svg { color: #8fd07f; width: 22px; height: 22px; }
    .ob-card:hover .ob-card-icon-wrap {
      background: linear-gradient(135deg, #3d9930, #24611c);
      border-color: transparent;
      transform: scale(1.1) rotate(-3deg);
    }
    .ob-card:hover .ob-card-icon-wrap svg { color: #fff; }

    .ob-card-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(24px, 2vw, 34px);
      font-weight: 800;
      color: #ffffff;
      letter-spacing: 0;
      margin-bottom: 18px;
      line-height: 1.2;
      text-shadow:
        0 2px 3px rgba(18,46,15,0.62),
        0 10px 22px rgba(18,46,15,0.42);
    }

    .ob-card-origins-tag {
      display: none;
    }
    .ob-card-origins-tag svg { width: 12px; height: 12px; }

    .ob-card-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 0;
      font-size: 13px;
      font-weight: 700;
      color: #f0ffe8;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      opacity: 1;
      transform: translateY(0);
      text-shadow: 0 2px 8px rgba(18,46,15,0.52);
      transition: color 0.25s ease;
    }
    .ob-card-arrow svg { width: 14px; height: 14px; }
    .ob-card:hover .ob-card-arrow { color: #ffffff; }
    /* Map inside cards-wrap as background layer */
    .ob-cards-wrap .ob-map-wrap {
      position: absolute;
      left: 50%;
      right: auto;
      top: -250px;
      bottom: -150px;
      z-index: 1;
      width: 100vw;
      height: auto;
      transform: translateX(-50%);
      aspect-ratio: unset;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .ob-cards-wrap .ob-map-wrap #ob-world-map {
      width: 100%;
      height: 100%;
      display: block;
      opacity: 0.9;
      overflow: visible;
    }

    .ob-map-image {
      opacity: 1;
      filter: drop-shadow(0 10px 28px rgba(44,92,38,0.18));
    }

    /* Highlight overlays sit above the reusable SVG map body. */
    .ob-highlight-layer {
      mix-blend-mode: normal;
      shape-rendering: geometricPrecision;
    }
    .ob-continent {
      fill: rgba(38,105,34,0);
      stroke: none;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease, fill 0.35s ease, filter 0.35s ease;
      filter: none;
    }
    .ob-continent--highlight {
      fill: rgba(248,244,226,0.9);
      opacity: 1;
      filter: drop-shadow(0 0 16px rgba(248,244,226,0.46));
    }

    .ob-map-marker {
      position: absolute;
      z-index: 5;
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: #f4ffd1;
      border: 2px solid #2d7a23;
      box-shadow: 0 0 0 5px rgba(244,255,209,0.22), 0 6px 18px rgba(30,77,23,0.34);
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.72);
      transition: opacity 0.24s ease, transform 0.24s ease;
      pointer-events: none;
    }
    .ob-map-marker::before,
    .ob-map-marker::after {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: inherit;
      border: 1.5px solid rgba(244,255,209,0.72);
      opacity: 0;
      transform: scale(0.35);
    }
    .ob-map-marker::after {
      inset: -18px;
      border-color: rgba(45,122,35,0.32);
    }
    .ob-map-marker.is-active {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    .ob-map-marker.is-active::before {
      animation: obMarkerPulse 1.65s ease-out infinite;
    }
    .ob-map-marker.is-active::after {
      animation: obMarkerPulse 1.65s ease-out 0.38s infinite;
    }
    .ob-map-marker--south-america { left: 32%; top: 58%; }
    .ob-map-marker--oceania { left: 88%; top: 64%; }
    .ob-map-marker--europe { left: 51%; top: 24%; }
    .ob-map-marker--asia { left: 70%; top: 31%; }
    .ob-map-marker--north-america { left: 24%; top: 32%; }
    .ob-map-marker--africa { left: 53%; top: 52%; }

    @keyframes obMarkerPulse {
      0% {
        opacity: 0.85;
        transform: scale(0.35);
      }
      76% {
        opacity: 0;
        transform: scale(1.75);
      }
      100% {
        opacity: 0;
        transform: scale(1.75);
      }
    }

    /* Ocean / graticule lines */
    .ob-graticule {
      fill: none;
      stroke: transparent;
      stroke-width: 0.5;
    }

    .ob-pulse { display: none; }

    /* 鈹€鈹€ Responsive 鈹€鈹€ */
    @media (max-width: 1199px) {
      #our-business { padding: 84px 0 0; }
      .ob-hero { margin-left: 48px; margin-right: 48px; }
      .ob-hero-intro { gap: 48px; }
      .ob-cards-wrap { min-height: 600px; }
      .ob-center-text { top: 43%; width: min(44vw, 430px); min-width: 280px; padding: 26px 34px 30px; }
      .ob-center-text .ob-hero-big { font-size: 38px; }
      .ob-download-btn { margin-top: 18px; min-height: 40px; padding: 11px 24px; }
      .ob-card { width: clamp(260px, 30vw, 340px); }
    }
    @media (max-width: 900px) {
      #our-business { padding: 78px 0 0; }
      .ob-hero { margin-left: 32px; margin-right: 32px; }
      .ob-cards-wrap { min-height: 580px; }
      .ob-center-text { top: 42%; width: min(54vw, 350px); min-width: 240px; padding: 24px 28px 28px; }
      .ob-center-text .ob-hero-big { font-size: 31px; white-space: normal; text-align: center; }
      .ob-download-btn { margin-top: 16px; min-height: 38px; padding: 10px 22px; font-size: 13px; }
      .ob-card { width: clamp(190px, 36vw, 260px); }
      #ob-card-beef, #ob-card-aquatic { left: 28px; }
      #ob-card-pork, #ob-card-fruit { right: 28px; }
    }
    @media (max-width: 600px) {
      #our-business { padding: 72px 0 0; }
      .ob-hero { margin-left: 20px; margin-right: 20px; }
      .ob-cards-wrap { min-height: 660px; }
      .ob-center-text { top: 42%; width: min(300px, calc(100% - 32px)); min-width: 0; padding: 20px 18px 22px; }
      .ob-center-text::before,
      .ob-center-text::after { left: 22%; right: 22%; }
      .ob-center-text .ob-hero-big { font-size: 25px; white-space: normal; line-height: 1.08; }
      .ob-center-text .ob-hero-big span + span { margin-top: 2px; }
      .ob-download-btn { margin-top: 14px; min-height: 36px; padding: 10px 20px; font-size: 13px; }
      .ob-card { width: calc(50% - 10px); aspect-ratio: 1.18 / 1; }
      #ob-card-beef { left: 0; top: 0; }
      #ob-card-pork { right: 0; top: 0; }
      #ob-card-aquatic { left: 0; bottom: 0; }
      #ob-card-fruit { right: 0; bottom: 0; }
      .ob-card-content { padding: 16px 14px; }
      .ob-card-title { font-size: 18px; margin-bottom: 10px; }
      .ob-card-origins-tag { font-size: 9px; padding: 3px 8px; }
      .ob-card-icon-wrap { width: 32px; height: 32px; margin-bottom: 8px; }
    }

/* Huineng beef single page */
#beef-origins {
  background: #f0f8eb;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.bo-inner { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; }
.bo-banner { position: relative; width: 100%; height: 580px; overflow: hidden; }
.bo-banner-img { position: absolute; inset: 0; }
.bo-banner-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: brightness(0.72) saturate(0.9); transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.bo-banner:hover .bo-banner-img img { transform: scale(1.05); }
.bo-banner-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(6,18,4,0.02) 0%, rgba(6,18,4,0.10) 42%, rgba(6,18,4,0.28) 100%); }
.bo-banner-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 80px; text-align: center; }
.bo-h1 { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 4.4vw, 68px); font-weight: 900; line-height: 1.04; letter-spacing: 0; color: #fff; margin: 0 0 28px; max-width: 760px; }
.bo-h1 .bo-accent { font-style: normal; background: linear-gradient(110deg, #8de87a 0%, #c0f5ae 55%, #6fca5e 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bo-h1 .bo-white { color: #fff; font-style: normal; }
.bo-row-mid { display: grid; grid-template-columns: 5fr 7fr; gap: 0; background: #f0f8eb; border-bottom: 1px solid rgba(60,120,40,0.14); }
.bo-desc-block { padding: 64px 72px 60px 80px; display: flex; flex-direction: column; justify-content: center; gap: 32px; border-right: 1px solid rgba(60,120,40,0.14); }
.bo-desc-heading { font-family: 'Outfit', sans-serif; font-size: clamp(32px, 3.4vw, 52px); font-weight: 900; color: #1a3a12; letter-spacing: 0; line-height: 1.08; }
.bo-desc-heading em { font-style: normal; color: #3d9930; }
.bo-h2 { font-size: clamp(16px, 1.25vw, 20px); font-weight: 400; line-height: 1.8; color: #3d6630; max-width: 560px; margin: 0; }
.bo-img-card-right, .bo-img-card-left { position: relative; overflow: hidden; min-height: 340px; }
.bo-img-card-right img, .bo-img-card-left img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.bo-img-card-right:hover img, .bo-img-card-left:hover img { transform: scale(1.05); }
.bo-img-card-right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,50,8,0.22) 0%, transparent 60%); pointer-events: none; }
.bo-row-bottom { display: grid; grid-template-columns: 7fr 5fr; gap: 0; background: #f0f8eb; }
.bo-img-card-left { min-height: 320px; border-right: 1px solid rgba(60,120,40,0.14); }
.bo-img-card-left::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 45%, rgba(15,50,8,0.20) 100%); pointer-events: none; }
.bo-tag-panel { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.bo-tag-group { width: 100%; height: 100%; padding: 48px 72px; display: flex; align-items: center; justify-content: center; }
.bo-product-copy { display: flex; flex-direction: column; gap: 32px; width: 100%; max-width: 620px; }
#sourcing-origins { position: relative; width: 100%; overflow: hidden; background: #0a160a; }
.so-header { padding: 72px 80px 40px; display: flex; align-items: center; justify-content: center; background: #fff; }
.so-title { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 72px); font-weight: 800; color: #1a3a12; letter-spacing: 0; line-height: 1.15; text-align: center; margin: 0; }
.so-flag-strip { --so-slant: 38px; position: relative; width: 100%; height: 480px; display: flex; overflow: hidden; cursor: default; }
.so-flag-strip::before, .so-flag-strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: calc(var(--so-slant) * 2.2); background-size: cover; background-position: center; z-index: 0; pointer-events: none; }
.so-flag-strip::before { left: 0; background-image: url('../images/智利.webp'); }
.so-flag-strip::after { right: 0; background-image: url('../images/New_Zealand.svg'); }
.so-flag-panel { position: relative; flex: 1; overflow: hidden; z-index: 1; clip-path: polygon(var(--so-slant) 0, 100% 0, calc(100% - var(--so-slant)) 100%, 0 100%); transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.so-flag-panel.hovered { flex: 2.6; }
.so-flag-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease; filter: brightness(0.95) saturate(1.02); }
.so-flag-panel[data-country="Brazil"] .so-flag-img { background-image: url('../images/Brazil.svg'); }
.so-flag-panel[data-country="Uruguay"] .so-flag-img { background-image: url('../images/Uruguay.webp'); }
.so-flag-panel[data-country="Argentina"] .so-flag-img { background-image: url('../images/Argentina.webp'); }
.so-flag-panel[data-country="Australia"] .so-flag-img { background-image: url('../images/Australia.svg'); }
.so-flag-panel[data-country="New Zealand"] .so-flag-img { background-image: url('../images/New_Zealand.svg'); }
.so-flag-panel[data-country="Bolivia"] .so-flag-img { background-image: url('../images/玻利维亚.webp'); }
.so-flag-panel[data-country="Chile"] .so-flag-img { background-image: url('../images/智利.webp'); }
.so-flag-panel.hovered .so-flag-img { filter: brightness(1) saturate(1.06); transform: scale(1.04); }
.so-flag-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 56%, rgba(0,0,0,0.72) 100%); transition: background 0.4s ease; z-index: 2; }
.so-flag-panel.hovered .so-flag-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 58%, rgba(0,0,0,0.66) 100%); }
.so-flag-divider { display: none; }
.so-flag-label { position: absolute; bottom: 32px; left: 0; right: 0; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 8px; transition: opacity 0.35s ease, transform 0.4s ease; }
.so-flag-name { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.65); letter-spacing: 0.12em; text-transform: uppercase; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; transition: color 0.35s ease, font-size 0.4s ease, opacity 0.35s ease; }
.so-flag-panel.hovered .so-flag-name { font-size: 18px; color: #fff; letter-spacing: 0.06em; }
.so-flag-accent { height: 2px; width: 0; background: linear-gradient(90deg, #5fb550, #8fd07f); border-radius: 2px; transition: width 0.4s ease 0.1s; }
.so-flag-panel.hovered .so-flag-accent { width: 40px; }
.so-flag-region { font-size: 9px; font-weight: 600; color: rgba(143,208,127,0); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; transition: color 0.35s ease 0.05s, opacity 0.35s ease; opacity: 0; }
.so-flag-panel.hovered .so-flag-region { color: rgba(143,208,127,0.82); opacity: 1; }
.so-flag-panel:not(:first-child) { margin-left: calc(var(--so-slant) * -1); }
.so-flag-panel[data-country="New Zealand"] { order: 1; margin-left: 0; }
.so-flag-panel[data-country="Uruguay"] { order: 2; }
.so-flag-panel[data-country="Argentina"] { order: 3; }
.so-flag-panel[data-country="Australia"] { order: 4; }
.so-flag-panel[data-country="Brazil"] { order: 5; margin-left: calc(var(--so-slant) * -1); }
.so-flag-panel[data-country="Bolivia"] { order: 6; }
.so-flag-panel[data-country="Chile"] { order: 7; }
.bo-cta-strip { background: linear-gradient(110deg, #0f2209 0%, #1e4d17 55%, #163b11 100%); display: grid; grid-template-columns: minmax(0, 720px) auto; align-items: center; justify-content: center; padding: 72px 80px; column-gap: clamp(40px, 6vw, 120px); position: relative; overflow: hidden; }
.bo-cta-text { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.bo-cta-label { font-family: 'Outfit', sans-serif; font-size: clamp(26px, 2.6vw, 38px); font-weight: 800; letter-spacing: 0; text-transform: none; color: #edf8e8; line-height: 1.25; max-width: none; white-space: nowrap; }
.bo-cta-headline { font-family: 'Outfit', sans-serif; font-size: clamp(16px, 1.4vw, 20px); font-weight: 400; color: rgba(237,248,232,0.70); letter-spacing: 0; line-height: 1.55; max-width: 680px; }
.bo-cta-btn { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; background: #3d9930; color: #fff; justify-self: start; font-size: 17px; font-weight: 700; letter-spacing: 0.04em; padding: 22px 44px; border-radius: 12px; text-decoration: none; transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease; white-space: nowrap; flex-shrink: 0; box-shadow: 0 6px 32px rgba(61,153,48,0.40); }
.bo-cta-btn:hover { background: #2d7a23; color: #fff; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(61,153,48,0.50); }
.bo-cta-btn svg { width: 16px; height: 16px; }
@media (max-width: 1199px) {
  .bo-banner { height: 520px; }
  .bo-banner-content { padding: 0 56px; }
  .bo-desc-block { padding: 52px 48px 48px 56px; }
  .bo-tag-group { padding: 44px 52px; }
  .bo-cta-strip { grid-template-columns: minmax(0, 640px) auto; padding: 64px 56px; column-gap: 48px; }
  .bo-cta-label { font-size: clamp(24px, 2.4vw, 34px); }
}
@media (max-width: 900px) {
  .bo-banner { height: 440px; }
  .bo-banner-content { padding: 0 36px; }
  .bo-row-mid, .bo-row-bottom { grid-template-columns: 1fr; }
  .bo-desc-block { padding: 44px 36px 36px; border-right: none; border-bottom: 1px solid rgba(60,120,40,0.14); }
  .bo-img-card-right { min-height: 280px; }
  .bo-img-card-left { min-height: 260px; border-right: none; border-bottom: 1px solid rgba(60,120,40,0.14); }
  .bo-tag-group { flex: none; min-width: 0; padding: 40px 36px; }
  .so-flag-strip { height: 380px; --so-slant: 26px; }
  .so-header { padding: 52px 36px 32px; }
  .bo-cta-strip { grid-template-columns: 1fr; justify-content: start; padding: 60px 36px; gap: 28px; }
  .bo-cta-label { white-space: normal; }
}
@media (max-width: 600px) {
  .bo-banner { height: 360px; }
  .bo-banner-content { padding: 0 24px; }
  .bo-desc-block { padding: 36px 24px 32px; }
  .bo-tag-group { padding: 28px 24px; }
  .so-flag-strip { height: 300px; --so-slant: 18px; }
  .so-header { padding: 40px 24px 28px; }
  .so-flag-name { font-size: 9px; }
  .so-flag-panel.hovered .so-flag-name { font-size: 14px; }
  .bo-cta-strip { padding: 48px 24px; }
}

/* Huineng pork single page */
#pork-origins {
  background: #f0f8eb;
  position: relative;
  overflow: hidden;
  padding: 0;
}
#pork-origins .bo-h1 {
  font-size: clamp(26px, 4vw, 58px);
  max-width: none;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}
#pork-origins .bo-desc-block {
  padding: 64px 64px 58px 80px;
  gap: 28px;
}
#pork-origins .bo-h2 {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
}
#pork-origins .bo-h2 p { margin: 0; }
#pork-origins .bo-h2 p + p { margin-top: 14px; }
#pork-origins .bo-h2 .bo-lead {
  font-size: clamp(19px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.48;
  color: #24561c;
}
#pork-origins .bo-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 620px;
  margin: 4px auto 0;
  padding: 0;
  list-style: none;
}
#pork-origins .bo-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(61,153,48,0.26);
  border-radius: 100px;
  background: rgba(255,255,255,0.64);
  color: #2d7a23;
  font-size: 13.5px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: default;
  box-shadow: 0 8px 22px rgba(61,102,48,0.08);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
#pork-origins .bo-tag:hover {
  transform: translateY(-3px);
  border-color: rgba(61,153,48,0.52);
  background: #3d9930;
  color: #fff;
  box-shadow: 0 14px 30px rgba(61,153,48,0.22);
}
#pork-origins .bo-portfolio-row {
  display: grid;
  grid-template-columns: 7fr 5fr;
  background: #f0f8eb;
  border-bottom: 1px solid rgba(60,120,40,0.14);
}
#pork-origins .bo-portfolio-img {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}
#pork-origins .bo-portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#pork-origins .bo-portfolio-img:hover img { transform: scale(1.05); }
#pork-origins .bo-portfolio-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,50,8,0.18) 0%, rgba(15,50,8,0.02) 62%);
  pointer-events: none;
}
#pork-origins .bo-portfolio-copy {
  padding: 72px 80px 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  border-left: 1px solid rgba(60,120,40,0.12);
}
#pork-origins .bo-portfolio-copy p {
  margin: 0;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.78;
  color: #3d6630;
  font-weight: 500;
}
#pork-origins .pork-flag-strip {
  height: 430px;
}
#pork-origins .pork-flag-strip::before { background-image: url('../images/denmark.webp'); }
#pork-origins .pork-flag-strip::after { background-image: url('../images/Brazil.svg'); }
#pork-origins .so-flag-panel[data-country="Denmark"] .so-flag-img { background-image: url('../images/denmark.webp'); }
#pork-origins .so-flag-panel[data-country="Spain"] .so-flag-img { background-image: url('../images/Flag_of_Spain.svg'); }
#pork-origins .so-flag-panel[data-country="Netherlands"] .so-flag-img { background-image: url('../images/Netherlands.webp'); }
#pork-origins .so-flag-panel[data-country="Brazil"] .so-flag-img { background-image: url('../images/Brazil.svg'); }
#pork-origins .so-flag-panel.hovered { flex: 2.15; }
#pork-origins .so-flag-name { font-size: 13px; font-weight: 750; color: rgba(255,255,255,0.72); }
#pork-origins .so-flag-panel.hovered .so-flag-name { font-size: 22px; }
#pork-origins .so-flag-panel.hovered .so-flag-accent { width: 46px; }
#pork-origins .so-flag-region { font-size: 10px; font-weight: 650; }
@media (max-width: 1199px) {
  #pork-origins .bo-desc-block { padding: 52px 48px 48px 56px; }
  #pork-origins .bo-portfolio-copy { padding: 56px 56px 54px; }
}
@media (max-width: 900px) {
  #pork-origins .bo-h1 {
    white-space: normal;
    max-width: 680px;
  }
  #pork-origins .bo-portfolio-row { grid-template-columns: 1fr; }
  #pork-origins .bo-portfolio-img { min-height: 300px; }
  #pork-origins .bo-portfolio-copy {
    padding: 44px 36px;
    border-left: none;
  }
  #pork-origins .pork-flag-strip { height: 340px; }
  #pork-origins .so-flag-panel.hovered .so-flag-name { font-size: 18px; }
}
@media (max-width: 600px) {
  #pork-origins .bo-tags { gap: 10px; }
  #pork-origins .bo-tag {
    width: 100%;
    white-space: normal;
  }
  #pork-origins .bo-portfolio-copy { padding: 36px 24px; }
  #pork-origins .pork-flag-strip { height: 280px; }
  #pork-origins .so-flag-name { font-size: 10px; }
  #pork-origins .so-flag-panel.hovered .so-flag-name { font-size: 14px; }
}

/* Huineng aquatic products single page */
#aquatic-origins {
  background: #f0f8eb;
  position: relative;
  overflow: hidden;
  padding: 0;
}
#aquatic-origins .bo-h1 {
  max-width: 820px;
}
#aquatic-origins .bo-desc-heading {
  max-width: 600px;
}
#aquatic-origins #single-origin {
  background: #fff;
  border-top: 1px solid rgba(60,120,40,0.12);
}
#aquatic-origins .ao-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 460px;
  background: #fff;
}
#aquatic-origins .ao-visual {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-right: 1px solid rgba(60,120,40,0.12);
  background: #eef7ea;
}
#aquatic-origins .ao-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.92) saturate(1.04);
  transition: transform 1.2s ease;
}
#aquatic-origins .ao-visual:hover img { transform: scale(1.04); }
#aquatic-origins .ao-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,35,7,0.24) 0%, rgba(9,35,7,0.02) 55%, rgba(9,35,7,0.25) 100%);
  pointer-events: none;
}
#aquatic-origins .ao-content {
  position: relative;
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  background: #f7fcf5;
  overflow: hidden;
}
#aquatic-origins .ao-flag {
  width: min(360px, 72%);
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(60,120,40,0.18);
  box-shadow: 0 22px 52px rgba(31,77,23,0.16), 0 8px 18px rgba(31,77,23,0.10);
  background: #fff;
  transform: translateZ(0);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
#aquatic-origins .ao-flag:hover {
  border-color: rgba(61,153,48,0.34);
  box-shadow: 0 28px 62px rgba(31,77,23,0.22), 0 12px 24px rgba(31,77,23,0.14);
  transform: translateY(-4px);
}
#aquatic-origins .ao-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
#aquatic-origins .ao-flag:hover img { transform: scale(1.025); }
#aquatic-origins .ao-h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.8;
  font-weight: 400;
  color: #3d6630;
  letter-spacing: 0;
  max-width: 600px;
  margin: 0;
}
#aquatic-origins .ao-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 600px;
  padding-top: 2px;
}
#aquatic-origins .ao-tag {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(61,153,48,0.20);
  color: #2e5d25;
  box-shadow: 0 8px 20px rgba(31,77,23,0.045);
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  cursor: default;
  overflow: hidden;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
#aquatic-origins .ao-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 10px;
  flex: 0 0 auto;
  align-self: center;
  background: #5fb550;
  box-shadow: 0 0 0 4px rgba(95,181,80,0.14);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
#aquatic-origins .ao-tag::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(61,153,48,0.14), rgba(198,240,184,0.20));
  opacity: 0;
  transition: opacity 0.25s ease;
}
#aquatic-origins .ao-tag:hover,
#aquatic-origins .ao-tag:focus-visible {
  color: #12390f;
  border-color: rgba(61,153,48,0.42);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 28px rgba(31,77,23,0.12);
  transform: translateY(-3px);
  outline: none;
}
#aquatic-origins .ao-tag:hover::before,
#aquatic-origins .ao-tag:focus-visible::before {
  background: #3d9930;
  box-shadow: 0 0 0 5px rgba(61,153,48,0.18);
  transform: scale(1.12);
}
#aquatic-origins .ao-tag:hover::after,
#aquatic-origins .ao-tag:focus-visible::after { opacity: 1; }
@media (max-width: 900px) {
  #aquatic-origins .ao-card { grid-template-columns: 1fr; }
  #aquatic-origins .ao-visual {
    min-height: 320px;
    border-right: none;
    border-bottom: 1px solid rgba(60,120,40,0.12);
  }
  #aquatic-origins .ao-content { padding: 48px 36px; }
  #aquatic-origins .ao-tags { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  #aquatic-origins .ao-visual { min-height: 260px; }
  #aquatic-origins .ao-content { padding: 36px 24px; }
  #aquatic-origins .ao-flag { width: 100%; }
  #aquatic-origins .ao-tags { grid-template-columns: 1fr; }
  #aquatic-origins .ao-tag { white-space: normal; }
}

/* Huineng fruit single page */
#fruit-supply {
  background: #0d1a0c;
  overflow: hidden;
}
#fruit-supply .fruit-hero {
  height: 50vh;
  min-height: 340px;
}
#fruit-supply .fruit-hero .bo-banner-img img {
  object-position: center 30%;
}
#fruit-supply .fruit-hero .bo-banner-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,14,3,0.2), rgba(4,14,3,0.44));
  pointer-events: none;
}
#fruit-supply .bo-h1 {
  font-size: clamp(40px, 3.8vw, 72px);
  max-width: 1500px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.58), 0 8px 28px rgba(0,0,0,0.42);
}
#fruit-supply .bo-h1-line {
  display: block;
  white-space: nowrap;
}
#fruit-supply .bo-h1 em {
  font-style: normal;
  color: #5fb550;
  text-shadow: 0 2px 8px rgba(0,0,0,0.32);
}
#fruit-supply .bo-origin-section {
  position: relative;
  background: #f2faed;
  padding: 112px 120px 128px;
  overflow: hidden;
}
#fruit-supply .bo-origin-section .site-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
#fruit-supply .bo-intro-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
#fruit-supply .bo-intro-lead {
  font-family: 'Outfit', sans-serif;
  color: #3d9930;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}
#fruit-supply .bo-intro-text {
  color: #5f6c5d;
  max-width: 760px;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.75;
  margin: 0;
}
#fruit-supply .bo-origin-divider {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, rgba(61,153,48,0) 0%, rgba(61,153,48,0.72) 50%, rgba(61,153,48,0) 100%);
  border-radius: 2px;
}
#fruit-supply .fruit-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
#fruit-supply .fruit-carousel {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
#fruit-supply .fruit-carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 4px 0 10px;
}
#fruit-supply .fruit-carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
#fruit-supply .fruit-carousel-page {
  flex: 0 0 100%;
  min-width: 100%;
}
#fruit-supply .fruit-carousel-btn {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61,153,48,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #3d9930;
  box-shadow: 0 10px 24px rgba(22,32,22,0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.24s ease, border-color 0.24s ease, color 0.24s ease, opacity 0.24s ease;
  backdrop-filter: blur(8px);
}
#fruit-supply .fruit-carousel-chevron-left { left: -58px; }
#fruit-supply .fruit-carousel-chevron-right { right: -58px; }
#fruit-supply .fruit-carousel-btn:hover {
  transform: translateY(calc(-50% - 2px));
  border-color: rgba(61,153,48,0.55);
  color: #2d7a23;
}
#fruit-supply .fruit-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}
#fruit-supply .fruit-carousel-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}
#fruit-supply .fruit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  background: #eef8e8;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(22,32,22,0.055);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
#fruit-supply .fruit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61,153,48,0.16);
  box-shadow: 0 16px 36px rgba(22,32,22,0.085);
}
#fruit-supply .fruit-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f7faf5;
  overflow: hidden;
}
#fruit-supply .fruit-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
#fruit-supply .fruit-card:hover .fruit-card-media img { transform: scale(1.045); }
#fruit-supply .fruit-card-media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(95,181,80,0.12), rgba(255,255,255,0.8)), #f3f8f0;
  color: rgba(45,122,35,0.52);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
#fruit-supply .fruit-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 24px 24px;
  flex: 1;
  background: #e4f2dc;
}
#fruit-supply .fruit-card-category {
  color: #3d9930;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}
#fruit-supply .fruit-card-name {
  margin: 0;
  color: #3d9930;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
}
#fruit-supply .fruit-card-placeholder {
  min-height: 360px;
  visibility: hidden;
  pointer-events: none;
}
#fruit-supply .mrf-section {
  position: relative;
  background: #0d1a0c;
  padding: 120px 120px 140px;
  overflow: hidden;
}
#fruit-supply .mrf-section::before {
  content: '';
  position: absolute;
  top: -160px;
  left: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61,153,48,0.12) 0%, transparent 70%);
  pointer-events: none;
}
#fruit-supply .mrf-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(143,208,127,0.08) 0%, transparent 70%);
  pointer-events: none;
}
#fruit-supply .mrf-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
#fruit-supply .mrf-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 760px;
}
#fruit-supply .mrf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(143,208,127,0.80);
  background: rgba(143,208,127,0.08);
  border: 1px solid rgba(143,208,127,0.18);
  border-radius: 100px;
  padding: 6px 16px;
}
#fruit-supply .mrf-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(143,208,127,0.85);
  box-shadow: 0 0 6px rgba(143,208,127,0.6);
  flex-shrink: 0;
}
#fruit-supply .mrf-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 3.8vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
}
#fruit-supply .mrf-headline em {
  font-style: normal;
  background: linear-gradient(110deg, #8de87a 0%, #c0f5ae 55%, #6fca5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#fruit-supply .mrf-divider {
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(143,208,127,0.7), transparent);
  border-radius: 2px;
}
#fruit-supply .mrf-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#fruit-supply .mrf-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}
#fruit-supply .mrf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143,208,127,0.28);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(143,208,127,0.12), inset 0 1px 0 rgba(255,255,255,0.12);
}
#fruit-supply .mrf-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}
#fruit-supply .mrf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
#fruit-supply .mrf-card:hover .mrf-card-img img { transform: scale(1.06); }
#fruit-supply .mrf-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,14,3,0.05) 0%, rgba(4,14,3,0.55) 100%);
  pointer-events: none;
}
#fruit-supply .mrf-card-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
#fruit-supply .mrf-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
#fruit-supply .mrf-card-title-icon {
  width: 30px;
  height: 30px;
  background: rgba(61,153,48,0.70);
  border: 1px solid rgba(143,208,127,0.35);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.95);
  flex: 0 0 30px;
  transition: background 0.28s, box-shadow 0.28s;
}
#fruit-supply .mrf-card-title-icon svg {
  width: 16px;
  height: 16px;
}
#fruit-supply .mrf-card:hover .mrf-card-title-icon {
  background: rgba(61,153,48,0.90);
  box-shadow: 0 0 18px rgba(61,153,48,0.35);
}
#fruit-supply .mrf-card-desc {
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}
#fruit-supply .mrf-cta {
  width: 100%;
  background: linear-gradient(120deg, rgba(61,153,48,0.18) 0%, rgba(143,208,127,0.08) 100%);
  border: 1px solid rgba(143,208,127,0.22);
  border-radius: 24px;
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 96px;
  position: relative;
  overflow: hidden;
}
#fruit-supply .mrf-cta-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  text-align: left;
  align-items: flex-start;
}
#fruit-supply .mrf-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  color: #fff;
  line-height: 1.1;
}
#fruit-supply .mrf-cta-desc {
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}
#fruit-supply .mrf-cta-btn {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3d9930 0%, #5abe49 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  padding: 16px 36px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(61,153,48,0.38), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.25s ease, background 0.25s ease;
}
#fruit-supply .mrf-cta-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  background: linear-gradient(135deg, #47b038 0%, #6dcd5d 100%);
  box-shadow: 0 14px 40px rgba(61,153,48,0.50), 0 2px 8px rgba(0,0,0,0.18);
}
#fruit-supply .mrf-cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 1439px) {
  #fruit-supply .bo-origin-section { padding: 96px 60px 112px; }
  #fruit-supply .mrf-section { padding: 100px 60px 120px; }
  #fruit-supply .fruit-carousel-chevron-left { left: -36px; }
  #fruit-supply .fruit-carousel-chevron-right { right: -36px; }
}
@media (max-width: 1199px) {
  #fruit-supply .mrf-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  #fruit-supply .mrf-cta { gap: 48px; }
}
@media (max-width: 1023px) {
  #fruit-supply .bo-origin-section { padding: 80px 40px 96px; }
  #fruit-supply .fruit-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  #fruit-supply .fruit-carousel-chevron-left { left: -22px; }
  #fruit-supply .fruit-carousel-chevron-right { right: -22px; }
}
@media (max-width: 900px) {
  #fruit-supply .mrf-section { padding: 80px 40px 100px; }
  #fruit-supply .mrf-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
@media (max-width: 767px) {
  #fruit-supply .bo-h1-line { white-space: normal; }
  #fruit-supply .bo-origin-section { padding: 64px 20px 80px; }
  #fruit-supply .bo-origin-section .site-wrapper { gap: 40px; }
  #fruit-supply .fruit-card-grid { grid-template-columns: 1fr; gap: 16px; }
  #fruit-supply .fruit-card { min-height: 0; }
  #fruit-supply .fruit-card-body { padding: 20px; }
  #fruit-supply .fruit-carousel-btn {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  #fruit-supply .fruit-carousel-chevron-left { left: -10px; }
  #fruit-supply .fruit-carousel-chevron-right { right: -10px; }
  #fruit-supply .fruit-card-placeholder { min-height: 0; }
  #fruit-supply .mrf-grid { grid-template-columns: 1fr; }
  #fruit-supply .mrf-section { padding: 64px 20px 80px; }
  #fruit-supply .mrf-cta { padding: 36px 24px; }
}
@media (max-width: 480px) {
  #fruit-supply .bo-origin-section { padding: 56px 16px 72px; }
  #fruit-supply .mrf-section { padding: 56px 16px 72px; }
}

/* Huineng integrated supply page */
#integrated-supply-page {
  background: #fff;
  color: #1c1917;
  overflow: hidden;
}
#integrated-supply-page .is-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding: 160px 120px 96px;
  background: #0d2409;
}
#integrated-supply-page .is-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/remote/photo-1497366754035-f200968a6e72-d8aac8ab1e18.webp') center/cover no-repeat;
  transform: scale(1.02);
}
#integrated-supply-page .is-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,24,6,0.88), rgba(8,24,6,0.48) 58%, rgba(8,24,6,0.22));
}
#integrated-supply-page .is-hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}
#integrated-supply-page .is-kicker,
#integrated-supply-page .is-section-head span,
#integrated-supply-page .is-copy-panel > span,
#integrated-supply-page .is-partnership span {
  display: inline-flex;
  color: #8fd07f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
#integrated-supply-page .is-hero h1,
#integrated-supply-page .is-section-head h2,
#integrated-supply-page .is-copy-panel h2,
#integrated-supply-page .is-partnership h2 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}
#integrated-supply-page .is-hero h1 {
  color: #fff;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 900;
  max-width: 900px;
}
#integrated-supply-page .is-hero p {
  margin: 24px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.8;
}
#integrated-supply-page .is-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
#integrated-supply-page .is-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
#integrated-supply-page .is-btn:hover { transform: translateY(-2px); }
#integrated-supply-page .is-btn-primary {
  background: linear-gradient(135deg, #3d9930, #24611c);
  color: #fff;
  box-shadow: 0 12px 30px rgba(61,153,48,.28);
}
#integrated-supply-page .is-btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
}
#integrated-supply-page .is-platform,
#integrated-supply-page .is-processing,
#integrated-supply-page .is-market {
  padding: 112px 120px;
}
#integrated-supply-page .is-section-head {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}
#integrated-supply-page .is-section-head h2,
#integrated-supply-page .is-copy-panel h2,
#integrated-supply-page .is-partnership h2 {
  color: #183f12;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
}
#integrated-supply-page .is-section-head p,
#integrated-supply-page .is-copy-panel p,
#integrated-supply-page .is-partnership p {
  margin: 20px 0 0;
  color: #57534e;
  font-size: 16px;
  line-height: 1.8;
}
#integrated-supply-page .is-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
#integrated-supply-page .is-platform-grid article {
  background: #f7faf6;
  border: 1px solid #e0f2d8;
  border-radius: 8px;
  padding: 32px 28px;
  min-height: 260px;
  transition: transform .25s ease, box-shadow .25s ease;
}
#integrated-supply-page .is-platform-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(22,32,22,.08);
}
#integrated-supply-page .is-platform-grid svg,
#integrated-supply-page .is-feature-grid svg,
#integrated-supply-page .is-chip-grid svg {
  width: 22px;
  height: 22px;
  color: #3d9930;
}
#integrated-supply-page .is-platform-grid h3 {
  margin: 22px 0 12px;
  font-family: 'Outfit', sans-serif;
  color: #183f12;
  font-size: 22px;
  line-height: 1.15;
}
#integrated-supply-page .is-platform-grid p {
  color: #64705f;
  line-height: 1.7;
  margin: 0;
}
#integrated-supply-page .is-network,
#integrated-supply-page .is-cold-chain {
  background: #0d2409;
  padding: 112px 120px;
}
#integrated-supply-page .is-section-head-light h2,
#integrated-supply-page .is-section-head-light p { color: #fff; }
#integrated-supply-page .is-section-head-light p { color: rgba(255,255,255,.68); }
#integrated-supply-page .is-map-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(143,208,127,.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
#integrated-supply-page .is-map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: invert(1) sepia(.2) saturate(1.4) hue-rotate(55deg);
}
#integrated-supply-page .is-map-node {
  position: absolute;
  transform: translate(-50%, -50%);
  color: #e8f5e4;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(61,153,48,.25);
  border: 1px solid rgba(143,208,127,.45);
  box-shadow: 0 0 0 6px rgba(61,153,48,.10);
}
#integrated-supply-page .is-node-brazil { left: 33%; top: 62%; }
#integrated-supply-page .is-node-uruguay { left: 36%; top: 70%; }
#integrated-supply-page .is-node-spain { left: 48%; top: 36%; }
#integrated-supply-page .is-node-china { left: 72%; top: 45%; }
#integrated-supply-page .is-node-australia { left: 81%; top: 73%; }
#integrated-supply-page .is-node-ecuador { left: 28%; top: 55%; }
#integrated-supply-page .is-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1000px;
  margin: 38px auto 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(143,208,127,.16);
}
#integrated-supply-page .is-stats div {
  background: rgba(255,255,255,.06);
  padding: 26px 18px;
  text-align: center;
}
#integrated-supply-page .is-stats strong {
  display: block;
  color: #8fd07f;
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  line-height: 1;
}
#integrated-supply-page .is-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
#integrated-supply-page .is-cold-chain {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
  padding-top: 0;
}
#integrated-supply-page .is-image-panel {
  position: relative;
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
}
#integrated-supply-page .is-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}
#integrated-supply-page .is-temp-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 10px;
  align-items: center;
  background: rgba(8,24,6,.82);
  border: 1px solid rgba(143,208,127,.28);
  border-radius: 8px;
  padding: 16px 18px;
  color: #fff;
  backdrop-filter: blur(10px);
}
#integrated-supply-page .is-temp-badge svg { grid-row: span 2; color: #8fd07f; }
#integrated-supply-page .is-temp-badge strong { font-size: 22px; line-height: 1; }
#integrated-supply-page .is-temp-badge span { color: rgba(255,255,255,.62); font-size: 12px; }
#integrated-supply-page .is-copy-panel h2 { color: #fff; }
#integrated-supply-page .is-copy-panel p { color: rgba(255,255,255,.68); }
#integrated-supply-page .is-feature-grid,
#integrated-supply-page .is-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
#integrated-supply-page .is-feature-grid div,
#integrated-supply-page .is-chip-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(143,208,127,.16);
  color: #e8f5e4;
  font-weight: 700;
}
#integrated-supply-page .is-processing {
  background: #f7f5f2;
}
#integrated-supply-page .is-chip-grid {
  max-width: 960px;
  margin: 0 auto;
}
#integrated-supply-page .is-chip-grid span {
  background: #fff;
  color: #183f12;
  border-color: #ede8e1;
}
#integrated-supply-page .is-market {
  background: #fff;
}
#integrated-supply-page .is-channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
#integrated-supply-page .is-channel-grid article {
  position: relative;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--img) center/cover no-repeat;
  color: #fff;
}
#integrated-supply-page .is-channel-grid article::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.68));
}
#integrated-supply-page .is-channel-grid span,
#integrated-supply-page .is-channel-grid h3 {
  position: relative;
  z-index: 1;
}
#integrated-supply-page .is-channel-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(61,153,48,.9);
  font-weight: 900;
}
#integrated-supply-page .is-channel-grid h3 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
}
#integrated-supply-page .is-partnership {
  padding: 120px;
  background: linear-gradient(rgba(242,249,240,.92), rgba(242,249,240,.92)), url('../images/remote/photo-1586528116311-ad8dd3c8310d-64af5bd4f25a.webp') center/cover no-repeat;
}
#integrated-supply-page .is-partnership > div {
  max-width: 760px;
}
#integrated-supply-page .is-partnership .is-btn { margin-top: 30px; }
@media (max-width: 1199px) {
  #integrated-supply-page .is-hero,
  #integrated-supply-page .is-platform,
  #integrated-supply-page .is-network,
  #integrated-supply-page .is-cold-chain,
  #integrated-supply-page .is-processing,
  #integrated-supply-page .is-market,
  #integrated-supply-page .is-partnership {
    padding-left: 56px;
    padding-right: 56px;
  }
  #integrated-supply-page .is-platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #integrated-supply-page .is-channel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  #integrated-supply-page .is-hero { min-height: 560px; padding-top: 130px; }
  #integrated-supply-page .is-cold-chain { grid-template-columns: 1fr; gap: 42px; }
  #integrated-supply-page .is-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #integrated-supply-page .is-map-wrap { aspect-ratio: 1.6 / 1; }
  #integrated-supply-page .is-channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  #integrated-supply-page .is-hero,
  #integrated-supply-page .is-platform,
  #integrated-supply-page .is-network,
  #integrated-supply-page .is-cold-chain,
  #integrated-supply-page .is-processing,
  #integrated-supply-page .is-market,
  #integrated-supply-page .is-partnership {
    padding-left: 20px;
    padding-right: 20px;
  }
  #integrated-supply-page .is-platform,
  #integrated-supply-page .is-network,
  #integrated-supply-page .is-cold-chain,
  #integrated-supply-page .is-processing,
  #integrated-supply-page .is-market,
  #integrated-supply-page .is-partnership {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  #integrated-supply-page .is-platform-grid,
  #integrated-supply-page .is-feature-grid,
  #integrated-supply-page .is-chip-grid,
  #integrated-supply-page .is-channel-grid {
    grid-template-columns: 1fr;
  }
  #integrated-supply-page .is-stats { grid-template-columns: 1fr; }
  #integrated-supply-page .is-map-node { font-size: 10px; padding: 5px 7px; }
}

/* Huineng sustainability page */
#sustainability-page {
  background: #fff;
  color: #1c1917;
  overflow: hidden;
}
#sustainability-page .sus-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding: 150px 120px 92px;
  background: #0f2a0b;
}
#sustainability-page .sus-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/remote/photo-1441974231531-c6227db76b6e-eb2c6db8a557.webp') center/cover no-repeat;
  transform: scale(1.02);
}
#sustainability-page .sus-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,42,11,.86), rgba(24,63,18,.62) 52%, rgba(0,0,0,.26));
}
#sustainability-page .sus-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
#sustainability-page .sus-kicker,
#sustainability-page .sus-section-head span {
  display: inline-flex;
  color: #8fd07f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
#sustainability-page .sus-hero h1,
#sustainability-page .sus-section-head h2,
#sustainability-page .sus-pillar-copy h2 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}
#sustainability-page .sus-hero h1 {
  color: #fff;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 900;
}
#sustainability-page .sus-hero h1 span {
  color: #8fd07f;
}
#sustainability-page .sus-hero p {
  color: rgba(255,255,255,.76);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.8;
  margin: 22px 0 0;
  max-width: 720px;
}
#sustainability-page .sus-pillars {
  background: #fff;
  padding-bottom: 80px;
}
#sustainability-page .sus-section-head {
  max-width: 820px;
  margin: 0 auto;
  padding: 90px 24px 64px;
  text-align: center;
}
#sustainability-page .sus-section-head h2 {
  color: #183f12;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
}
#sustainability-page .sus-section-head p {
  color: #78716c;
  font-size: 16px;
  line-height: 1.8;
  margin: 18px auto 0;
  max-width: 680px;
}
#sustainability-page .sus-pillar {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 72px 120px;
  background: #fff;
}
#sustainability-page .sus-pillar-left {
  flex-direction: row-reverse;
  background: #f1faed;
}
#sustainability-page .sus-pillar-image {
  flex: 1 1 55%;
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 48px rgba(15,42,11,.12);
  transition: transform .35s ease;
}
#sustainability-page .sus-pillar:hover .sus-pillar-image {
  transform: translateY(-4px);
}
#sustainability-page .sus-img-sourcing {
  background-image: url('../images/remote/photo-1518843875459-f738682238a6-eee7275c53d6.webp');
}
#sustainability-page .sus-img-transparency {
  background-image: url('../images/remote/photo-1557804506-669a67965ba0-4a1955a55f29.webp');
}
#sustainability-page .sus-img-value {
  background-image: url('../images/large_15504_1777365831252_3ckf9pldosq_215162b979.webp');
  background-position: 22% center;
}
#sustainability-page .sus-img-logistics {
  background-image: url('../images/remote/photo-1586528116311-ad8dd3c8310d-b6cdddcddd1d.webp');
}
#sustainability-page .sus-img-people {
  background-image: url('../images/remote/photo-1552664730-d307ca884978-57edc5a1e467.webp');
}
#sustainability-page .sus-img-partnership {
  background-image: url('../images/remote/photo-1521791136064-7986c2920216-d9b274930d7d.webp');
}
#sustainability-page .sus-pillar-copy {
  flex: 0 0 42%;
  min-width: 320px;
  background: rgba(255,255,255,.9);
  border: 1px solid #e0f2d8;
  border-radius: 8px;
  padding: 42px;
  box-shadow: 0 18px 48px rgba(15,42,11,.08);
}
#sustainability-page .sus-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d7a23;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
#sustainability-page .sus-num span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d9930;
  box-shadow: 0 0 0 5px rgba(61,153,48,.12);
}
#sustainability-page .sus-pillar-copy h2 {
  color: #183f12;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 900;
}
#sustainability-page .sus-pillar-copy p {
  color: #44403c;
  font-size: 15.5px;
  line-height: 1.82;
  margin: 18px 0 0;
}
#sustainability-page .sus-stats {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
#sustainability-page .sus-stats div {
  flex: 1;
  padding: 16px;
  border-radius: 8px;
  background: #f2f9f0;
  border: 1px solid #e0f2d8;
}
#sustainability-page .sus-stats strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #3d9930;
}
#sustainability-page .sus-stats span {
  display: block;
  margin-top: 8px;
  color: #6b665f;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
#sustainability-page .sus-pillar-copy em {
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f2f9f0;
  border: 1px solid #e0f2d8;
  color: #2d7a23;
  font-style: normal;
  font-weight: 800;
}
@media (max-width: 1199px) {
  #sustainability-page .sus-hero,
  #sustainability-page .sus-pillar {
    padding-left: 56px;
    padding-right: 56px;
  }
  #sustainability-page .sus-pillar {
    gap: 42px;
  }
}
@media (max-width: 900px) {
  #sustainability-page .sus-hero {
    min-height: 500px;
    padding: 130px 40px 70px;
  }
  #sustainability-page .sus-pillar,
  #sustainability-page .sus-pillar-left {
    flex-direction: column;
    padding: 54px 40px;
    gap: 28px;
  }
  #sustainability-page .sus-pillar-image,
  #sustainability-page .sus-pillar-copy {
    width: 100%;
    flex: none;
    min-width: 0;
  }
  #sustainability-page .sus-pillar-image {
    min-height: 320px;
  }
}
@media (max-width: 640px) {
  #sustainability-page .sus-hero {
    padding: 120px 20px 58px;
    min-height: 460px;
  }
  #sustainability-page .sus-section-head {
    padding: 64px 20px 42px;
  }
  #sustainability-page .sus-pillar,
  #sustainability-page .sus-pillar-left {
    padding: 42px 20px;
  }
  #sustainability-page .sus-pillar-copy {
    padding: 28px 22px;
  }
  #sustainability-page .sus-stats {
    flex-direction: column;
  }
}

/* ══════════════════════════════════════
   CONTACT US SECTION
══════════════════════════════════════ */
.contact-section {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #78966f 0%, #b8c9ac 48%, #8faa82 100%);
  border-top: 1px solid rgba(30,77,23,0.22);
  border-bottom: 1px solid rgba(30,77,23,0.2);
  overflow: hidden;
  padding: 180px 120px 92px;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 18% 8%, rgba(222,236,213,0.24) 0%, rgba(120,150,111,0) 58%);
  z-index: 0;
  pointer-events: none;
}
.contact-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 240px;
  background: linear-gradient(0deg, rgba(90,118,80,0.24) 0%, rgba(184,201,172,0) 100%);
  z-index: 0;
  pointer-events: none;
}
.contact-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(circle, rgba(30,77,23,0.16) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255,255,255,0.22) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(30,77,23,0.12) 0 1px, transparent 1.5px);
  background-size: 96px 96px, 142px 142px, 188px 188px;
  background-position: 8px 12px, 42px 64px, 88px 28px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  animation: contactParticleFloat 28s linear infinite;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes contactParticleFloat {
  0% {
    background-position: 8px 12px, 42px 64px, 88px 28px;
    transform: translate3d(0, 0, 0);
  }
  100% {
    background-position: 104px -84px, -100px 206px, 276px 216px;
    transform: translate3d(0, -18px, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-section::before,
  .contact-section::after,
  .contact-particles {
    animation: none;
  }
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,239,222,0.86);
  border: 1px solid rgba(30,77,23,0.18);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  box-shadow: 0 10px 28px rgba(45,122,35,0.08);
}
.contact-badge i {
  width: 14px;
  height: 14px;
  color: #2d7a23;
}
.contact-badge span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2d7a23;
}

.contact-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #183f12;
  max-width: 720px;
  margin-bottom: 20px;
}
.contact-heading em {
  font-style: normal;
  color: #54884b;
}

.contact-subtext {
  font-size: 16px;
  color: #32472f;
  line-height: 1.8;
  max-width: none;
  margin-bottom: 10px;
  white-space: nowrap;
}
.contact-email-link {
  font-size: 16px;
  color: #32472f;
  line-height: 1.8;
  margin-bottom: 56px;
}
.contact-email-link a {
  color: #2d7a23;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.contact-email-link a:hover { color: #1e4d17; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-field {
  position: relative;
}
.contact-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #41563c;
  margin-bottom: 10px;
}
.contact-input, .contact-textarea {
  width: 100%;
  background: rgba(229,239,221,0.94);
  border: 1.5px solid rgba(30,77,23,0.18);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1c1917;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  box-shadow: 0 14px 34px rgba(30,77,23,0.1);
}
.contact-input::placeholder, .contact-textarea::placeholder {
  color: #9aa794;
}
.contact-input:focus, .contact-textarea:focus {
  border-color: #5fb550;
  background: #edf5e8;
  box-shadow: 0 0 0 4px rgba(45,122,35,0.16), 0 16px 36px rgba(30,77,23,0.12);
}
.contact-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3d9930, #5fb550);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 38px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 8px 28px rgba(61,153,48,0.35);
}
.contact-submit-btn i {
  width: 16px;
  height: 16px;
}
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(61,153,48,0.48);
  filter: brightness(1.08);
}
.contact-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(61,153,48,0.3);
}
.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

#contact-msg {
  display: none;
  padding: 16px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
#contact-msg.success {
  display: block;
  background: rgba(224,242,216,0.82);
  border: 1px solid rgba(95,181,80,0.32);
  color: #24611c;
}
#contact-msg.error {
  display: block;
  background: rgba(254,242,242,0.92);
  border: 1px solid rgba(248,113,113,0.34);
  color: #b91c1c;
}

@media (max-width: 1439px) {
  .contact-section { padding: 164px 60px 80px; }
}
@media (max-width: 1023px) {
  .contact-section { padding: 140px 40px 64px; }
}
@media (max-width: 767px) {
  .contact-section { padding: 124px 24px 56px; }
  .contact-subtext { max-width: 100%; white-space: normal; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-footer { justify-content: stretch; flex-direction: column; align-items: flex-start; }
  .contact-submit-btn { width: 100%; justify-content: center; }
}

* { box-sizing: border-box; } body {margin: 0;}#iqu9o{background-image:unset;background-repeat:unset;background-position:unset;background-attachment:unset;background-size:unset;}.c249694{color:#fff;width:26px;height:26px;}.c249735{color:#8fd07f;}.c249691{width:46px;height:46px;background:linear-gradient(135deg,#3d9930,#24611c);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}.c249722{font-family:'Outfit',sans-serif;font-size:26px;font-weight:800;letter-spacing:-0.01em;}.c249688{display:flex;align-items:center;gap:10px;cursor:pointer;z-index:200;position:relative;}.c251054{color:#8fd07f;width:22px;height:22px;}.c251086{width:8px;height:8px;}.c251155{width:12px;height:12px;}.c250997{background-image:url('../images/remote/photo-1529692236671-f1f6cf9683ba-dc188b9f243a.webp');}.c251264{color:#8fd07f;width:22px;height:22px;}.c251295{width:8px;height:8px;}.c251362{width:12px;height:12px;}.c251213{background-image:url('../images/remote/photo-1607623814075-e51df1bdc82f-e6739ec518e2.webp');}.c251471{color:#8fd07f;width:22px;height:22px;}.c251502{width:8px;height:8px;}.c251569{width:12px;height:12px;}.c251420{background-image:url('../images/remote/photo-1519708227418-c8fd9a32b7a2-17e055c5a692.webp');}.c251678{color:#8fd07f;width:22px;height:22px;}.c251709{width:8px;height:8px;}.c251776{width:12px;height:12px;}.c251627{background-image:url('../images/remote/photo-1619566636858-adf3ef46400b-23c59bec1407.webp');}.c251967{width:17px;height:17px;}.c251998{width:17px;height:17px;}.c252029{width:17px;height:17px;}.c252060{width:17px;height:17px;}.c252457{width:16px;height:16px;}.c252561{width:16px;height:16px;}.c252610{width:16px;height:16px;}.c266035{color:black;}.c282989{color:black;}

/* Page / Category / Article */
.hn-page {
  background:
    radial-gradient(circle at top left, rgba(143,208,127,0.10), transparent 28%),
    linear-gradient(180deg, #f5f7ef 0%, #edf2e7 100%);
  min-height: 100vh;
}

.hn-page-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 90px;
  background:
    linear-gradient(135deg, rgba(17,43,13,0.94), rgba(48,95,39,0.84)),
    linear-gradient(180deg, #10220f 0%, #24481d 100%);
}

.hn-page-hero.has-banner {
  min-height: 420px;
}

.hn-page-hero-bg,
.hn-page-hero-overlay {
  position: absolute;
  inset: 0;
}

.hn-page-hero-bg {
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hn-page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(8,18,7,0.50) 0%, rgba(12,34,10,0.74) 100%),
    radial-gradient(circle at 20% 20%, rgba(143,208,127,0.16), transparent 28%);
}

.hn-page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 120px;
}

.hn-page-hero .section-label,
.hn-page-title,
.hn-page-lead,
.hn-article-meta {
  color: #fff;
}

.hn-page-title {
  max-width: 900px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hn-page-lead {
  max-width: 760px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.84);
}

.hn-page-section {
  padding: 0 0 100px;
}

.hn-page-content-wrap {
  padding: 0 120px;
  margin-top: -42px;
}

.hn-page-card {
  position: relative;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(30,77,23,0.10);
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 24px 70px rgba(28,52,21,0.10);
  backdrop-filter: blur(14px);
}

.hn-richtext {
  color: #32472f;
  font-size: 16px;
  line-height: 1.9;
}

.hn-richtext h1,
.hn-richtext h2,
.hn-richtext h3,
.hn-richtext h4,
.hn-richtext h5,
.hn-richtext h6 {
  font-family: 'Outfit', sans-serif;
  color: #183f12;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 1.4em 0 0.55em;
}

.hn-richtext h2 { font-size: clamp(28px, 3vw, 40px); }
.hn-richtext h3 { font-size: clamp(22px, 2.4vw, 30px); }
.hn-richtext p,
.hn-richtext ul,
.hn-richtext ol,
.hn-richtext blockquote,
.hn-richtext table {
  margin-bottom: 1.15em;
}

.hn-richtext a {
  color: #2d7a23;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hn-richtext img {
  border-radius: 18px;
  margin: 24px auto;
  box-shadow: 0 20px 44px rgba(30,77,23,0.12);
}

.hn-richtext blockquote {
  border-left: 4px solid #5fb550;
  background: rgba(95,181,80,0.08);
  border-radius: 0 16px 16px 0;
  padding: 18px 22px;
  color: #2f4630;
}

.hn-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 0 120px;
}

.hn-list-card {
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(30,77,23,0.10);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(28,52,21,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hn-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(28,52,21,0.14);
  border-color: rgba(61,153,48,0.22);
}

.hn-list-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #dce9d6, #c7d8bf);
}

.hn-list-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hn-list-card:hover .hn-list-card-media img {
  transform: scale(1.04);
}

.hn-list-card-body {
  padding: 26px 26px 28px;
}

.hn-list-meta {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7f67;
}

.hn-list-card h2 {
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.12;
}

.hn-list-card h2 a {
  color: #183f12;
  text-decoration: none;
}

.hn-list-card p {
  color: #586b55;
  line-height: 1.8;
}

.hn-list-link {
  margin-top: 18px;
}

.hn-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 42px 120px 0;
}

.hn-page-btn,
.hn-page-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hn-page-btn {
  background: rgba(255,255,255,0.92);
  color: #244c1c;
  border: 1px solid rgba(30,77,23,0.12);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hn-page-btn:hover {
  transform: translateY(-2px);
  background: #3d9930;
  color: #fff;
  box-shadow: 0 12px 26px rgba(61,153,48,0.24);
}

.hn-page-btn.is-active {
  background: linear-gradient(135deg, #3d9930, #5fb550);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(61,153,48,0.26);
}

.hn-page-gap {
  color: #6b7f67;
}

.hn-empty {
  padding: 0 120px;
}

.hn-empty p {
  padding: 48px 32px;
  background: rgba(255,255,255,0.86);
  border-radius: 24px;
  text-align: center;
  color: #5a6d56;
  border: 1px solid rgba(30,77,23,0.10);
}

.hn-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 0 120px;
  margin-top: -42px;
  align-items: start;
}

.hn-article-main {
  min-width: 0;
}

.hn-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
}

.hn-article-cover {
  margin: -6px 0 30px;
}

.hn-article-cover img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(28,52,21,0.14);
}

.hn-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hn-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(95,181,80,0.12);
  border: 1px solid rgba(95,181,80,0.18);
  color: #2d7a23;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hn-tag:hover {
  background: #3d9930;
  color: #fff;
  transform: translateY(-1px);
}

.hn-article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(30,77,23,0.10);
}

.hn-article-nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 118px;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(232,240,228,0.88), rgba(221,233,214,0.72));
  color: #244c1c;
  text-decoration: none;
  border: 1px solid rgba(30,77,23,0.08);
}

.hn-article-nav-item span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b7657;
}

.hn-article-nav-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  line-height: 1.25;
  color: #183f12;
}

.hn-article-nav-next {
  text-align: right;
  align-items: flex-end;
}

.hn-article-side {
  position: sticky;
  top: 100px;
}

.hn-side-card {
  margin-bottom: 20px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(30,77,23,0.10);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 52px rgba(28,52,21,0.08);
}

.hn-side-card h3 {
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  color: #183f12;
}

.hn-side-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hn-side-list a {
  color: #32472f;
  text-decoration: none;
  line-height: 1.6;
}

.hn-side-list a:hover {
  color: #2d7a23;
}

.hn-comments {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(30,77,23,0.10);
}

.hn-comments h3,
.hn-comment-form-wrap h4 {
  font-family: 'Outfit', sans-serif;
  color: #183f12;
}

.hn-comments h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.hn-comment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hn-comment-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(245,248,240,0.92);
  border: 1px solid rgba(30,77,23,0.08);
}

.hn-comment-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #688063;
}

.hn-comment-head a {
  color: #2d7a23;
  text-decoration: none;
}

.hn-comment-head strong {
  margin-left: 8px;
  color: #183f12;
}

.hn-comment-body {
  color: #32472f;
  line-height: 1.8;
  white-space: pre-wrap;
}

.hn-comment-reply {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2d7a23;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.hn-comment-form-wrap {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(234,242,230,0.94), rgba(244,248,240,0.94));
  border: 1px solid rgba(30,77,23,0.08);
}

.hn-comment-form {
  display: grid;
  gap: 16px;
}

.hn-comment-form input[type="text"],
.hn-comment-form input[type="email"],
.hn-comment-form textarea {
  width: 100%;
  border: 1.5px solid rgba(30,77,23,0.14);
  background: rgba(255,255,255,0.92);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1c1917;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hn-comment-form input:focus,
.hn-comment-form textarea:focus {
  border-color: #5fb550;
  box-shadow: 0 0 0 4px rgba(95,181,80,0.14);
  background: #fff;
}

.hn-comment-form textarea {
  min-height: 160px;
  resize: vertical;
}

.hn-captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hn-captcha-row img {
  width: 120px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(30,77,23,0.10);
  cursor: pointer;
  object-fit: cover;
}

.hn-reply-box,
#form-message {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.hn-reply-box {
  background: rgba(95,181,80,0.10);
  color: #24611c;
}

#form-message.hidden,
.hn-reply-box.hidden {
  display: none;
}

#form-message.success {
  background: rgba(224,242,216,0.82);
  border: 1px solid rgba(95,181,80,0.32);
  color: #24611c;
}

#form-message.error {
  background: rgba(254,242,242,0.92);
  border: 1px solid rgba(248,113,113,0.34);
  color: #b91c1c;
}

@media (max-width: 1439px) {
  .hn-page-hero-inner,
  .hn-page-content-wrap,
  .hn-list-grid,
  .hn-pagination,
  .hn-empty,
  .hn-article-layout {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1023px) {
  .hn-page-hero {
    padding: 156px 0 72px;
  }

  .hn-page-hero-inner,
  .hn-page-content-wrap,
  .hn-list-grid,
  .hn-pagination,
  .hn-empty,
  .hn-article-layout {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hn-page-card {
    padding: 32px 26px;
  }

  .hn-list-grid,
  .hn-article-layout {
    grid-template-columns: 1fr;
  }

  .hn-article-side {
    position: static;
  }
}

@media (max-width: 767px) {
  .hn-page-hero {
    padding: 136px 0 56px;
  }

  .hn-page-hero-inner,
  .hn-page-content-wrap,
  .hn-list-grid,
  .hn-pagination,
  .hn-empty,
  .hn-article-layout {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hn-page-content-wrap,
  .hn-article-layout {
    margin-top: -26px;
  }

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

  .hn-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hn-list-card h2 {
    font-size: 24px;
  }

  .hn-article-nav {
    grid-template-columns: 1fr;
  }

  .hn-article-nav-next {
    text-align: left;
    align-items: flex-start;
  }

  .hn-comment-head,
  .hn-captcha-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
