:root {
  --forest: #1b4332;
  --forest-strong: #163427;
  --herb: #52b788;
  --sand: #f5e6d3;
  --cream: #faf7f2;
  --text: #1f2937;
  --muted: #6b7280;
  --gold: #c9a96e;
  --border: #e5d5bf;
  --shadow: 0 16px 40px rgba(27, 67, 50, 0.12);
  --font-body: 'Lato', 'Noto Sans SC', 'Noto Sans Lao', sans-serif;
  --font-display: 'Playfair Display', 'Noto Sans SC', 'Noto Sans Lao', serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 0.7rem;
  color: var(--forest);
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 100% - 2rem);
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.is-home {
  background: transparent;
  border-bottom: 0;
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.nav-logo img {
  height: 42px;
  width: auto;
  transition: filter 0.25s ease;
}

.site-nav.is-home:not(.is-scrolled) .nav-logo img {
  filter: invert(1) hue-rotate(150deg) saturate(1.9) brightness(1.24) contrast(1.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: rgba(27, 67, 50, 0.75);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav.is-home:not(.is-scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--forest);
}

.site-nav.is-home:not(.is-scrolled) .nav-link.is-active,
.site-nav.is-home:not(.is-scrolled) .nav-link:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-switcher {
  position: relative;
}

.lang-current {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(82, 183, 136, 0.18);
  color: var(--forest);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
}

.lang-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav.is-home:not(.is-scrolled) .lang-current {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 2.8rem;
  min-width: 128px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0.35rem;
  display: none;
}

.lang-menu.open {
  display: block;
}

.lang-item {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem;
}

.lang-item:hover,
.lang-item.is-active {
  background: rgba(82, 183, 136, 0.16);
  color: var(--forest);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--forest);
}

.site-nav.is-home:not(.is-scrolled) .mobile-toggle {
  color: #fff;
}

main {
  min-height: 70vh;
}

.hero,
.page-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero {
  min-height: 420px;
}

.page-hero.detail {
  min-height: 520px;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(27, 67, 50, 0.88), rgba(27, 67, 50, 0.45) 58%, rgba(27, 67, 50, 0.2));
}

.hero-overlay.solid {
  background: rgba(27, 67, 50, 0.82);
}

.about-hero .hero-bg {
  filter: brightness(1.12) saturate(1.22) contrast(1.05);
}

.about-hero .hero-overlay.solid {
  background: linear-gradient(
    115deg,
    rgba(27, 67, 50, 0.56) 0%,
    rgba(27, 67, 50, 0.3) 52%,
    rgba(82, 183, 136, 0.14) 100%
  );
}

.about-hero .hero-content h1,
.about-hero .hero-content .hero-subtitle {
  text-shadow: 0 2px 20px rgba(6, 24, 16, 0.3);
}

.hero-overlay.dark {
  background: linear-gradient(0deg, rgba(18, 45, 34, 0.95), rgba(18, 45, 34, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  color: #fff;
}

.hero-content.page {
  padding-top: 110px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4.2vw, 3.3rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: var(--font-body);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-slogan {
  color: #9bf2c8;
  margin-bottom: 0.8rem;
}

.hero-subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--herb);
  color: #fff;
}

.btn-primary:hover {
  background: #62c598;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-dark {
  background: var(--forest);
  color: #fff;
}

.btn-dark:hover {
  background: var(--forest-strong);
}

.section {
  padding: 5.5rem 0;
}

.section-values {
  background: var(--cream);
  padding-top: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  background: #fff;
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 18px;
  padding: 1.2rem;
  text-align: center;
}

.value-card h3 {
  margin: 0;
  font-size: 1rem;
}

.section-about {
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.3rem;
  align-items: center;
}

.rounded-img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.two-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.two-mini-cards article {
  background: #fbf1e5;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem;
}

.two-mini-cards h4 {
  font-size: 1rem;
}

.two-mini-cards p {
  font-size: 0.9rem;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--herb);
  font-weight: 700;
}

.section-products,
.section-products-list {
  background: var(--sand);
}

.section-header {
  text-align: left;
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.section-header.center,
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.section-products-list .cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 0.9rem;
}

.section-news {
  background: #fff;
}

