:root {
  --green-deep: #2f4f3e;
  --green: #5c8a6b;
  --green-light: #a9cba0;
  --cream: #faf6ee;
  --sand: #f1ead9;
  --text: #2e2e2a;
  --text-soft: #5a5a52;
  --radius: 18px;
}

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

body {
  font-family: "Helvetica Neue", "Noto Sans SC", "PingFang SC", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(160deg, #eef5e9 0%, #d9ead2 45%, #c3dcb8 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6%;
  z-index: 2;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 1px;
}
.logo span { color: var(--green); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--green-deep);
  font-weight: 500;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 0.6; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lang-btn {
  border: 1.5px solid var(--green-deep);
  background: transparent;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-btn:hover {
  background: var(--green-deep);
  color: #fff;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6%;
  max-width: 720px;
  z-index: 2;
}

.hero-kicker {
  color: var(--green);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--green-deep);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 520px;
}

.btn {
  display: inline-block;
  background: var(--green-deep);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
  transition: transform .2s, background .2s;
}
.btn:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.hero-leaf {
  position: absolute;
  font-size: 7rem;
  opacity: 0.25;
  z-index: 1;
}
.leaf-1 { top: 10%; right: 8%; transform: rotate(15deg); }
.leaf-2 { bottom: -5%; right: 22%; font-size: 10rem; opacity: 0.18; transform: rotate(-10deg); }

/* ---------- SECTIONS ---------- */
.section { padding: 110px 6%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green-deep);
  margin-bottom: 26px;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 760px;
  margin-bottom: 56px;
}

/* philosophy cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 6px 24px rgba(47,79,62,0.06);
}
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { color: var(--green-deep); margin-bottom: 10px; font-size: 1.1rem; }
.value-card p { color: var(--text-soft); font-size: 0.96rem; }

/* scope */
.scope { background: var(--sand); }
.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.scope-card {
  background: var(--cream);
  border: 1px solid var(--green-light);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.scope-card h3 { color: var(--green-deep); margin-bottom: 12px; font-size: 1.1rem; }
.scope-card p { color: var(--text-soft); font-size: 0.96rem; }
.scope-icon { font-size: 1.8rem; margin-bottom: 10px; }

.scope-card-form {
  display: flex;
  flex-direction: column;
}

.suggest-form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.suggest-form input,
.suggest-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--green-light);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  resize: vertical;
}
.suggest-form input:focus,
.suggest-form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.btn-form {
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  opacity: 0.75;
  margin-top: -4px;
}

/* two col layout */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1.2fr; }
.two-col.reverse > div:first-child { order: 2; }
.two-col.reverse > div:last-child { order: 1; }

@media (max-width: 760px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse > div:first-child,
  .two-col.reverse > div:last-child { order: initial; }
}

/* hours */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.hours-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--green-light);
  font-size: 1.05rem;
  color: var(--text);
}
.hours-table td:first-child { color: var(--green-deep); font-weight: 600; }
.hours-table td:last-child { text-align: right; color: var(--text-soft); }

.hours-illustration {
  font-size: 6rem;
  text-align: center;
  opacity: 0.85;
}

/* location */
.location { background: var(--sand); }
.map-embed {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(47,79,62,0.06);
}
.map-embed iframe { display: block; }
.address-text {
  color: var(--text-soft);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* footer */
.footer {
  text-align: center;
  padding: 36px 6%;
  background: var(--green-deep);
  color: #d9ead2;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-leaf { display: none; }
  .section { padding: 70px 6%; }
}
