:root {
  --forest: #07551f;
  --forest-2: #0f7131;
  --leaf: #4d8e2b;
  --gold: #c98a05;
  --gold-2: #e5a80d;
  --soil: #5c3b16;
  --paper: #fffaf0;
  --cream: #f7f1e4;
  --line: #e4d9c4;
  --ink: #17251a;
  --muted: #657264;
  --shadow: 0 16px 38px rgba(31, 46, 24, .12);
}

* { box-sizing: border-box; }
button { padding: 0; margin: 0; }

html { scroll-behavior: smooth; }

body.pakham-site {
  margin: 0;
  background: #f3efe6;
  color: var(--ink);
  font-family: "Kanit", Tahoma, "Noto Sans Thai", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.site-shell {
  width: min(100%, 1720px);
  margin: 0 auto;
  background: var(--paper);
  min-height: 100vh;
  box-shadow: 0 8px 34px rgba(0, 0, 0, .16);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 14px clamp(18px, 4vw, 86px);
  background: rgba(255, 253, 247, .95);
  border-bottom: 1px solid rgba(7, 85, 31, .13);
  backdrop-filter: blur(14px);
}

.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--forest);
  background:
    radial-gradient(circle at 70% 72%, #f0bf2a 0 18%, transparent 19%),
    linear-gradient(135deg, #f7fff0, #d9eec7);
  border: 3px solid #e2bf4f;
  box-shadow: inset 0 0 0 3px #fff8dc;
}

.brand-mark .dashicons { font-size: 32px; width: 32px; height: 32px; }
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.brand strong { display: block; color: var(--forest); font-size: 18px; line-height: 1.25; }
.brand small { display: block; color: #31593b; font-weight: 700; font-size: 13px; }
.footer-brand strong { display: block; color: #fff; font-size: 18px; line-height: 1.25; }
.footer-brand small { display: block; color: rgba(255, 255, 255, .78); font-weight: 700; font-size: 13px; }

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.5vw, 28px);
  flex-wrap: wrap;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: #1c2b1e;
  font-weight: 700;
  font-size: 14px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.main-nav a:hover::after { background: var(--forest-2); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  cursor: pointer;
}
.nav-toggle .dashicons { font-size: 22px; width: 22px; height: 22px; }

.login-link, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 10px 20px;
  color: #fff;
  background: var(--forest);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(7, 85, 31, .2);
}

.login-link { white-space: nowrap; }
.btn-primary { background: linear-gradient(180deg, #0f7a35, #07551f); }
.btn-gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); }
.btn-light { color: var(--forest); background: #fff; border: 1px solid #a8bea4; box-shadow: none; }
.btn-small { min-height: 34px; padding: 6px 14px; font-size: 13px; }
.btn.full, .full { width: 100%; }

.hero {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 44px 24px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .78), rgba(255, 250, 240, .44), rgba(255, 250, 240, .75)),
    url("../img/hero-clean.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.hero-strip {
  min-height: 170px;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .82), rgba(255, 250, 240, .48), rgba(255, 250, 240, .82)),
    url("../img/hero-strip-clean.jpg") center / cover;
}

.hero h1 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.1;
  font-weight: 900;
}

.hero p { margin: 12px auto 0; max-width: 820px; font-weight: 800; color: var(--soil); }
.leaf-label { color: var(--leaf) !important; font-size: 14px; letter-spacing: 0; }

.search-band {
  width: min(1040px, calc(100% - 32px));
  margin: -36px auto 24px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
}

.search-input {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.search-input input {
  width: 100%;
  border: 0;
  outline: 0;
}

.quick-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 86px) 8px;
}

.quick-tabs a {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 66px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
  border-radius: 8px;
  color: var(--forest);
  font-weight: 800;
}

.quick-tabs .dashicons { font-size: 28px; width: 28px; height: 28px; }

.content-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 86px);
}

.content-grid-main { align-items: start; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

.panel, .tour-card, .route-card, .news-card, .mini-card, .benefit-card {
  background: rgba(255, 253, 247, .94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(43, 56, 35, .07);
}

.panel { padding: 18px; }
.panel h2, .panel h3 { color: var(--forest); margin: 0 0 14px; line-height: 1.25; }

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-head a { color: var(--forest); font-weight: 800; }

.card-grid {
  display: grid;
  gap: 14px;
}

.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

.tour-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.tour-card-media {
  position: relative;
  overflow: hidden;
}

.tour-card img, .route-card img, .news-card img, .mini-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #9bbc94;
  border-radius: 999px;
  padding: 4px 10px;
  background: #eff8e7;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.tour-card-media .pill {
  position: absolute;
  top: 10px;
  left: 10px;
}

.image-missing-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff2cd;
  color: #8a5900;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid #e5bd58;
}