.section-news-about {
  background: transparent;
  padding-top: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-link-wrap {
  display: block;
}

.news-card {
  background: #fff;
  border: 1px solid rgba(212, 197, 169, 0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-link-wrap:hover .news-card {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(27, 67, 50, 0.12);
}

.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 0.9rem;
}

.news-date {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.news-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.news-card p {
  color: #4b5563;
}

.news-readmore {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--herb);
  font-weight: 700;
  font-size: 0.9rem;
}

.news-empty {
  color: #6b7280;
  background: #fafaf9;
  border: 1px dashed #d6d3d1;
  padding: 0.8rem;
  border-radius: 12px;
}

.section-news-list-page {
  background: var(--cream);
}

.section-news-detail {
  background: var(--cream);
}

.news-detail-card {
  background: #fff;
  border: 1px solid rgba(212, 197, 169, 0.34);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: 0 10px 28px rgba(27, 67, 50, 0.08);
}

.news-detail-card h2 {
  margin-bottom: 0.5rem;
}

.news-detail-summary {
  color: #4b5563;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.news-detail-content {
  color: #374151;
  line-height: 1.85;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 197, 169, 0.24);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.section-products-list .product-card {
  border-radius: 14px;
}

.card-link {
  display: block;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.section-products-list .product-card img {
  height: 180px;
}

.card-body {
  padding: 1rem;
}

.section-products-list .card-body {
  padding: 0.8rem 0.85rem;
}

.card-body h3 {
  margin-bottom: 0.4rem;
  font-size: 1.28rem;
}

.section-products-list .card-body h3 {
  font-size: 1.08rem;
}

.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-products-list .card-body p {
  font-size: 0.88rem;
}

.card-body span {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--herb);
  font-weight: 700;
}

.chip {
  display: inline-block;
  border-radius: 999px;
  background: rgba(27, 67, 50, 0.9);
  color: #fff !important;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
}

.section-cta {
  background: var(--forest);
}

.section-cta .section-header h2,
.section-cta .section-header p {
  color: #fff;
}

.section-cta .section-header p {
  opacity: 0.78;
  margin-bottom: 1.2rem;
}

.eyebrow {
  color: #98efc5;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.82rem;
  font-weight: 700;
}

.section-about-content {
  background: var(--cream);
}

.section-about-standard {
  background: linear-gradient(180deg, #f8f4ed 0%, #faf7f2 100%);
}

.about-standard-wrap {
  width: min(1040px, 100% - 2rem);
  display: grid;
  gap: 1rem;
}

.about-panel {
  background: #fff;
  border: 1px solid rgba(212, 197, 169, 0.34);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.06);
}

.about-panel > p {
  margin-bottom: 0.65rem;
}

.about-panel > p:last-child {
  margin-bottom: 0;
}

.about-head {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}

.about-head h2 {
  margin: 0;
  font-size: 1.55rem;
}

.about-subhead {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 600;
}

.about-cta-wrap {
  margin-top: 0.25rem;
}

.about-origin-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 0.7rem;
}

.about-panel p {
  color: #44505f;
}

.about-lead {
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.belief-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.belief-grid div {
  border: 1px solid rgba(212, 197, 169, 0.38);
  border-radius: 12px;
  padding: 0.72rem;
  background: #fcfaf6;
  font-weight: 600;
  color: #334155;
}

.focus-tags {
  margin: 0.75rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.focus-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(27, 67, 50, 0.08);
  border: 1px solid rgba(27, 67, 50, 0.12);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.35rem 0.76rem;
}

.quality-list {
  margin: 0.65rem 0 0.8rem;
  padding-left: 1.1rem;
  color: #334155;
}

.quality-list li {
  margin-bottom: 0.3rem;
}

.about-emphasis {
  font-weight: 700;
  color: var(--forest);
}

.about-vision blockquote {
  margin: 0 0 0.8rem;
  border-left: 4px solid var(--herb);
  background: #f4fbf8;
  padding: 0.7rem 0.85rem;
  border-radius: 0 12px 12px 0;
}

.about-vision blockquote p:first-child {
  font-style: italic;
  color: #1f5b44;
}

.meaning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.meaning-grid div {
  background: #fcfaf6;
  border: 1px solid rgba(212, 197, 169, 0.34);
  border-radius: 14px;
  padding: 0.8rem;
}

.meaning-grid h3 {
  margin-bottom: 0.35rem;
}

.narrow {
  width: min(900px, 100% - 2rem);
}

.title-center {
  text-align: center;
  margin-bottom: 1.2rem;
}

.name-cards,
.story-grid,
.values-detail-grid {
  display: grid;
  gap: 1rem;
}

.name-cards {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.2rem;
}

.name-cards article,
.story-grid p,
.about-value,
.detail-cards article,
.contact-card,
.contact-form,
.filter-row {
  background: #fff;
  border: 1px solid rgba(212, 197, 169, 0.3);
  border-radius: 16px;
}

.name-cards article,
.story-grid p,
.about-value,
.detail-cards article,
.contact-card {
  padding: 1rem;
}

.story-grid {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.3rem;
}

.quote-block {
  background: var(--forest);
  color: #fff;
  border-radius: 18px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  margin-bottom: 1.2rem;
}

.quote-block h2 {
  color: #fff;
}

.quote-block p {
  color: #9cf3c9;
}

.mission-wrap {
  margin-bottom: 1.2rem;
}

.values-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-value h4 {
  margin-bottom: 0.4rem;
}

.about-value p {
  color: var(--muted);
}

.about-value.quality {
  border-left: 4px solid var(--forest);
}

.about-value.innovation {
  border-left: 4px solid var(--herb);
}

.about-value.integrity {
  border-left: 4px solid var(--gold);
}

.about-value.care {
  border-left: 4px solid #e07a5f;
}

.filter-row {
  display: flex;
  gap: 0.6rem;
  padding: 0.7rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.filter-pill {
  background: rgba(27, 67, 50, 0.72);
  border: 1px solid rgba(27, 67, 50, 0.28);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.89rem;
  color: #fff;
}

.filter-pill:hover {
  background: rgba(27, 67, 50, 0.86);
}

.filter-pill.is-active {
  background: var(--herb);
  color: #fff;
  border-color: rgba(82, 183, 136, 0.7);
}

.back-link {
  color: rgba(255, 255, 255, 0.85);
  display: inline-block;
  margin-bottom: 0.8rem;
}

.detail-content {
  padding-bottom: 3rem;
}

.detail-cards {
  display: grid;
  gap: 1rem;
}

.detail-cards p {
  color: var(--muted);
}

.section-contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1.2rem;
}

.contact-card h4 {
  margin-bottom: 0.4rem;
}

.contact-card a,
.contact-card p {
  color: var(--muted);
}

.contact-form {
  padding: 1.1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.85rem;
}

.contact-form label span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.7rem;
  background: #fff;
  font: inherit;
}

.alert {
  border-radius: 12px;
  padding: 0.62rem 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 0.93rem;
}

.alert-success {
  background: rgba(82, 183, 136, 0.14);
  border: 1px solid rgba(82, 183, 136, 0.35);
  color: var(--forest);
}

.alert-error {
  background: rgba(224, 122, 95, 0.12);
  border: 1px solid rgba(224, 122, 95, 0.28);
  color: #8b2f1c;
}

.site-footer {
  background: var(--forest);
  color: #e8f7ee;
  padding-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-slogan {
  margin-top: 0.8rem;
  color: #9ceec7;
  font-style: italic;
}

.footer-copy {
  margin-top: 0.4rem;
  color: rgba(250, 247, 242, 0.74);
}

.site-footer h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 0.3rem;
}

.footer-links a,
.footer-links span {
  color: rgba(250, 247, 242, 0.78);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding: 1rem 0 1.2rem;
  text-align: center;
  color: rgba(250, 247, 242, 0.56);
  font-size: 0.82rem;
}

.section-not-found {
  min-height: 62vh;
  display: grid;
  place-items: center;
}

.section-not-found h1 {
  font-size: 4rem;
}

.admin-body {
  background: #f6f7f9;
  color: #1f2937;
  min-height: 100vh;
}

.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.admin-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.admin-login-wrap .admin-card {
  width: min(460px, 100%);
}

.admin-muted {
  color: #6b7280;
}

.admin-form {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.75rem;
}

.admin-form label {
  display: block;
}

.admin-form label span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: #1f2937;
  font-weight: 700;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.58rem 0.64rem;
  font: inherit;
  background: #fff;
}

