:root {
    --primary: #5B8C5A; /* Hijau lembut */
    --secondary: #8DB580; /* Sage muda */
    --accent: #D4B483; /* Beige suam */
    --light: #F9F7F3; /* Putih krim */
    --text: #4A4A4A; /* Hitam lembut */
    --highlight: #9E6D5E; /* Merah tanah */
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
  }

  /* Header */
  header {
    background: linear-gradient(rgba(249,247,243,0.9), rgba(249,247,243,0.9)), 
                url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  header h1 {
    font-family: 'Noto Serif', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
  }

  header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text);
  }

  /* Navigation */
  nav {
    background-color: white;
    padding: 1.2rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo {
    font-family: 'Noto Serif', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile Menu */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-links {
    display: flex;
    gap: 1.5rem;
  }

  .nav-links a {
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
  }

  .nav-links a:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
  }

  /* Main Content */
  .container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
  }

  /* Story Section */
  .story {
    background-color: white;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    text-align: center;
  }

  .story h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: 'Noto Serif', serif;
    font-weight: 500;
  }

  .story p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 1.5rem auto;
    border: 5px solid var(--light);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  }

  /* Products Section */
  .section-title {
    color: var(--primary);
    margin: 4rem 0 2rem;
    font-size: 2rem;
    font-family: 'Noto Serif', serif;
    font-weight: 500;
    text-align: center;
  }

  .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }

  .product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }

  .product-image {
    height: 180px;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
  }

  .product-content {
    padding: 1.5rem;
    text-align: center;
  }

  .product-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
  }

  .price {
    font-weight: bold;
    color: var(--highlight);
    margin: 0.8rem 0;
    font-size: 1.1rem;
  }

  .cta {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin: 0.5rem auto;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
  }

  .cta:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
  }

  /* Jobs Section */
  .jobs {
    background-color: white;
    border-radius: 8px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
  }

  .job-poster {
    background-color: var(--light);
    border-radius: 6px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid var(--accent);
  }

  .job-poster h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
  }

  .job-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    margin: 1.2rem 0;
  }

  .job-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .job-detail span:first-child {
    color: var(--accent);
    font-size: 1.2rem;
  }

  .job-description {
    margin: 1.2rem 0;
    line-height: 1.8;
  }

  .job-description ul {
    margin-left: 1.8rem;
    margin-top: 0.8rem;
  }

  .job-description li {
    margin-bottom: 0.5rem;
  }

  /* Contact Section */
  .contact {
    background-color: white;
    border-radius: 8px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    text-align: center;
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    background: var(--light);
    padding: 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .contact-item span:first-child {
    color: var(--accent);
    font-size: 1.8rem;
  }

  /* WhatsApp Float */
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    z-index: 99;
    transition: all 0.3s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
  }

  /* Footer */
  footer {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    margin-top: 3rem;
  }

  .footer-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .footer-logo {
    font-family: 'Noto Serif', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
  }

  .footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-links a:hover {
    color: var(--accent);
  }

  .copyright {
    opacity: 0.8;
    margin-top: 1.5rem;
    line-height: 1.6;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
    
    .nav-links {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: white;
      flex-direction: column;
      align-items: center;
      padding: 1.5rem 0;
      clip-path: circle(0px at 90% -10%);
      transition: all 0.5s ease-out;
      pointer-events: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
      clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
    }
    
    .nav-links a {
      width: 80%;
      text-align: center;
      margin: 0.5rem 0;
      padding: 0.8rem;
    }
    
    header h1 {
      font-size: 2.2rem;
    }
    
    header p {
      font-size: 1rem;
    }
    
    .container {
      padding: 0 1rem;
    }
    
    .story, .jobs, .contact {
      padding: 2rem 1.5rem;
    }
  }