.tour-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card h3, .route-card h3, .news-card h3, .mini-card h3 { margin: 0 0 6px; color: var(--forest); line-height: 1.25; }
.tour-card p, .route-card p, .news-card p, .mini-card p { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
.tour-card p:not(.meta), .route-card p:not(.meta), .news-card p:not(.meta), .mini-card p:not(.meta) { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.meta { display: flex; align-items: center; gap: 4px; }
.rating { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.tour-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}
.tour-card-facts span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tour-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.map-img {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.route-list, .timeline { margin: 16px 0; padding: 0; list-style: none; }
.route-list li, .timeline li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.route-list strong, .timeline strong { color: var(--forest); min-width: 62px; }

.route-spotlight { display: grid; grid-template-columns: .9fr 1fr; gap: 20px; align-items: start; }
.route-spotlight-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  padding: 18px;
  color: #fff;
}
.route-spotlight-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 58, 24, .1) 30%, rgba(5, 58, 24, .92));
}
.route-spotlight-media > * { position: relative; }
.route-spotlight-media .pill { margin-bottom: auto; }
.route-spotlight-caption .post-kicker { color: #ffe89e; }
.route-spotlight-caption h3 { color: #fff; font-size: clamp(19px, 1.8vw, 25px); margin: 4px 0 6px; line-height: 1.2; }
.route-spotlight-caption p { margin: 0; color: rgba(255, 255, 255, .88); font-weight: 700; font-size: 13px; }
.route-spotlight-body { display: flex; flex-direction: column; }
.route-spotlight-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.route-spotlight-stats span { display: flex; flex-direction: column; gap: 2px; padding: 8px; text-align: center; border: 1px solid var(--line); border-radius: 8px; background: #fffdf8; }
.route-spotlight-stats strong { color: var(--forest); font-size: 16px; }
.route-spotlight-stats small { color: var(--muted); font-size: 11px; font-weight: 700; }
.route-timeline { list-style: none; margin: 0 0 14px; padding: 0; max-height: 216px; overflow-y: auto; }
.route-timeline li { position: relative; display: flex; gap: 10px; padding-bottom: 12px; }
.route-timeline li:last-child { padding-bottom: 0; }
.route-timeline li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 26px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.route-timeline li:last-child::before { display: none; }
.route-timeline-dot {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
}
.route-timeline-stop { padding-top: 2px; }
.route-timeline-stop strong { display: block; color: var(--forest); font-size: 12px; margin-bottom: 1px; }
.route-timeline-stop p { margin: 0; font-weight: 700; font-size: 14px; }

.suggest-home-cta {
  margin: 18px clamp(18px, 4vw, 86px) 0;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  border-radius: 8px;
  border: 1px solid #e5b64d;
  background: linear-gradient(135deg, #fff8e7, #fdf0cf);
}
.suggest-home-cta-icon {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
}
.suggest-home-cta-icon .dashicons { font-size: 28px; width: 28px; height: 28px; }
.suggest-home-cta-body { flex: 1; min-width: 0; }
.suggest-home-cta-body h2 { margin: 0 0 6px; color: var(--soil); font-size: 19px; }
.suggest-home-cta-body p { margin: 0; color: var(--muted); }
.suggest-home-cta .btn { flex: 0 0 auto; }

.member-strip {
  margin: 18px clamp(18px, 4vw, 86px);
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 85, 31, .96), rgba(7, 85, 31, .88)),
    url("../img/durian.jpg") center / cover;
}

.member-strip h2, .member-strip p { margin: 0; }

.news-mini { display: grid; gap: 10px; }
.news-mini a {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}
.news-mini small { display: block; color: var(--muted); font-weight: 400; margin-top: 4px; }

.filters {
  margin: 20px clamp(18px, 4vw, 86px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.filters select, .wide-input, .booking-form input, .booking-form select, .contact-grid input:not([type="checkbox"]):not([type="radio"]), .contact-grid select, .contact-grid textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 9px 12px;
  outline: 0;
}

.result-count { margin: 0 0 12px; color: var(--muted); font-weight: 800; }
.sticky-side { position: sticky; top: 110px; }
.route-reco { display: flex; justify-content: space-between; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); font-weight: 800; }
.route-reco span { color: var(--forest); }
.suggest-attraction-cta { margin-top: 18px; padding: 16px; border: 1px solid #e5b64d; border-radius: 8px; background: #fff8e7; text-align: center; }
.suggest-attraction-cta h3 { margin: 0 0 6px; color: var(--soil); font-size: 15px; }
.suggest-attraction-cta p { margin: 0 0 12px; color: var(--muted); font-size: 13px; }

.detail-layout {
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 86px) 8px;
}

.page-editable-content {
  width: min(1040px, calc(100% - 36px));
  margin: 24px auto 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 10px 24px rgba(43, 56, 35, .07);
  color: var(--muted);
}
.page-editable-content > *:first-child { margin-top: 0; }
.page-editable-content > *:last-child { margin-bottom: 0; }
.page-editable-content h2,
.page-editable-content h3 { color: var(--forest); }
.page-editable-content-attractions { margin-bottom: 18px; }

.admin-manage-panel {
  width: min(1120px, calc(100% - 36px));
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid #d6bd6e;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff9e6, #fffdf8);
  box-shadow: 0 10px 24px rgba(43, 56, 35, .07);
}
.admin-manage-panel strong {
  display: block;
  color: var(--forest);
  font-size: 18px;
}
.admin-manage-panel span {
  display: block;
  color: var(--muted);
}
.admin-manage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-edit-guide {
  width: min(1120px, calc(100% - 36px));
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.admin-edit-guide div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, .94);
}
.admin-edit-guide .dashicons {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eff8e7;
  color: var(--forest);
}
.admin-edit-guide strong {
  color: var(--forest);
  line-height: 1.2;
}
.admin-edit-guide small {
  color: var(--muted);
  line-height: 1.35;
}

.attractions-summary {
  width: min(1120px, calc(100% - 36px));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: .75fr .75fr 1.5fr;
  gap: 12px;
}
.attractions-summary.stats-even { grid-template-columns: repeat(3, 1fr); text-align: center; }
.attractions-summary div {
  padding: 16px 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0f7131, #07551f);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 85, 31, .16);
}
.attractions-summary strong {
  display: block;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}
.attractions-summary span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.82);
}