.admin-topbar {
  background: #0f2f25;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.admin-topbar h1 {
  color: #fff;
  margin: 0;
  font-size: 1.55rem;
}

.admin-topbar p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.admin-top-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-main {
  padding-top: 1rem;
  padding-bottom: 1.8rem;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.admin-tab {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 0.38rem 0.82rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.admin-tab.is-active {
  background: #1b4332;
  color: #fff;
  border-color: #1b4332;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.9rem;
}

.admin-grid-single {
  grid-template-columns: 1fr;
}

.admin-form-card {
  max-height: calc(100vh - 170px);
  overflow: auto;
}

.admin-list {
  display: grid;
  gap: 0.7rem;
}

.admin-list-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.72rem;
  background: #fafafa;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.admin-list-main h3 {
  margin: 0 0 0.2rem;
  font-size: 1.06rem;
}

.admin-list-main h3 small {
  color: #6b7280;
  font-weight: 500;
}

.admin-list-main p {
  color: #4b5563;
  margin-bottom: 0.2rem;
}

.admin-list-main small {
  color: #6b7280;
}

.admin-list-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.admin-form-actions {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.admin-ghost {
  background: #fff;
  border: 1px solid #cfd4dc;
  color: #1f2937;
}

.admin-danger {
  background: #b42318;
  color: #fff;
}

.admin-preview-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d1d5db;
}

.admin-lang-wrap {
  display: grid;
  gap: 0.65rem;
}

.admin-lang {
  border: 1px solid #dbe1e9;
  border-radius: 12px;
  padding: 0.7rem;
  background: #f9fbff;
}

.admin-lang legend {
  font-weight: 700;
  color: #1b4332;
  font-size: 0.9rem;
  padding: 0 0.2rem;
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0.7rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: grid;
    gap: 0.5rem;
  }

  .site-nav.is-home:not(.is-scrolled) .nav-links {
    background: rgba(27, 67, 50, 0.98);
  }

  .site-nav.is-home:not(.is-scrolled) .nav-links .nav-link {
    color: rgba(255, 255, 255, 0.88);
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .values-grid,
  .cards-grid,
  .news-grid,
  .story-grid,
  .footer-grid,
  .contact-grid,
  .two-col,
  .name-cards,
  .values-detail-grid,
  .two-mini-cards,
  .about-origin-grid,
  .belief-grid,
  .meaning-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    min-height: 560px;
  }

  .hero-content h1 {
    font-size: clamp(1.95rem, 7vw, 2.8rem);
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-card {
    max-height: none;
    overflow: visible;
  }

  .admin-list-item {
    flex-direction: column;
  }
}
