/* ═══════════════════════════════════════
   ทีมทรัพย์บวงสรวง — Main Stylesheet
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Thai:wght@600;700;800;900&family=Sarabun:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #c9973a;
  --gold2: #e6b84a;
  --gold3: #f5dfa0;
  --gold-pale: #fdf6e3;
  --red: #8b1a1a;
  --red2: #a82020;
  --dark: #1a0f05;
  --dark2: #2d1b09;
  --cream: #faf3e0;
  --cream2: #fdf8ef;
  --text: #2d1b09;
  --muted: #7a6040;
  --border: #e8d8b0;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(26,15,5,.10);
  --shadow-h: 0 10px 36px rgba(26,15,5,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sarabun', sans-serif;
  background: var(--cream2);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ══ TOPBAR ══ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 8px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold2); font-weight: 700; }
.topbar strong { color: var(--gold2); }

/* ══ HEADER ══ */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.7rem;
  filter: drop-shadow(0 0 6px rgba(201,151,58,.6));
}
.logo-text {
  font-family: 'Noto Serif Thai', serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold2);
  line-height: 1.2;
}
.logo-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-menu a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
  background: rgba(201,151,58,.15);
  color: var(--gold2);
}

.nav-right {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn-call, .btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Sarabun', sans-serif;
  transition: all .22s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-call { background: var(--red); color: #fff; }
.btn-call:hover { background: var(--red2); transform: translateY(-1px); }
.btn-line { background: #06c755; color: #fff; }
.btn-line:hover { background: #05b04a; transform: translateY(-1px); }

/* ══ HAMBURGER ══ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold2);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  background: var(--dark2);
  border-top: 1px solid rgba(201,151,58,.3);
  padding: 12px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.82);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s;
}
.mobile-nav a:hover { background: rgba(201,151,58,.15); color: var(--gold2); }
.mobile-nav .mob-btns {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* ══ SECTION WRAPPER ══ */
.sec { padding: 64px 24px; }
.sec-inner { max-width: 1160px; margin: 0 auto; }
.sec-alt { background: var(--cream); }
.sec-dark { background: var(--dark2); }

.sec-head { text-align: center; margin-bottom: 48px; }
.sec-tag {
  display: inline-block;
  background: rgba(201,151,58,.15);
  border: 1px solid rgba(201,151,58,.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.sec-head h2 {
  font-family: 'Noto Serif Thai', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.sec-head h2 em { font-style: normal; color: var(--gold); }
.sec-head p { font-size: 15px; color: var(--muted); max-width: 580px; margin: 0 auto; }
.sec-line { width: 56px; height: 3px; background: linear-gradient(to right, var(--gold), var(--red)); border-radius: 2px; margin: 14px auto 0; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 28px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: 'Sarabun', sans-serif;
  cursor: pointer;
  transition: all .22s;
  border: none;
  text-decoration: none;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--dark); box-shadow: 0 4px 16px rgba(201,151,58,.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,151,58,.45); }
.btn-red { background: linear-gradient(135deg, var(--red), var(--red2)); color: #fff; box-shadow: 0 4px 16px rgba(139,26,26,.3); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,26,.4); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-outline-w { background: transparent; border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-w:hover { background: rgba(255,255,255,.1); border-color: var(--gold2); color: var(--gold2); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-green { background: #06c755; color: #fff; box-shadow: 0 4px 14px rgba(6,199,85,.3); }
.btn-green:hover { background: #05b04a; transform: translateY(-2px); }

/* ══ HERO ══ */
.hero {
  background: linear-gradient(160deg, #0d0704 0%, #1a0f05 40%, #2a1508 70%, #1a0f05 100%);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,151,58,.18) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(139,26,26,.15) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9973a' fill-opacity='0.03'%3E%3Cpath d='M40 0l3.5 7H47l-3 5.5L46 19l-6-3.2L34 19l2-6.5-3-5.5h3.5z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,58,.15);
  border: 1px solid rgba(201,151,58,.35);
  color: var(--gold2);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 24px;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.hero h1 {
  font-family: 'Noto Serif Thai', serif;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero h1 .gold { color: var(--gold2); }
.hero h1 .red { color: #e06060; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.hero-places {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.place-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,151,58,.3);
  color: var(--gold3);
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201,151,58,.2);
  padding-top: 28px;
}
.trust-item { text-align: center; }
.trust-num {
  font-family: 'Noto Serif Thai', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-lbl { font-size: 12.5px; color: rgba(255,255,255,.6); }

/* ══ INTRO ══ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.intro-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 420px;
}
.intro-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--border);
}
.intro-img::after {
  display: none;
}
.intro-text h2 {
  font-family: 'Noto Serif Thai', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.35;
}
.intro-text p { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 14px; }
.intro-text p strong { color: var(--red); }
.intro-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 28px;
}
.intro-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.intro-checks li::before {
  content: '✦';
  color: var(--gold);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ══ SERVICE CARDS ══ */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--red));
  opacity: 0;
  transition: opacity .3s;
}
.srv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); border-color: var(--gold); }
.srv-card:hover::before { opacity: 1; }
.srv-card .icon { font-size: 2.4rem; margin-bottom: 14px; }
.srv-card h3 {
  font-family: 'Noto Serif Thai', serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.srv-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ══ HIGHLIGHTS ══ */
.hl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.hl-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,151,58,.25);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: all .2s;
}
.hl-card:hover { background: rgba(201,151,58,.1); border-color: var(--gold); }
.hl-card .icon { font-size: 2rem; margin-bottom: 10px; }
.hl-card h4 {
  font-family: 'Noto Serif Thai', serif;
  font-size: .95rem;
  font-weight: 800;
  color: var(--gold2);
  margin-bottom: 6px;
}
.hl-card p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ══ GALLERY ══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,5,.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gallery-item:hover .overlay { opacity: 1; }
.overlay-text { color: #fff; font-size: 13px; font-weight: 600; }

/* ══ LIGHTBOX ══ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(201,151,58,.4); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: 16px;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 13px;
  background: rgba(0,0,0,.4);
  padding: 6px 16px;
  border-radius: 20px;
}

/* ══ ARTICLE CARDS ══ */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.art-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.art-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); border-color: var(--gold); }
.art-card-img {
  position: relative;
  height: 200px;
  background: var(--border);
  overflow: hidden;
}
.art-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.art-card:hover .art-card-img img { transform: scale(1.05); }
.art-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
}
.art-card-body { padding: 18px 18px 14px; flex: 1; display: flex; flex-direction: column; }
.art-card-body h3 {
  font-family: 'Noto Serif Thai', serif;
  font-size: .97rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 8px;
}
.art-card-body p { font-size: 13.5px; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 14px; }
.art-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  transition: gap .2s;
}
.art-card:hover .art-read { gap: 10px; }

/* ══ REVIEWS ══ */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.rev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.rev-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 18px;
  font-size: 4rem;
  color: var(--gold3);
  line-height: 1;
  font-family: serif;
}
.rev-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rev-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rev-name { font-weight: 700; color: var(--dark); font-size: 14.5px; }
.rev-from { font-size: 12px; color: var(--muted); }
.rev-stars { color: #f5c842; font-size: 14px; margin-bottom: 10px; }
.rev-text { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ══ FAQ ══ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--gold); }
.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-q:hover { background: var(--gold-pale); }
.faq-q .q-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-q span { font-size: 14.5px; font-weight: 700; color: var(--dark); flex: 1; line-height: 1.4; }
.faq-q .arr { font-size: 11px; color: var(--muted); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .arr { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 20px 18px 60px; font-size: 14px; color: var(--muted); line-height: 1.85; }

/* ══ CTA BAND ══ */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, #6b1010 50%, var(--dark2) 100%);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,151,58,.2) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Noto Serif Thai', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-band p { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 28px; max-width: 560px; margin: 0 auto 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══ PRICE TABLE ══ */
.price-section { background: var(--gold-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin: 28px 0; }
.price-section h3 {
  font-family: 'Noto Serif Thai', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
  text-align: center;
}
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.price-table th {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  color: var(--gold2);
  padding: 12px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(201,151,58,.06); }
.price-table .price-val { font-family: 'Noto Serif Thai', serif; font-weight: 800; color: var(--red); font-size: 1.05rem; }
.price-table .pkg-xl { background: rgba(201,151,58,.08); }
.price-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align: center; font-style: italic; }

/* ══ ARTICLE PAGE ══ */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 48px 24px; }
.article-wrap h1 {
  font-family: 'Noto Serif Thai', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.article-meta { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 13px; margin-bottom: 24px; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.article-img img { width: 100%; max-height: 420px; object-fit: cover; background: var(--border); }
.article-body h2 { font-family: 'Noto Serif Thai', serif; font-size: 1.25rem; font-weight: 800; color: var(--dark); margin: 32px 0 12px; }
.article-body h3 { font-family: 'Noto Serif Thai', serif; font-size: 1.05rem; font-weight: 700; color: var(--red); margin: 24px 0 8px; }
.article-body p { font-size: 15px; color: var(--text); line-height: 1.9; margin-bottom: 14px; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 14px; }
.article-body li { font-size: 15px; color: var(--text); line-height: 1.85; margin-bottom: 6px; }
.article-body strong { color: var(--dark); }
.article-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.8;
}
.art-img-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 20px 0; }
.art-img-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; background: var(--border); }

