body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #eef6ef;
  color: #1a2e22;
}

.hdr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(14px, 4vw, 36px);
  background: rgba(238, 246, 239, 0.95);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 2px solid #8fbc8f;
}

.logo { font-weight: 800; font-size: 1.2rem; color: #2d5a3d; flex: 1; }

#tg {
  display: none;
  background: #2d5a3d;
  color: #fff;
  border: 0;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.nv { display: flex; gap: 16px; flex-wrap: wrap; }
.nv a { color: #1a2e22; font-weight: 700; text-decoration: none; font-size: 0.9rem; }

@media (max-width: 700px) {
  #tg { display: inline-block; }
  .nv { width: 100%; flex-direction: column; display: none; padding: 8px 0; }
  .nv.open { display: flex; }
}

.zig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 52vh;
}

.zig img {
  width: 100%;
  height: min(52vh, 440px);
  object-fit: cover;
  display: block;
  background: #9cb89c;
}

.zig-left img { border-radius: 0 40% 0 0; }
.zig-right img { border-radius: 40% 0 0 0; order: 2; }

.zig-right .txt { order: 1; }

.txt {
  padding: clamp(24px, 5vw, 48px);
  max-width: 520px;
  margin: 0 auto;
}

.txt h1 { font-size: clamp(1.55rem, 3.2vw, 2.1rem); line-height: 1.2; margin: 0 0 12px; }
.txt h2 { font-size: 1.35rem; margin: 0 0 12px; }
.txt p { margin: 0; line-height: 1.75; color: #2d4634; }

@media (max-width: 860px) {
  .zig { grid-template-columns: 1fr; min-height: auto; }
  .zig-right img { order: 0; border-radius: 0; }
  .zig-right .txt { order: 0; }
  .zig img { border-radius: 0; height: 280px; }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: clamp(24px, 4vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  border: 2px solid rgba(45, 90, 61, 0.18);
}

@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem clamp(16px, 4vw, 28px) 2.5rem;
  line-height: 1.75;
}

.foot {
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.87rem;
  color: #4a6b54;
}

/* บล็อกนโยบายร่วม: ติดต่อ / นโยบายความเป็นส่วนตัว / ข้อกำหนด */
.policy-std-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(14px, 4vw, 32px);
  font-size: 0.93rem;
  line-height: 1.75;
}
.policy-std-wrap h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  margin: 0 0 0.75rem;
}
.policy-std-wrap p { margin: 0 0 0.75rem; }
.policy-std-wrap p:last-child { margin-bottom: 0; }
.foot-pol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.foot-pol a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}