/* ==========================================================================
   vision-mission.css — สไตล์เฉพาะหน้า "วิสัยทัศน์ & พันธกิจ" (vision-mission.html)
   ใช้ CSS variables ร่วมกับ css/styles.css กลาง (ไม่แก้ไฟล์กลาง)
   ========================================================================== */

.vm-2col {
  display: grid;
  align-items: center;
}
.vm-2col--vision { grid-template-columns: 1.1fr .9fr; gap: clamp(36px,5.5vw,72px); }
.vm-2col--mission { grid-template-columns: 300px 1fr; gap: clamp(32px,5vw,56px); align-items: start; }
.vm-2col--philosophy { grid-template-columns: 1fr 1.05fr; gap: clamp(32px,5vw,64px); }
.vm-2col--identity { grid-template-columns: 1.05fr 1fr; gap: clamp(32px,5vw,64px); }

.vm-heading {
  margin: 16px 0 0;
  font-size: clamp(26px,3.4vw,36px);
  line-height: 1.38;
  font-weight: 800;
  color: #29251F;
  text-wrap: balance;
}
.vm-rule { margin-top: 22px; width: 56px; height: 3px; background: #E5A910; border-radius: 2px; }
.vm-body {
  margin: 20px 0 0;
  font-size: clamp(15px,1.5vw,16px);
  line-height: 1.95;
  color: #6B6355;
  text-wrap: pretty;
}

.vm-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(64,52,20,.12);
  background: #EAE3D4;
}
.vm-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vm-photo--45 { aspect-ratio: 4/5; }
.vm-photo--43 { aspect-ratio: 4/3; }
.vm-photo__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #8A7A55;
  background: repeating-linear-gradient(135deg, #EFE7D3, #EFE7D3 10px, #E8DEC5 10px, #E8DEC5 20px);
}

/* พันธกิจ: ไทม์ไลน์แนวตั้ง 5 ก้าว */
.vm-mission-head h2 { margin: 12px 0 0; font-size: clamp(26px,3.2vw,32px); line-height: 1.35; font-weight: 800; color: #29251F; }
.vm-mission-head p { margin: 14px 0 0; font-size: 14.5px; line-height: 1.8; color: #756E64; }

.vm-mission-list { list-style: none; margin: 0; padding: 0; display: grid; }
.vm-mission-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
}
.vm-mission-num-col { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.vm-mission-num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #E5A910;
  color: #29251F;
  font-weight: 800;
  font-size: 18px;
}
.vm-mission-connector { flex: 1; width: 2px; background: #E8DFC9; }
.vm-mission-body { padding-bottom: 28px; }
.vm-mission-row:last-child .vm-mission-body { padding-bottom: 0; }
.vm-mission-body h3 { margin: 8px 0 6px; font-size: 18px; font-weight: 700; color: #29251F; }
.vm-mission-body p { margin: 0; font-size: 14.5px; line-height: 1.8; color: #756E64; }

/* ปรัชญา / อัตลักษณ์: 3 บรรทัดใหญ่ */
.vm-lines-big { margin-top: 22px; display: grid; gap: 4px; }
.vm-lines-big span { font-size: clamp(38px,5vw,58px); font-weight: 800; line-height: 1.25; }
.vm-lines-mid { margin-top: 22px; display: grid; gap: 2px; }
.vm-lines-mid span { font-size: clamp(34px,4.6vw,52px); font-weight: 800; line-height: 1.3; }
.vm-c-ink { color: #29251F; }
.vm-c-gold { color: #E5A910; }
.vm-c-grey { color: #756E64; }

.vm-desc { margin: 20px 0 0; max-width: 460px; font-size: clamp(15px,1.6vw,16.5px); line-height: 1.9; color: #756E64; text-wrap: pretty; }

@media (max-width: 900px) {
  .vm-2col--vision,
  .vm-2col--mission,
  .vm-2col--philosophy,
  .vm-2col--identity { grid-template-columns: 1fr !important; }
  .vm-mission-row { grid-template-columns: 44px 1fr; }
}
