body {
  margin: 0;
  background: #0b0a0c;
  color: #f3e8d8;
  font-family: "Segoe UI", system-ui, sans-serif;
  line-height: 1.65;
}

.shine {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(212, 175, 55, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(180, 120, 200, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

.bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px clamp(14px, 4vw, 32px);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 10, 12, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.brand {
  flex: 1;
  font-size: 1.12rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
}

#bt {
  display: none;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  padding: 8px 14px;
  cursor: pointer;
  font-family: inherit;
}

.lnk { display: flex; gap: 22px; flex-wrap: wrap; }
.lnk a { color: #e8dfc8; text-decoration: none; font-size: 0.85rem; font-weight: 600; }

@media (max-width: 760px) {
  #bt { display: inline-block; }
  .lnk { width: 100%; flex-direction: column; display: none; }
  .lnk.open { display: flex; }
}

.splash {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 58vh;
  align-items: center;
}

.angled {
  padding: clamp(20px, 5vw, 48px);
  transform: skewY(-6deg);
}

.angled img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  transform: skewY(6deg);
  border-radius: 120px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.45);
  background: #222;
}

.copy {
  padding: clamp(22px, 5vw, 48px);
  max-width: 480px;
}

.copy h1 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.22;
  font-weight: 500;
  margin: 0 0 16px;
}

.muted {
  margin: 0;
  color: rgba(243, 232, 216, 0.7);
}

@media (max-width: 860px) {
  .splash { grid-template-columns: 1fr; min-height: auto; }
  .angled { transform: none; padding-bottom: 0; }
  .angled img { transform: none; border-radius: 24px; aspect-ratio: auto; height: 320px; }
}

.strip-gold {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: linear-gradient(90deg, #d4af37, #8a6d2e, #d4af37);
  margin: 0 clamp(0px, 2vw, 24px);
  border-radius: 4px;
  overflow: hidden;
}

.strip-gold figure {
  margin: 0;
  background: #121014;
}

.strip-gold img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.strip-gold figcaption {
  padding: 10px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d4af37;
}

@media (max-width: 720px) {
  .strip-gold { grid-template-columns: 1fr; }
}

.panel {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: clamp(36px, 6vw, 56px) auto 0;
  padding: 0 clamp(16px, 4vw, 32px);
}

.panel h2 { font-size: 1.2rem; font-weight: 500; margin: 0 0 14px; }
.panel p { margin: 0; color: rgba(243, 232, 216, 0.78); font-size: 0.93rem; }

.inset {
  width: 100%;
  margin-top: 20px;
  border-radius: 12px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: block;
  background: #333;
}

.dim {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.foot {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.8rem;
  color: rgba(243, 232, 216, 0.45);
}

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