/* ══ BREADCRUMB ══ */
.breadcrumb {
  padding: 12px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  max-width: 100%;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ══ CONTACT ══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h3 {
  font-family: 'Noto Serif Thai', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-text strong { display: block; font-weight: 700; color: var(--dark); font-size: 14px; }
.contact-text a { color: var(--gold); font-weight: 600; font-size: 14px; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.contact-form h3 { font-family: 'Noto Serif Thai', serif; font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Sarabun', sans-serif;
  color: var(--text);
  background: var(--cream2);
  transition: border-color .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row textarea { min-height: 100px; resize: vertical; }

/* ══ FLOATING BUTTONS ══ */
.float-btns {
  position: fixed;
  bottom: 24px; right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 300;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: all .22s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.float-btn:hover { transform: scale(1.12); }
.float-call2 { background: var(--red); color: #fff; }
.float-line2 { background: #06c755; color: #fff; }
.float-top { background: var(--dark2); color: var(--gold2); opacity: 0; pointer-events: none; transition: opacity .3s; }
.float-top.show { opacity: 1; pointer-events: all; }

/* ══ FOOTER ══ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 56px 24px 28px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.fg-brand h3 { font-family: 'Noto Serif Thai', serif; font-size: 1.1rem; font-weight: 800; color: var(--gold2); margin-bottom: 12px; }
.fg-brand p { font-size: 13.5px; line-height: 1.85; }
.fg-brand .kw { color: var(--gold2); font-weight: 600; }
.footer-col h4 { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 14px; border-bottom: 1px solid rgba(201,151,58,.2); padding-bottom: 8px; }
.footer-col a { display: block; font-size: 13px; margin-bottom: 8px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--gold2); }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; text-align: center; font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-kw { font-size: 11px; color: rgba(255,255,255,.2); margin-top: 8px; line-height: 2; }

/* ══ ANIMATIONS ══ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ══ */
@media(max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .nav-menu, .nav-right { display: none; }
  .hamburger { display: flex; }
  .intro-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; padding: 60px 20px 56px; }
  .art-img-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media(max-width: 480px) {
  .sec { padding: 48px 18px; }
  .price-table th, .price-table td { padding: 9px 8px; font-size: 12.5px; }
  .art-img-row { grid-template-columns: 1fr; }
}