.listing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.listing-head .result-count { margin: 0; }

.breadcrumb { color: var(--muted); font-weight: 700; margin-bottom: 14px; }
.gallery-panel { position: relative; min-width: 0; }
.feature-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  max-height: 460px;
  border-radius: 14px;
  object-fit: cover;
  cursor: pointer;
  box-shadow: 0 12px 30px -18px rgba(23, 37, 26, .45);
}
.feature-photo-expand {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  line-height: 1;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: rgba(23, 37, 26, .55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background .15s ease, transform .15s ease;
}
.feature-photo-expand .dashicons { width: 18px; height: 18px; font-size: 18px; line-height: 1; }
.feature-photo-expand:hover { background: rgba(23, 37, 26, .8); transform: scale(1.05); }
.thumb-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.thumb-row img {
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .7;
  transition: border-color .15s ease, opacity .15s ease, transform .15s ease;
}
.thumb-row img:hover { opacity: 1; transform: translateY(-2px); }
.thumb-row img.is-active { border-color: var(--forest); opacity: 1; box-shadow: 0 4px 10px -4px rgba(23, 37, 26, .4); }

body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(10, 14, 10, .92);
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox-image { max-width: min(1200px, 92vw); max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 26px; line-height: 1; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 30px; line-height: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, .25); }
.detail-info h1 { color: var(--forest); font-size: clamp(34px, 3vw, 52px); margin: 10px 0 0; line-height: 1.1; }
.info-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 12px; }
.info-list li { display: flex; gap: 10px; align-items: flex-start; }
.info-list .dashicons { color: var(--forest); }
.split-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.share-bar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.share-label { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--muted); font-size: 14px; }
.share-links { display: flex; gap: 8px; }
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--forest);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform .15s ease, box-shadow .15s ease;
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(31, 46, 24, .15); }
.share-btn .dashicons { font-size: 18px; width: 18px; height: 18px; }
.share-fb { background: #1877f2; border-color: #1877f2; color: #fff; }
.share-line { background: #06c755; border-color: #06c755; color: #fff; font-size: 11px; letter-spacing: .02em; }
.share-x { background: #111; border-color: #111; color: #fff; }
.share-copy.is-copied { background: var(--forest); border-color: var(--forest); color: #fff; }

.tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -18px -18px 18px;
  border-bottom: 1px solid var(--line);
}

.tabbar button {
  min-height: 52px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fffdf8;
  color: var(--muted);
  font-weight: 800;
}
.tabbar button:last-child { border-right: 0; }
.tabbar .is-active { color: #fff; background: var(--forest); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-empty { color: var(--muted); }
.mini-card { overflow: hidden; text-align: center; padding-bottom: 12px; }
.mini-card p { padding: 0 10px; }
.mini-card h3 { padding: 0 10px; font-size: 15px; }
.mini-card .pill { margin: 10px 10px 0; }
.mini-card .btn { margin: 0 10px; }
.attraction-content {
  font-size: 17px;
  line-height: 1.85;
}
.attraction-content > *:first-child { margin-top: 0; }
.attraction-content h2,
.attraction-content h3 { color: var(--forest); }
.attraction-content img {
  border-radius: 8px;
  border: 1px solid var(--line);
}

.map-frame { width: 100%; height: 260px; border: 0; border-radius: 8px; }

.review-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.review-summary strong { font-size: 28px; color: var(--forest); }
.review-summary .rating { color: var(--gold); letter-spacing: 2px; }

.review-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 16px; }
.review-item { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.review-item-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.review-item-head .rating { color: var(--gold); }
.review-item-head time { color: var(--muted); font-size: 13px; margin-left: auto; }
.review-empty { color: var(--muted); }

.review-form { margin-top: 12px; }
.review-form .ast-comment-formwrap.ast-row {
  display: block;
}
.review-form .ast-comment-formwrap.ast-row > p {
  width: 100%;
}
.review-form input:not([type="radio"]):not([type="checkbox"]),
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 9px 12px;
  outline: 0;
  margin-bottom: 12px;
}
.review-form textarea { min-height: 100px; }
.review-form label { display: block; font-weight: 700; margin-bottom: 6px; }
.review-form .form-submit input[type="submit"] {
  width: auto;
  border: 0;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 800;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}
.star-rating input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-rating label {
  display: block;
  margin: 0;
  font-size: 30px;
  line-height: 1;
  color: var(--line);
  cursor: pointer;
  transition: color .15s;
}
.star-rating label::before { content: "\2605"; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--gold);
}
.star-rating input:focus-visible ~ label { outline: 2px solid var(--forest); outline-offset: 2px; border-radius: 4px; }

.review-form .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.review-form .comment-form-cookies-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--forest);
}
.review-form .comment-form-cookies-consent label {
  display: inline;
  margin: 0;
  font-weight: 400;
  flex: 1 1 220px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.route-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  padding: 16px clamp(18px, 4vw, 86px);
}
.route-tabs a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  font-weight: 900;
}
.route-tabs .is-active { background: var(--forest); color: #fff; }
.route-cover { padding: 0 clamp(18px, 4vw, 86px) 18px; }
.route-cover-media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px clamp(18px, 3vw, 40px);
  color: #fff;
  box-shadow: 0 20px 40px -22px rgba(23, 37, 26, .5);
}
.route-cover-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 58, 24, .05) 35%, rgba(5, 58, 24, .88));
}
.route-cover-media > * { position: relative; }
.route-cover-media .pill { align-self: flex-start; margin-bottom: auto; }
.route-cover-caption h2 { color: #fff; margin: 0 0 8px; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; }
.route-cover-caption p { margin: 0; color: rgba(255, 255, 255, .9); font-weight: 600; font-size: 15px; max-width: 640px; }
.route-board {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 86px) 18px;
}
.map-panel img { width: 100%; height: 420px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.map-panel .map-frame { height: 420px; border-radius: 8px; }
.route-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 14px 0; }
.route-stats span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  font-weight: 900;
  color: var(--forest);
  font-size: 13px;
}
.route-stats .dashicons { color: var(--gold); }
.route-cards { padding: 0 clamp(18px, 4vw, 86px) 24px; }
.route-card, .news-card { overflow: hidden; padding-bottom: 16px; }
.route-card h3, .route-card p, .route-card a, .news-card h3, .news-card p, .news-card a { margin-left: 16px; margin-right: 16px; }
.route-card.is-active { border-color: var(--forest); box-shadow: 0 0 0 2px var(--forest) inset; }
.route-card .btn { margin-top: 4px; }
.route-card .btn + .btn { margin-left: 8px; }

