* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3436;
  background: #f0f5f0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #2d6a4f;
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.logo {
  color: #fff;
  font-size: 1.4rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #d8f3dc;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.hero {
  background: linear-gradient(135deg, #2d6a4f, #40916c, #52b788);
  color: #fff;
  padding: 160px 0 100px;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h2 span {
  color: #d8f3dc;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #2d6a4f;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.about {
  padding: 80px 0;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #2d6a4f;
}

.about p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #555;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.stat {
  font-size: 0.95rem;
  color: #666;
}

.stat span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #2d6a4f;
}

.harvest {
  padding: 80px 0;
  background: #f0f5f0;
}

.harvest h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #2d6a4f;
}

.week-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.week-card h3 {
  color: #2d6a4f;
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0f0e0;
}

.day-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: baseline;
}

.day-row:last-child {
  border-bottom: none;
}

.day-label {
  font-weight: 700;
  color: #40916c;
  min-width: 60px;
  font-size: 0.9rem;
}

.day-items {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

.guides {
  padding: 80px 0;
  background: #fff;
}

.guides h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #2d6a4f;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card-link {
  text-decoration: none;
  display: block;
}

.card {
  background: #f0f5f0;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #2d6a4f;
}

.card p {
  font-size: 0.9rem;
  color: #555;
}

.contact {
  padding: 80px 0;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #2d6a4f;
}

.contact p {
  margin-bottom: 32px;
  color: #555;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  border-color: #52b788;
}

.map-container {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.location-address {
  background: #f0f5f0;
  padding: 16px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 0.95rem;
  color: #555;
}

.location-address strong {
  color: #2d6a4f;
}

footer {
  background: #2d6a4f;
  color: #d8f3dc;
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  header .container {
    flex-direction: column;
    gap: 12px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}