body {
  margin: 0;
  background: #eceff4;
  color: #1c2433;
  font-family: system-ui, sans-serif;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 80px rgba(28, 36, 51, 0.08);
  min-height: 100vh;
}

.hdr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(14px, 4vw, 28px);
  border-bottom: 1px solid #dde3ed;
}

.hdr strong { flex: 1; font-size: 1.1rem; letter-spacing: 0.02em; }

#mb {
  display: none;
  border: 1px solid #1c2433;
  background: transparent;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 700;
}

.nv { display: flex; gap: 18px; flex-wrap: wrap; }
.nv a { color: #1c2433; text-decoration: none; font-weight: 700; font-size: 0.88rem; }

@media (max-width: 680px) {
  #mb { display: inline-block; }
  .nv { width: 100%; flex-direction: column; display: none; padding-bottom: 8px; }
  .nv.open { display: flex; }
}

.featured {
  position: relative;
  min-height: 56vh;
}

.hero {
  width: 100%;
  height: min(56vh, 480px);
  object-fit: cover;
  display: block;
  background: #aab;
}

.floating {
  position: absolute;
  left: clamp(14px, 4vw, 28px);
  bottom: clamp(14px, 4vw, 28px);
  right: clamp(14px, 4vw, 120px);
  background: rgba(255,255,255,0.94);
  padding: clamp(14px, 3vw, 22px);
  border-radius: 12px;
  max-width: 520px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.floating h1 { margin: 0 0 10px; font-size: clamp(1.2rem, 2.8vw, 1.65rem); line-height: 1.22; }

.floating p { margin: 0; line-height: 1.65; color: #394355; font-size: 0.92rem; }

@media (max-width: 620px) {
  .floating { position: relative; margin: -40px clamp(14px, 4vw, 28px) 12px; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.scroll-wrap {
  padding: clamp(22px, 4vw, 36px) 0;
}

.hscroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px clamp(14px, 4vw, 28px);
  -webkit-overflow-scrolling: touch;
}

.hscroll figure {
  flex: 0 0 min(78vw, 280px);
  scroll-snap-align: start;
  margin: 0;
}

.hscroll img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  background: #ccd;
}

.hscroll figcaption {
  padding-top: 8px;
  font-weight: 700;
  font-size: 0.88rem;
}

.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 0 clamp(14px, 4vw, 28px) 2rem;
}

.dual h2 { margin-top: 0; font-size: 1.18rem; line-height: 1.3; }
.dual p { line-height: 1.75; color: #394355; margin: 0; }

.dual img {
  width: 100%;
  border-radius: 12px;
  min-height: 240px;
  object-fit: cover;
  display: block;
  background: #ccc;
}

@media (max-width: 760px) {
  .dual { grid-template-columns: 1fr; }
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 clamp(14px, 4vw, 28px) 2rem;
}

.grid2 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

@media (max-width: 600px) {
  .grid2 { grid-template-columns: 1fr; }
}

.legal {
  padding: 0 clamp(16px, 4vw, 32px) 2rem;
  line-height: 1.75;
  color: #394355;
  font-size: 0.94rem;
}

.legal h2 { font-size: 1.05rem; }

.foot {
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.85rem;
  color: #6f7a89;
}

/* บล็อกนโยบายร่วม: ติดต่อ / นโยบายความเป็นส่วนตัว / ข้อกำหนด */
.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;
}