.category-list { list-style: none; padding: 0; margin: 12px 0 24px; }
.category-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 800; }
.category-list a { width: 100%; display: flex; justify-content: space-between; gap: 10px; }
.category-list .is-active a { color: var(--forest); }
.category-list span { color: var(--forest); background: #eff8e7; border-radius: 999px; padding: 0 10px; }
.news-search { display: grid; gap: 10px; margin-bottom: 20px; }
.featured-news { position: relative; overflow: hidden; border-radius: 8px; min-height: 250px; margin-bottom: 16px; color: #fff; }
.featured-news img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; filter: brightness(.65); }
.featured-news div { position: absolute; inset: auto 24px 24px; }
.featured-news h2 { font-size: clamp(24px, 2.5vw, 38px); line-height: 1.2; margin: 8px 0; }
.gold { background: #fff2cd; color: #8a5900; border-color: #e8c36c; }
.pill.gold { background: #fff2cd; color: #8a5900; border-color: #e8c36c; }
.pill.muted { background: #f1eee6; color: var(--muted); border-color: var(--line); }

.booking-lookup { display: flex; gap: 10px; margin-bottom: 18px; }
.booking-lookup input { flex: 1; }
.booking-lookup-results { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.booking-lookup-item { padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; background: #fffdf8; }
.booking-lookup-item-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.booking-lookup-item-head h3 { margin: 0; color: var(--forest); font-size: 16px; }
.booking-lookup-item-head .pill { margin-left: auto; }
.booking-lookup-facts { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 14px; font-weight: 700; }
.booking-lookup-facts span { display: inline-flex; align-items: center; gap: 4px; }
.booking-lookup-facts .dashicons { color: var(--forest); }
.message-thread-body { margin: 10px 0 0; padding: 10px 12px; background: #fff; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); font-size: 14px; line-height: 1.6; }
.message-thread-reply { margin-top: 10px; padding: 12px; background: #eff8e7; border: 1px solid #cfe6b8; border-radius: 8px; display: flex; gap: 10px; align-items: flex-start; }
.message-thread-reply .dashicons { color: var(--forest); font-size: 20px; width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; }
.message-thread-reply strong { display: block; color: var(--forest); font-size: 13px; margin-bottom: 4px; }
.message-thread-reply p { margin: 0; font-size: 14px; line-height: 1.6; }
.news-card-body { padding: 16px; }
.news-card-body h3,
.news-card-body p,
.news-card-body a { margin-left: 0; margin-right: 0; }
.post-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.news-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.news-pagination .page-numbers {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  font-weight: 900;
}
.news-pagination .current {
  color: #fff;
  background: var(--forest);
}
.editable-intro {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--muted);
}
.editable-intro > *:first-child { margin-top: 0; }
.editable-intro > *:last-child { margin-bottom: 0; }
.empty-state { text-align: center; padding: 34px; }

.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.calendar-head a { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 8px; color: var(--forest); font-weight: 900; font-size: 18px; }
.calendar h3 { text-align: center; color: var(--forest); margin: 0; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; text-align: center; }
.calendar-grid span, .calendar-grid strong, .calendar-grid a { min-height: 30px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); }
.calendar-grid .empty { visibility: hidden; }
.calendar-grid .open { background: #eff8e7; color: var(--forest); font-weight: 800; }
.calendar-grid .busy { background: var(--gold); color: #fff; font-weight: 800; }
.calendar-grid .full { background: #fff0ed; color: #b31b1b; font-weight: 800; cursor: not-allowed; }
.calendar-grid .is-past { color: var(--line); }
.calendar-grid .is-today { box-shadow: inset 0 0 0 2px var(--forest); font-weight: 900; }
.calendar-grid .is-selected { background: var(--forest); color: #fff; font-weight: 900; }

.stepper {
  width: min(1040px, calc(100% - 32px));
  margin: -20px auto 26px;
  display: flex;
  list-style: none;
  padding: 20px clamp(16px, 4vw, 40px) 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}
.stepper li { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.stepper li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.stepper li.is-done:not(:last-child)::after { background: var(--forest); }
.step-node {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--muted);
}
.stepper li.is-active .step-node { border-color: var(--forest); background: var(--forest); color: #fff; }
.stepper li.is-done .step-node { border-color: var(--forest); background: #eff8e7; color: var(--forest); }
.step-label { font-size: 13px; font-weight: 800; color: var(--muted); }
.stepper li.is-active .step-label { color: var(--forest); }

.booking-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; align-items: start; padding: 0 clamp(18px, 4vw, 86px) 28px; }
.booking-planner { display: flex; gap: 24px; }
.booking-planner-col { flex: 1; min-width: 0; }
.booking-planner-divider { width: 1px; background: var(--line); }
.legend, .checkline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--muted); }
.checkline { align-items: flex-start; }
.checkline input[type="checkbox"], .checkline input[type="radio"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--forest);
}
.pdpa-notice { margin: 0; font-size: 13px; }
.pdpa-notice summary { font-size: 14px; }
.pdpa-notice[open] summary { margin-bottom: 10px; }
.pdpa-notice-body { display: grid; gap: 10px; color: var(--muted); line-height: 1.6; }
.pdpa-notice-body h4 { margin: 0; color: var(--soil); font-size: 13px; }
.pdpa-notice-body p { margin: 2px 0 0; }
.open-dot, .warn-dot, .full-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.open-dot { background: var(--forest); } .warn-dot { background: var(--gold); } .full-dot { background: #d81717; }
.time-slots { display: grid; gap: 12px; }
.time-slots button, .time-slots a { min-height: 54px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--forest); font-weight: 900; display: flex; justify-content: space-between; padding: 0 18px; align-items: center; }
.time-slots .is-active { border-color: var(--forest); box-shadow: inset 0 0 0 2px var(--forest); }
.time-slots button:disabled { color: var(--muted); background: #f7f4ec; }
.time-slots small.slot-open { color: var(--forest); }
.time-slots small.slot-busy { color: #8a5900; }
.time-slots small.slot-full { color: #b31b1b; }

.ticket-card { position: relative; background: rgba(255, 253, 247, .96); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }
.ticket-card-top { padding: 20px; }
.ticket-card-bottom { padding: 20px; display: grid; gap: 14px; }
.ticket-card-top h3 { margin: 6px 0 2px; color: var(--forest); font-size: 20px; }
.ticket-card-top > p { margin: 0; color: var(--muted); font-weight: 700; }
.ticket-fields { display: grid; gap: 12px; margin-top: 16px; }
.ticket-notch { position: relative; border-top: 2px dashed var(--line); }
.ticket-notch::before, .ticket-notch::after { content: ""; position: absolute; top: -11px; width: 22px; height: 22px; border-radius: 50%; background: #f3efe6; border: 1px solid var(--line); }
.ticket-notch::before { left: -12px; }
.ticket-notch::after { right: -12px; }
.ticket-card-empty .ticket-card-top p { margin-top: 8px; }
.ticket-card-empty .tab-empty { margin: 0; text-align: center; }
.ticket-ref { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.ticket-ref span { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.ticket-ref strong { font-size: 32px; color: var(--forest); letter-spacing: 1px; overflow-wrap: anywhere; word-break: break-word; }
.ticket-card-success { max-width: 640px; margin: 0 auto; }
.ticket-card-success .ticket-card-top .post-kicker { color: var(--forest); }
.ticket-card-success h2 { color: var(--forest); margin: 4px 0 10px; }
.promo-qr { display: flex; justify-content: center; }
.promo-qr-image { width: 220px; height: 220px; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.promo-verify-pin-form { display: grid; gap: 10px; }
.promo-verify-pin-form label { display: grid; gap: 6px; font-weight: 700; color: var(--soil); font-size: 13px; }
.promo-verify-pin-form input {
  max-width: 160px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 9px 12px;
  outline: 0;
  letter-spacing: 4px;
  font-size: 18px;
  text-align: center;
}
.booking-form { display: grid; }
.quantity { display: flex; flex-direction: column; gap: 8px; }
.quantity-label { font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.quantity-control { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.quantity-control button {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #f7f4ec;
  display: grid;
  place-items: center;
  color: var(--forest);
  cursor: pointer;
  overflow: hidden;
  line-height: 1;
}
.quantity-control button:hover { background: #eff8e7; border-color: var(--forest); }
.quantity-control button .dashicons { font-size: 18px; width: 18px; height: 18px; line-height: 18px; }
.quantity-count { flex: 1; text-align: center; font-weight: 900; color: var(--forest); font-size: 16px; }
.attraction-picker { position: relative; }
.attraction-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 5;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.attraction-results li { border-bottom: 1px solid var(--line); }
.attraction-results li:last-child { border-bottom: 0; }
.attraction-results button {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: 0;
  background: #fff;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.attraction-results button:hover { background: #eff8e7; color: var(--forest); }
.attraction-search-error { color: #b31b1b; margin: 4px 0 0; text-align: left; }
.summary-box { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: #fff7e3; border-radius: 8px; color: var(--soil); }
.summary-box strong { font-size: 28px; color: var(--soil); }
.booking-error { text-align: center; padding: 28px; border-left: 4px solid #b31b1b; color: #b31b1b; }
.booking-error .dashicons { vertical-align: middle; margin-right: 4px; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 28px clamp(18px, 4vw, 86px) 0; }
.benefit-card { text-align: center; padding: 28px 20px; }
.benefit-card .dashicons { width: 64px; height: 64px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--forest); color: #fff; font-size: 34px; }
.coupon-box strong, .points-box strong { display: block; color: var(--gold); font-size: 46px; line-height: 1; }
.price-card { border: 2px solid #e5b64d; border-radius: 8px; padding: 18px; text-align: center; background: #fff8e7; }
.price-card strong { display: block; color: var(--gold); font-size: 28px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 86px);
}
.contact-grid form { display: grid; gap: 14px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-grid textarea { min-height: 130px; resize: vertical; }
details { border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: #fff; }
summary { cursor: pointer; font-weight: 900; color: var(--forest); }

.login-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px;
  padding: 64px 24px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.login-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at center, rgba(5, 58, 24, .3), rgba(5, 40, 18, .8) 72%),
    linear-gradient(180deg, rgba(5, 58, 24, .5), rgba(5, 40, 18, .72));
}
.login-box {
  position: relative;
  width: min(420px, 100%);
  padding: 40px 36px;
  display: grid;
  gap: 14px;
  text-align: center;
  background: rgba(255, 253, 247, .97);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(5, 40, 18, .35);
}
.login-box-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--paper);
  box-shadow: 0 0 0 4px #fffaf0, 0 6px 18px rgba(5, 40, 18, .25);
}
.login-box-mark img { width: 100%; height: 100%; object-fit: cover; }
.login-box-mark .dashicons { color: var(--forest); font-size: 28px; }
.login-box h1 { margin: 4px 0 0; color: var(--forest); font-size: 26px; line-height: 1.25; }
.login-box-rule { width: 46px; height: 3px; margin: 2px auto 0; background: var(--gold); border-radius: 999px; }
.login-box-sub { margin: -4px 0 4px; color: var(--muted); font-size: 14px; }
.login-form { display: grid; gap: 12px; text-align: left; }
.login-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 9px 14px;
  outline: 0;
}
.login-box-footnote { margin: 0; color: var(--muted); font-size: 13px; }
.login-box-footnote a { color: var(--forest); font-weight: 800; }
.account-box dl { display: grid; gap: 2px; margin: 4px 0 0; text-align: left; }
.account-box dt { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; margin-top: 8px; }
.account-box dd { margin: 0; color: var(--soil); font-weight: 700; }
.login-box-actions { display: grid; gap: 10px; margin-top: 6px; }
.contact-form { display: grid; gap: 14px; }
.contact-form input:not([type="checkbox"]):not([type="radio"]), .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 9px 12px;
  outline: 0;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form h2 { margin: 6px 0 0; }
.contact-form h2:first-child { margin-top: 0; }
.file-field { display: grid; gap: 6px; }
.file-field span { font-weight: 700; color: var(--soil); font-size: 14px; }
.file-field input[type="file"] {
  width: 100%;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 12px;
}
.submit-attraction-success { text-align: center; padding: 40px 20px; }
.submit-attraction-success .dashicons { font-size: 48px; width: 48px; height: 48px; color: var(--forest); }
.submit-attraction-success h2 { color: var(--forest); margin: 10px 0; }
.submit-attraction-success p { max-width: 520px; margin: 0 auto 18px; color: var(--muted); }
.form-notice.form-error { color: #b31b1b; background: #fdecec; border: 1px solid #f3b8b8; }
.user-menu { display: flex; align-items: center; gap: 14px; }

.admin-layout { display: grid; grid-template-columns: 310px 1fr; min-height: 790px; background: #f8f5ee; }
.admin-side { color: #fff; background: linear-gradient(180deg, #07551f, #063d18); padding: 28px; }
.admin-side .footer-brand { align-items: flex-start; min-width: 0; margin-bottom: 34px; }
.admin-side nav { display: grid; gap: 10px; }
.admin-side a { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 8px; font-weight: 900; }
.admin-side a.is-active, .admin-side a:hover { background: rgba(255,255,255,.14); }
.admin-main { padding: 34px; }
.admin-main h1 { margin-top: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 18px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.stat-card span { display: block; color: var(--muted); font-weight: 900; }
.stat-card strong { display: block; color: var(--forest); font-size: 42px; line-height: 1.1; }
.admin-grid { display: grid; grid-template-columns: 1.3fr 1fr .9fr; gap: 18px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 10px; border-bottom: 1px solid var(--line); text-align: left; }
td button, .quick-actions button { border: 0; border-radius: 8px; background: var(--forest); color: #fff; padding: 8px 12px; font-weight: 900; }
.quick-actions { margin-top: 18px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }

.single-post-layout { background: var(--paper); }
.single-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.single-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62);
}
.single-hero div {
  position: relative;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
  color: #fff;
}
.single-hero h1 {
  max-width: 880px;
  margin: 14px 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.12;
  color: #fff;
}
.single-hero .post-meta { color: rgba(255,255,255,.88); }
.single-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  padding: 26px clamp(18px, 4vw, 86px);
}
.post-content {
  font-size: 18px;
  line-height: 1.85;
}
.post-content h2,
.post-content h3 { color: var(--forest); }
.post-content img {
  border-radius: 8px;
  border: 1px solid var(--line);
}
.back-to-news { margin-top: 16px; }

.site-footer {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1.3fr;
  gap: 28px;
  padding: 30px clamp(18px, 4vw, 86px) 14px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 85, 31, .98), rgba(7, 85, 31, .92)),
    url("../img/temple.jpg") right bottom / 360px auto no-repeat;
}
.site-footer h3 { margin: 0 0 8px; color: #ffe89e; }
.site-footer a, .site-footer p { display: block; margin: 4px 0; color: rgba(255,255,255,.88); }
.footer-bottom { grid-column: 1 / -1; text-align: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.78); font-size: 13px; }
.form-notice { padding: 10px 12px; color: var(--forest); background: #edf8e9; border: 1px solid #bfdcb6; border-radius: 8px; font-weight: 900; }

@media (max-width: 1180px) {
  .topbar { flex-wrap: wrap; row-gap: 10px; }
  .brand { order: 1; }
  .login-link, .user-menu { order: 2; margin-left: auto; }
  .nav-toggle { order: 3; display: inline-flex; }
  .main-nav {
    order: 4;
    display: none;
    flex-basis: 100%;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px clamp(14px, 3vw, 24px);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .search-band, .booking-grid, .route-board, .detail-layout, .contact-grid, .admin-layout, .route-spotlight { grid-template-columns: 1fr; }
  .route-spotlight-media { height: 220px; }
  .route-cover-media { height: 260px; }
  .quick-tabs { grid-template-columns: repeat(3, 1fr); }
  .route-tabs, .benefit-grid, .stats-grid, .quick-actions { grid-template-columns: repeat(2, 1fr); }
  .card-grid.four, .card-grid.three { grid-template-columns: repeat(2, 1fr); }
  .span-3, .span-4, .span-5, .span-6, .span-7, .span-8 { grid-column: 1 / -1; }
  .admin-side { display: none; }
  .admin-grid { grid-template-columns: 1fr; }
  .single-content-grid { grid-template-columns: 1fr; }
  .admin-edit-guide { grid-template-columns: repeat(2, 1fr); }
  .admin-manage-panel { align-items: stretch; flex-direction: column; }
  .admin-manage-actions { justify-content: flex-start; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .topbar { min-height: auto; padding: 12px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 11px; }
  .hero { min-height: 220px; padding: 34px 16px; }
  .search-band, .form-two, .split-actions, .card-grid.two, .card-grid.four, .card-grid.three, .quick-tabs, .route-tabs, .benefit-grid, .stats-grid, .quick-actions, .site-footer, .route-spotlight-stats { grid-template-columns: 1fr; }
  .route-spotlight-media { height: 200px; padding: 16px; }
  .route-cover-media { height: 220px; padding: 18px; }
  .route-stats { grid-template-columns: 1fr; }
  .booking-lookup { flex-direction: column; }
  .stepper { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; }
  .stepper li { flex-direction: row; justify-content: flex-start; text-align: left; }
  .stepper li::after { display: none; }
  .step-node { flex: 0 0 auto; }
  .booking-planner { flex-direction: column; gap: 18px; }
  .booking-planner-divider { display: none; }
  .content-grid, .detail-layout, .route-board, .route-cards, .booking-grid, .contact-grid { padding-left: 14px; padding-right: 14px; }
  .admin-edit-guide, .attractions-summary, .attractions-summary.stats-even { grid-template-columns: 1fr; }
  .tour-card-actions { grid-template-columns: 1fr; }
  .listing-head { align-items: stretch; flex-direction: column; }
  .filters { grid-template-columns: 1fr; margin-left: 14px; margin-right: 14px; }
  .map-panel img, .map-frame { height: 280px; }
  .thumb-row img { width: 68px; height: 68px; }
  .tabbar { grid-template-columns: 1fr; }
  .member-strip { flex-direction: column; align-items: stretch; margin-left: 14px; margin-right: 14px; }
  .suggest-home-cta { flex-direction: column; align-items: stretch; text-align: center; margin-left: 14px; margin-right: 14px; }
  .suggest-home-cta-icon { margin: 0 auto; }
  .login-hero { min-height: 520px; padding: 40px 16px; }
  .login-box { padding: 32px 24px; }
  .ticket-ref { flex-direction: column; align-items: flex-start; gap: 4px; }
  .ticket-ref strong { font-size: 22px; letter-spacing: .5px; }
}
