/* ============================================================
   VCTI – Vietnam China Trade & Investment Consortium
   style.css
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Be Vietnam Pro', 'Inter', sans-serif;
  background: #faf7f0;
  color: #1a1208;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f5f0e8; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(#8B6914, #C9A84C);
  border-radius: 3px;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #8B6914 0%, #C9A84C 40%, #B8860B 65%, #C9A84C 85%, #8B6914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   ECOSYSTEM SECTION
   ============================================================ */
#ecosystem {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

#ecosystem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8rem;
  background: linear-gradient(180deg, #faf7f0 0%, transparent 100%);
  pointer-events: none;
}

.ecosystem-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 56rem;
  margin-inline: auto;
}

.ecosystem-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.ecosystem-label .line {
  flex: 1;
  max-width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.6));
}

.ecosystem-label .line:last-child {
  background: linear-gradient(90deg, rgba(201,168,76,.6), transparent);
}

.ecosystem-label .text {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #8B6914;
}

.ecosystem-header h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1208;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.ecosystem-header p {
  font-size: clamp(.9rem, 1.5vw, 1rem);
  line-height: 1.75;
  color: #6b5535;
  margin-bottom: 1.5rem;
}

.ecosystem-underline {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #8B6914, #C9A84C, #8B6914);
  margin: 0 auto;
  border-radius: 2px;
}

.ecosystem-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ecosystem-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.ecosystem-card {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  border-radius: 2px;
  overflow: visible;
  transition: transform .3s, box-shadow .3s;
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,168,76,.15);
}

.ecosystem-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 2px 2px 0 0;
  grid-row: 1;
  grid-column: 1;
}

.ecosystem-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.ecosystem-card:hover .ecosystem-card-visual img {
  transform: scale(1.08);
}

.ecosystem-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.3), transparent 60%);
}

.ecosystem-card-icon {
  grid-row: 1;
  grid-column: 1;
  align-self: end;
  justify-self: center;
  width: 4rem;
  height: 4rem;
  transform: translateY(50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #8B6914, #C9A84C);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  z-index: 10;
  transition: transform .3s;
}

.ecosystem-card:hover .ecosystem-card-icon {
  transform: translateY(50%) scale(1.1);
}

.ecosystem-card-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ecosystem-card-content {
  padding: 3rem 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(201,168,76,.2);
  border-top: none;
  border-radius: 0 0 2px 2px;
  display: flex;
  flex-direction: column;
  grid-row: 2;
  grid-column: 1;
}

.ecosystem-card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: #1a1208;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.3;
}

.ecosystem-card-content h3::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #8B6914, #C9A84C);
  margin: .5rem auto 0;
}

.ecosystem-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ecosystem-card-content li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .875rem;
  line-height: 1.7;
  color: #6b5535;
  margin-bottom: .65rem;
}

.ecosystem-card-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C9A84C;
  font-weight: 700;
}

.ecosystem-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(139,105,20,.05));
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,.15);
  max-width: 56rem;
  margin: 0 auto;
}

.ecosystem-footer-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B6914, #C9A84C);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(139,105,20,.2);
}

.ecosystem-footer-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ecosystem-footer p {
  flex: 1;
  font-size: .9rem;
  line-height: 1.7;
  color: #5a4520;
  margin: 0;
}

@media (max-width: 639px) {
  .ecosystem-footer {
    flex-direction: column;
    text-align: center;
  }
}

.gold-line-h {
  background: linear-gradient(90deg, transparent, #C9A84C, #B8860B, #C9A84C, transparent);
  height: 1px;
}

/* ============================================================
   ECOSYSTEM PAGE - VISION & MISSION SECTION
   ============================================================ */
.vision-mission-section {
  padding: 6rem 0;
  background: #fff;
  overflow: hidden;
}

.vision-mission-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .vision-mission-grid {
    grid-template-columns: 45% 55%;
    gap: 4rem;
  }
}

.vision-mission-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.vision-mission-image img {
  width: 100%;
  height: auto;
  display: block;
}

.vision-number {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,.15);
  line-height: 1;
}

.vision-label {
  position: absolute;
  top: 2.5rem;
  left: 5rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.vision-mission-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vision-block,
.mission-block {
  padding: 0;
}

.vision-icon-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vision-icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B6914, #C9A84C);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(139,105,20,.2);
  flex-shrink: 0;
}

.vision-icon-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1208;
  margin: 0;
}

.vision-block p,
.mission-block > p {
  font-size: .95rem;
  line-height: 1.75;
  color: #6b5535;
  margin-left: 4.5rem;
}

.mission-pillars {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .mission-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mission-pillar {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,.2);
  background: #fff;
  transition: border-color .3s, box-shadow .3s;
}

.mission-pillar:hover {
  border-color: rgba(201,168,76,.5);
  box-shadow: 0 4px 16px rgba(201,168,76,.1);
}

.mission-pillar-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.3);
  background: rgba(201,168,76,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.mission-pillar h4 {
  font-size: .85rem;
  font-weight: 700;
  color: #1a1208;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.mission-pillar p {
  font-size: .8rem;
  line-height: 1.6;
  color: #6b5535;
  margin: 0;
}

/* ============================================================
   ECOSYSTEM PAGE - PHILOSOPHY SECTION
   ============================================================ */
.philosophy-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2840 100%);
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(201,168,76,.08) 0%, transparent 50%);
  pointer-events: none;
}

.philosophy-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.philosophy-number {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(201,168,76,.15);
  line-height: 1;
  margin-right: .5rem;
}

.philosophy-header h2 {
  display: inline;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .15em;
  vertical-align: middle;
}

.philosophy-quote {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 50rem;
  margin: 0 auto 4rem;
}

.quote-mark-left,
.quote-mark-right {
  position: absolute;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201,168,76,.2);
  line-height: 1;
  font-family: Georgia, serif;
}

.quote-mark-left {
  top: 0;
  left: 0;
}

.quote-mark-right {
  bottom: 0;
  right: 0;
}

.philosophy-quote p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 1;
}

.philosophy-pillars {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .philosophy-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.philosophy-pillar {
  text-align: center;
  padding: 0;
}

.philosophy-pillar-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.4);
  background: rgba(201,168,76,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: border-color .3s, background .3s;
}

.philosophy-pillar:hover .philosophy-pillar-icon {
  border-color: rgba(201,168,76,.8);
  background: rgba(201,168,76,.2);
}

.philosophy-pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: .5rem;
  letter-spacing: .1em;
}

.philosophy-pillar p {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}

/* ============================================================
   ECOSYSTEM PAGE - CORE VALUES SECTION
   ============================================================ */
.core-values-section {
  padding: 6rem 0;
  background: #faf7f0;
  overflow: hidden;
}

.core-values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.core-values-number {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(139,105,20,.15);
  line-height: 1;
  margin-right: .5rem;
}

.core-values-header h2 {
  display: inline;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1208;
  letter-spacing: .15em;
  vertical-align: middle;
}

.core-values-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .core-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.core-value-card {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(201,168,76,.2);
  transition: transform .3s, box-shadow .3s;
}

.core-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(201,168,76,.15);
}

.core-value-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.core-value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.core-value-card:hover .core-value-image img {
  transform: scale(1.08);
}

.core-value-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4), transparent 60%);
}

.core-value-icon {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B6914, #C9A84C);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  z-index: 10;
  transition: transform .3s;
}

.core-value-card:hover .core-value-icon {
  transform: translateX(-50%) scale(1.1);
}

.core-value-content {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.core-value-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1208;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.core-value-content p {
  font-size: .875rem;
  line-height: 1.7;
  color: #6b5535;
  margin: 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.section-tag span.line {
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: linear-gradient(to right, transparent, #C9A84C);
}
.section-tag span.line.rev {
  background: linear-gradient(to left, transparent, #C9A84C);
}
.section-tag span.label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #8B6914;
}

.btn-gold {
  display: inline-block;
  padding: .7rem 1.75rem;
  border-radius: 2px;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #8B6914, #C9A84C, #B8860B);
  transition: filter .2s, transform .2s;
  cursor: pointer;
  border: none;
}
.btn-gold:hover { filter: brightness(1.1); transform: scale(1.03); }

.btn-outline-gold {
  display: inline-block;
  padding: .7rem 1.75rem;
  border-radius: 2px;
  font-size: .875rem;
  font-weight: 700;
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,.5);
  transition: background .2s;
}
.btn-outline-gold:hover { background: rgba(201,168,76,.1); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .5s, box-shadow .5s, border-color .5s;
}

#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo img { width: 4rem; height: 4rem; object-fit: contain; }
.nav-logo-text { display: none; }
@media (min-width: 640px) {
  .nav-logo-text {
    display: block;
    font-weight: 700;
    font-size: .7rem;
    line-height: 1.4;
    letter-spacing: .05em;
  }
}
/* text colour depends on state */
#navbar:not(.scrolled) .nav-logo-text { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
#navbar.scrolled     .nav-logo-text { background: linear-gradient(135deg,#8B6914,#C9A84C,#B8860B,#C9A84C,#8B6914); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* Desktop links */
.nav-links {
  display: none;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
  }
}
.nav-links a {
  position: relative;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 1px;
  background: linear-gradient(to right, transparent, #C9A84C, transparent);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-links a:hover::after { transform: scaleX(1); }

#navbar:not(.scrolled) .nav-links a { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
#navbar:not(.scrolled) .nav-links a:hover { color: #F0C96B; }
#navbar.scrolled     .nav-links a { color: #3a2e1a; }
#navbar.scrolled     .nav-links a:hover { color: #8B6914; }

/* CTA */
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: block; } }

/* Hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 110;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
#navbar:not(.scrolled) .nav-toggle svg { stroke: #fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); }
#navbar.scrolled     .nav-toggle svg { stroke: #3a2e1a; }

/* Mobile drawer */
.nav-mobile {
  display: none;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,.2);
  padding: 1rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: .75rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: #5a4520;
  border-bottom: 1px solid rgba(201,168,76,.1);
  transition: color .2s;
}
.nav-mobile a:hover { color: #8B6914; }
.nav-mobile .btn-gold { margin-top: .75rem; width: 100%; text-align: center; border-radius: 2px; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.hero-overlay-lr {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,9,8,.9) 0%, rgba(10,9,8,.7) 50%, rgba(10,9,8,.4) 100%);
}
.hero-overlay-tb {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,.8) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.hero-tag .line { width: 2rem; height: 1px; background: linear-gradient(to right, #8B6914, #C9A84C); }
.hero-tag .badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,.4);
  padding: .35rem .75rem;
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.hero-title .white { color: #fff; }
.hero-title .subtitle {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 500;
  color: #d4b87a;
  margin-top: .25rem;
}

.hero-desc {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: #b8a07a;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-ctas .btn-gold {
  background: linear-gradient(135deg, #8B6914 0%, #C9A84C 40%, #F0C96B 65%, #C9A84C 85%);
  color: #0a0908;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-dot {
  height: 6px;
  border-radius: 2px;
  cursor: pointer;
  transition: width .3s, background .3s;
  border: none;
  width: 8px;
  background: rgba(201,168,76,.3);
}
.hero-dot.active {
  width: 2rem;
  background: linear-gradient(to right, #8B6914, #C9A84C);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats {
  position: relative;
  padding: 4rem 0;
  background: #faf7f0;
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  overflow: hidden;
}
#stats .gold-line-h { position: absolute; top: 0; left: 0; right: 0; }
#stats .gold-line-h.bottom { top: auto; bottom: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,.4);
  background: rgba(201,168,76,.1);
  transition: border-color .2s;
}
.stat-icon svg { width: 1.25rem; height: 1.25rem; stroke: #8B6914; fill: none; stroke-width: 2; }
.stat-card:hover .stat-icon { border-color: rgba(201,168,76,.8); }

.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label { font-size: .875rem; font-weight: 600; color: #2a1f0a; }

/* ============================================================
   ACTIVITIES SECTION
   ============================================================ */
#activities {
  position: relative;
  padding: 6rem 0;
  background: #fff;
  overflow: hidden;
}
#activities::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10rem;
  background: linear-gradient(180deg, #faf7f0 0%, transparent 100%);
  pointer-events: none;
}

.activities-header { text-align: center; margin-bottom: 4rem; }
.activities-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1208;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.activities-header p {
  color: #6b5535;
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.7;
}

.activities-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .activities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .activities-grid { grid-template-columns: repeat(3, 1fr); } }

.activity-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,.2);
  background: #fff;
  overflow: hidden;
  cursor: default;
  transition: border-color .3s, box-shadow .3s;
}
.activity-card:hover {
  border-color: rgba(201,168,76,.5);
  box-shadow: 0 4px 16px rgba(201,168,76,.1);
}
.activity-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.activity-card:hover::before { opacity: 1; }

.activity-watermark {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(201,168,76,.08);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.activity-icon {
  position: relative;
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,.3);
  background: rgba(201,168,76,.1);
  margin-bottom: 1.25rem;
  transition: border-color .3s;
}
.activity-card:hover .activity-icon { border-color: rgba(201,168,76,.6); }
.activity-icon svg { width: 1.25rem; height: 1.25rem; stroke: #8B6914; fill: none; stroke-width: 2; }

.activity-card h3 {
  position: relative;
  font-size: .95rem;
  font-weight: 700;
  color: #1a1208;
  margin-bottom: .5rem;
  line-height: 1.3;
}
.activity-card p {
  position: relative;
  font-size: .875rem;
  color: #6b5535;
  line-height: 1.65;
}

.activities-cta { text-align: center; margin-top: 4rem; }

/* ============================================================
   NETWORK / PARTNERS
   ============================================================ */
#network {
  position: relative;
  padding: 5rem 0;
  background: #faf7f0;
  overflow: hidden;
}
#network .gold-line-h { position: absolute; top: 0; left: 0; right: 0; }
#network .gold-line-h.bottom { top: auto; bottom: 0; }

.network-header { text-align: center; margin-bottom: 3rem; }
.network-header h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #1a1208;
  margin-bottom: .75rem;
}
.network-header p { font-size: .875rem; color: #6b5535; max-width: 28rem; margin-inline: auto; }

/* Marquee */
.marquee-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-fade-l,
.marquee-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}
.marquee-fade-l { left: 0; background: linear-gradient(to right, #faf7f0, transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(to left, #faf7f0, transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-item img {
  height: 5rem;
  width: 8.75rem;
  object-fit: contain;
  opacity: .7;
  transition: opacity .3s;
}
.marquee-item:hover img { opacity: 1; }

/* ============================================================
   NEWS SECTION
   ============================================================ */
#news {
  padding: 6rem 0;
  background: #fff;
  overflow: hidden;
}

.news-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .news-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.news-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1208;
  text-wrap: balance;
}
.news-header a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #8B6914;
  transition: color .2s;
}
.news-header a:hover { color: #C9A84C; }
.news-header a svg {
  width: 1rem; height: 1rem;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform .2s;
}
.news-header a:hover svg { transform: translateX(4px); }

.news-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 640px)  { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,.2);
  overflow: hidden;
  background: #fff;
  transition: border-color .3s, box-shadow .3s;
}
.news-card:hover {
  border-color: rgba(201,168,76,.5);
  box-shadow: 0 8px 24px rgba(201,168,76,.1);
}

.news-card-img {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-img .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
}
.news-card-img .badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  padding: .25rem .625rem;
  border-radius: 2px;
  background: linear-gradient(135deg, #8B6914, #C9A84C);
}
.news-card-img .category {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #F0C96B;
}

.news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-date {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: #8a7055;
  margin-bottom: .75rem;
}
.news-card-date svg { width: .875rem; height: .875rem; stroke: currentColor; fill: none; stroke-width: 2; }
.news-card-body h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #1a1208;
  line-height: 1.35;
  margin-bottom: .75rem;
  transition: color .2s;
}
.news-card:hover h3 { color: #8B6914; }
.news-card-body p {
  font-size: .875rem;
  color: #6b5535;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.news-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #8B6914;
  transition: color .2s;
  margin-top: auto;
}
.news-card-body .read-more:hover { color: #C9A84C; }
.news-card-body .read-more svg {
  width: .875rem; height: .875rem;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform .2s;
}
.news-card-body .read-more:hover svg { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #3d2c14;
  border-top: 1px solid rgba(201,168,76,.4);
}
footer .footer-inner {
  padding: 3.5rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand img { width: 6rem; height: 6rem; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p {
  font-size: .875rem;
  color: #d4b98a;
  line-height: 1.7;
  max-width: 22rem;
  margin-bottom: 1.25rem;
}
.footer-brand .tagline { font-size: .75rem; color: #b09070; font-style: italic; }

.footer-col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul a, .footer-col ul li {
  font-size: .875rem;
  color: #d4b98a;
  transition: color .2s;
}
.footer-col ul a:hover { color: #F0C96B; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { font-size: .75rem; color: #b09070; }
.footer-bottom .divider {
  flex: 1;
  height: 1px;
  margin: 0 2rem;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.5), transparent);
  display: none;
}
@media (min-width: 640px) { .footer-bottom .divider { display: block; } }
/* ---- About hero ---- */
    .about-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }
    .about-hero img.bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
    }
    .about-hero .overlay-dark  { position: absolute; inset: 0; background: rgba(13,10,5,.70); }
    .about-hero .overlay-fade  {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(13,10,5,.2) 0%, rgba(13,10,5,.1) 50%, rgba(13,10,5,.55) 100%);
    }
    .about-hero-content { position: relative; z-index: 10; max-width: 48rem; padding: 0 1rem; }
    .about-hero-content h1 {
      font-size: clamp(1.75rem, 4.5vw, 3.25rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 1.25rem;
      text-wrap: balance;
      line-height: 1.2;
    }
    .about-hero-content p {
      color: rgba(255,255,255,.80);
      font-size: clamp(.9rem, 1.5vw, 1.1rem);
      line-height: 1.75;
    }

    /* ---- Vision/Mission/Values ---- */
    .about-body { padding: 4rem 0 5rem; background: #faf7f0; }
    .about-divider {
      height: 1px; margin-bottom: 4rem;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,.5), transparent);
    }

    .vm-grid { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
    @media (min-width: 768px) { .vm-grid { grid-template-columns: 1fr 1fr; } }

    .vm-card {
      background: #fff;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 2px;
      padding: 2rem;
    }
    .vm-card-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
    .vm-badge {
      width: 2rem; height: 2rem;
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      background: linear-gradient(135deg, #8B6914, #C9A84C);
      color: #fff;
      font-size: .65rem;
      font-weight: 800;
    }
    .vm-card h2 { font-size: 1.1rem; font-weight: 800; color: #1a1208; }
    .vm-card p { font-size: .875rem; color: #5a4520; line-height: 1.7; }

    .values-header { text-align: center; margin-bottom: 2.5rem; }
    .values-header h2 { font-size: 1.25rem; font-weight: 800; color: #1a1208; margin-bottom: .4rem; }
    .values-header p { font-size: .875rem; color: #7a6a4a; }

    .values-grid { display: grid; gap: 1.5rem; }
    @media (min-width: 640px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

    .value-card {
      background: #fff;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 2px;
      padding: 1.75rem;
      text-align: center;
      transition: border-color .3s, box-shadow .3s;
    }
    .value-card:hover {
      border-color: rgba(201,168,76,.5);
      box-shadow: 0 2px 8px rgba(201,168,76,.1);
    }
    .value-num {
      width: 2.5rem; height: 2.5rem;
      border-radius: 2px;
      margin: 0 auto 1rem;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #8B6914, #C9A84C);
      color: #fff;
      font-size: .875rem;
      font-weight: 800;
    }
    .value-card h3 { font-size: .95rem; font-weight: 700; color: #1a1208; margin-bottom: .5rem; }
    .value-card p { font-size: .8125rem; color: #7a6a4a; line-height: 1.65; }

    /* ---- Board of Directors ---- */
    .board-section { padding: 5rem 0; background: #fff; }
    .board-grid { display: grid; gap: 2rem; margin-top: 3.5rem; }
    @media (min-width: 768px) { .board-grid { grid-template-columns: repeat(3, 1fr); } }

    .director-card {
      background: #faf7f0;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 2px;
      overflow: hidden;
      display: flex; flex-direction: column;
      transition: border-color .3s, box-shadow .3s;
    }
    .director-card:hover {
      border-color: rgba(201,168,76,.45);
      box-shadow: 0 4px 16px rgba(201,168,76,.1);
    }
    .director-photo {
      position: relative;
      width: 100%;
      aspect-ratio: 3/4;
		max-height: 280px;
      overflow: hidden;
      background: #f0ece0;
    }
    .director-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
    .director-photo-bar {
      position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, #8B6914, #C9A84C, #F0C96B, #C9A84C, #8B6914);
    }
    .director-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
    .director-info h3 { font-size: 1.1rem; font-weight: 800; color: #1a1208; line-height: 1.2; }
    .director-info .name-en { font-size: .75rem; color: #9a8060; margin-top: .2rem; }
    .director-badge {
      display: inline-block;
      margin-top: .5rem;
      padding: .2rem .75rem;
      border-radius: 2px;
      font-size: .75rem;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg, #8B6914, #C9A84C);
    }
    .director-bio { font-size: .875rem; color: #5a4520; line-height: 1.65; margin-top: 1rem; flex: 1; }

    /* ---- Advisory Board ---- */
    .advisory-section { padding: 5rem 0; background: #faf7f0; }
    .advisory-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
    @media (min-width: 640px)  { .advisory-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .advisory-grid { grid-template-columns: repeat(3, 1fr); } }

    .advisor-card {
      background: #fff;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 2px;
      padding: 1.5rem;
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: .75rem;
    }
    .advisor-avatar {
      width: 15rem; height: 15rem;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #8B6914, #C9A84C);
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
      overflow: hidden;
      flex-shrink: 0;
    }
    .advisor-avatar-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
    .advisor-card h3 { font-size: .875rem; font-weight: 600; color: #1a1208; }
    .advisor-card p { font-size: .75rem; color: #7a6a4a; line-height: 1.6; }

    /* ---- New Vision & Mission Section ---- */
    .vision-mission-section {
      padding: 5rem 0;
      background: #fff;
      position: relative;
    }
    .vision-mission-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 8rem;
      background: linear-gradient(180deg, #faf7f0 0%, transparent 100%);
      pointer-events: none;
    }
    .vm-wrapper { position: relative; }
    .vm-number {
      font-size: 4rem;
      font-weight: 800;
      color: rgba(201,168,76,.15);
      line-height: 1;
      margin-bottom: .5rem;
    }
    .vm-title {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      color: #1a1208;
      margin-bottom: 3rem;
      letter-spacing: .05em;
    }
    .vm-main-grid {
      display: grid;
      gap: 3rem;
    }
    @media (min-width: 1024px) {
      .vm-main-grid {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
      }
    }
    .vm-image-box {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(139,105,20,.15);
    }
    .vm-image-box img {
      width: 100%;
      height: 100%;
      min-height: 400px;
      object-fit: cover;
      display: block;
    }
    .vm-content-box {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    .vm-content-item {
      background: #faf7f0;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 4px;
      padding: 2rem;
    }
    .vm-icon {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #8B6914, #C9A84C);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      margin-bottom: 1.25rem;
    }
    .vm-content-item h3 {
      font-size: 1.25rem;
      font-weight: 800;
      color: #1a1208;
      margin-bottom: 1rem;
      letter-spacing: .05em;
    }
    .vm-content-item > p {
      font-size: .95rem;
      color: #5a4520;
      line-height: 1.75;
    }
    .mission-items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .mission-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .mission-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 4px;
      background: linear-gradient(135deg, #8B6914, #C9A84C);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }
    .mission-item h4 {
      font-size: .875rem;
      font-weight: 800;
      color: #1a1208;
      margin-bottom: .5rem;
      letter-spacing: .05em;
    }
    .mission-item p {
      font-size: .8125rem;
      color: #5a4520;
      line-height: 1.65;
    }

    /* ---- Philosophy & Core Values Grid Section ---- */
    .philosophy-values-section {
      padding: 5rem 0;
      background: #faf7f0;
    }
    .pv-grid {
      display: grid;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 1024px) {
      .pv-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }
    .section-number {
      font-size: 4rem;
      font-weight: 800;
      color: rgba(201,168,76,.15);
      line-height: 1;
      margin-bottom: .5rem;
    }
    .section-title {
      font-size: clamp(1.25rem, 2.5vw, 1.5rem);
      font-weight: 800;
      color: #1a1208;
      margin-bottom: 2rem;
      letter-spacing: .05em;
    }

    /* Philosophy Box */
    .philosophy-box {
      background: linear-gradient(135deg, #0d1526 0%, #1a2740 100%);
      border-radius: 4px;
      padding: 3rem 2.5rem;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .philosophy-box::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .philosophy-box .section-number {
      color: rgba(255,255,255,.1);
    }
    .philosophy-box .section-title {
      color: #fff;
    }
    .philosophy-quote {
      position: relative;
      padding: 2rem 0;
      margin: 2rem 0;
    }
    .quote-icon {
      color: rgba(201,168,76,.3);
      width: 48px;
      height: 48px;
      margin-bottom: 1rem;
    }
    .quote-icon.quote-close {
      margin-top: 1rem;
      margin-bottom: 0;
      margin-left: auto;
      display: block;
    }
    .philosophy-quote p {
      font-size: 1.1rem;
      line-height: 1.75;
      font-weight: 500;
      text-align: center;
      color: rgba(255,255,255,.95);
      font-style: italic;
    }
    .philosophy-icons {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    @media (max-width: 640px) {
      .philosophy-icons {
        grid-template-columns: 1fr;
      }
    }
    .philosophy-icon-item {
      text-align: center;
    }
    .philosophy-icon-circle {
      width: 5rem;
      height: 5rem;
      border-radius: 50%;
      background: rgba(201,168,76,.15);
      border: 2px solid rgba(201,168,76,.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #C9A84C;
      margin: 0 auto 1rem;
      transition: all .3s;
    }
    .philosophy-icon-item:hover .philosophy-icon-circle {
      background: rgba(201,168,76,.25);
      border-color: #C9A84C;
      transform: translateY(-4px);
    }
    .philosophy-icon-item h4 {
      font-size: .875rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: .5rem;
      letter-spacing: .05em;
    }
    .philosophy-icon-item p {
      font-size: .75rem;
      color: rgba(255,255,255,.7);
      line-height: 1.5;
    }

    /* Core Values Box */
    .core-values-box {
      background: #fff;
      border-radius: 4px;
      padding: 3rem 2.5rem;
      border: 1px solid rgba(201,168,76,.2);
    }
    .core-values-list {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .core-value-item {
      display: grid;
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      text-align: center;
    }
    .cv-image {
      position: relative;
      width: 100%;
      height: 200px;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 1.25rem;
      grid-row: 1;
      grid-column: 1;
    }
    .cv-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .cv-icon {
      grid-row: 1;
      grid-column: 1;
      align-self: end;
      justify-self: center;
      width: 4rem;
      height: 4rem;
      transform: translateY(20%);
      border-radius: 50%;
      background: linear-gradient(135deg, #8B6914, #C9A84C);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 4px 12px rgba(139,105,20,.3);
      z-index: 10;
      transition: transform .3s;
    }
    .core-value-item h4 {
      font-size: 1rem;
      font-weight: 800;
      color: #1a1208;
      margin-bottom: .75rem;
      letter-spacing: .05em;
      margin-top: 2rem;
    }
    .core-value-item p {
      font-size: .8125rem;
      color: #5a4520;
      line-height: 1.65;
    }
	
.events-header {
      padding: 8rem 0 3.5rem;
      background: #faf7f0;
      border-bottom: 1px solid rgba(201,168,76,.2);
    }
    .events-header h1 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 800; color: #1a1208;
      margin-bottom: .75rem; text-wrap: balance;
    }
    .events-header p { font-size: .875rem; color: #7a6a4a; max-width: 36rem; }

    .filter-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
    .filter-pill {
      padding: .375rem 1rem;
      border-radius: 9999px;
      font-size: .75rem;
      font-weight: 500;
      cursor: pointer;
      border: 1px solid rgba(201,168,76,.3);
      color: #8B6914;
      background: transparent;
      transition: background .2s, color .2s, border-color .2s;
    }
    .filter-pill.active {
      background: #C9A84C;
      border-color: #C9A84C;
      color: #fff;
    }

    .events-main { padding: 4rem 0 5rem; background: #fff; }
    .events-grid { display: grid; gap: 2rem; }
    @media (min-width: 640px)  { .events-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }

    .event-card {
      display: flex; flex-direction: column;
      border-radius: 2px;
      border: 1px solid rgba(201,168,76,.2);
      overflow: hidden;
      background: #fff;
      transition: border-color .3s, box-shadow .3s;
    }
    .event-card:hover {
      border-color: rgba(201,168,76,.5);
      box-shadow: 0 8px 24px rgba(201,168,76,.1);
    }
    .event-card-img { position: relative; height: 13rem; overflow: hidden; }
    .event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .event-card:hover .event-card-img img { transform: scale(1.05); }
    .event-card-img .img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5), transparent); }
    .event-card-img .cat-label {
      position: absolute; bottom: 1rem; left: 1rem;
      font-size: .7rem; font-weight: 500; letter-spacing: .1em;
      text-transform: uppercase; color: #F0C96B;
    }
    .event-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
    .event-card-date {
      display: flex; align-items: center; gap: .4rem;
      font-size: .75rem; color: #8a7055; margin-bottom: .75rem;
    }
    .event-card-date svg { width: .875rem; height: .875rem; stroke: currentColor; fill: none; stroke-width: 2; }
    .event-cat-pill {
      display: inline-block; align-self: flex-start;
      font-size: .65rem; font-weight: 700;
      padding: .2rem .625rem;
      border-radius: 9999px;
      margin-bottom: .75rem;
    }
    .event-cat-pill.xtm { background: rgba(201,168,76,.15); color: #8B6914; }
    .event-cat-pill.kst { background: rgba(26,18,8,.08);   color: #3a2e1a; }
    .event-card-body h2 {
      font-size: .95rem; font-weight: 700; color: #1a1208;
      line-height: 1.35; margin-bottom: .75rem;
      transition: color .2s;
    }
    .event-card:hover h2 { color: #8B6914; }
    .event-card-body p { font-size: .875rem; color: #6b5535; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
    .event-card-body a.read-more {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .875rem; font-weight: 500; color: #8B6914;
      transition: color .2s; margin-top: auto;
    }
    .event-card-body a.read-more:hover { color: #C9A84C; }
    .event-card-body a.read-more svg {
      width: .875rem; height: .875rem;
      stroke: currentColor; fill: none; stroke-width: 2;
      transition: transform .2s;
    }
    .event-card-body a.read-more:hover svg { transform: translateX(4px); }

    .event-card[data-cat="hidden"] { display: none; }
/* Ecosystem hero */
    .eco-hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden;
    }
    .eco-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .eco-hero .overlay-dark { position: absolute; inset: 0; background: rgba(13,10,5,.70); }
    .eco-hero .overlay-fade {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(13,10,5,.2) 0%, rgba(13,10,5,.1) 50%, rgba(13,10,5,.55) 100%);
    }
    .eco-hero-content { position: relative; z-index: 10; max-width: 40rem; padding: 0 1rem; }
    .eco-hero-content h1 {
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 800; color: #fff;
      margin-bottom: 1.25rem; line-height: 1.2; text-wrap: balance;
    }
    .eco-hero-content p { color: rgba(255,255,255,.8); font-size: clamp(.9rem, 1.5vw, 1.05rem); line-height: 1.75; }

    /* Section labels */
    .section-label {
      display: flex; align-items: center; gap: 1rem;
      margin-bottom: .75rem;
    }
    .section-label span.line { flex: 1; height: 1px; }
    .section-label span.text {
      font-size: .7rem; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: #C9A84C;
    }

    /* Associations */
    .assoc-section { padding: 4rem 0; background: #fff; }
    .assoc-section > .container > p { text-align: center; font-size: .875rem; color: #7a6a4a; margin-bottom: 3rem; }

    .assoc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    @media (min-width: 640px)  { .assoc-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1024px) { .assoc-grid { grid-template-columns: repeat(6, 1fr); } }

    .assoc-item {
      display: flex; flex-direction: column;
      align-items: center; gap: 1rem; padding: 1.25rem;
      border: 1px solid transparent;
      border-radius: 2px;
      transition: border-color .3s, background .3s;
      text-decoration: none;
    }
    .assoc-item:hover { border-color: rgba(201,168,76,.3); background: #faf7f0; }
    .assoc-item-logo {
      display: flex; align-items: center; justify-content: center;
      height: 4rem; width: 100%;
    }
    .assoc-item-logo img {
      max-height: 3.5rem; width: auto; max-width: 7.5rem;
      object-fit: contain; opacity: .65;
      transition: opacity .3s, transform .3s;
    }
    .assoc-item:hover .assoc-item-logo img { opacity: 1; transform: scale(1.05); }
    .assoc-item-name {
      font-size: .75rem; font-weight: 600; color: #3a2e1a;
      text-align: center; line-height: 1.3;
      transition: color .3s;
    }
    .assoc-item:hover .assoc-item-name { color: #8B6914; }
    .assoc-item-full { font-size: .65rem; color: #9a8a6a; text-align: center; line-height: 1.3; margin-top: .25rem; display: none; }
    @media (min-width: 640px) { .assoc-item-full { display: block; } }

    /* Gold divider */
    .gold-divider-full {
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,.5) 30%, rgba(240,201,107,.7) 50%, rgba(201,168,76,.5) 70%, transparent 100%);
    }

    /* Enterprises */
    .ent-section { padding: 4rem 0; background: #faf7f0; }
    .ent-section > .container > p { text-align: center; font-size: .875rem; color: #7a6a4a; margin-bottom: 3rem; }

    .ent-grid { display: grid; gap: 1.25rem; }
    @media (min-width: 640px)  { .ent-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .ent-grid { grid-template-columns: repeat(3, 1fr); } }

    .ent-card {
      background: #fff;
      border: 1px solid rgba(201,168,76,.15);
      border-radius: 2px;
      padding: 1.5rem;
      display: flex; gap: 1rem; align-items: flex-start;
      transition: border-color .3s, box-shadow .3s;
    }
    .ent-card:hover {
      border-color: rgba(201,168,76,.45);
      box-shadow: 0 2px 8px rgba(201,168,76,.1);
    }
    .ent-logo {
      flex-shrink: 0;
      width: 3.5rem; height: 3.5rem;
      display: flex; align-items: center; justify-content: center;
    }
    .ent-logo img { max-height: 3rem; width: auto; max-width: 3.5rem; object-fit: contain; opacity: .75; transition: opacity .3s; }
    .ent-card:hover .ent-logo img { opacity: 1; }
    .ent-info { min-width: 0; }
    .ent-sector {
      display: inline-block;
      font-size: .65rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase;
      padding: .15rem .5rem;
      border-radius: 2px;
      margin-bottom: .4rem;
      background: rgba(201,168,76,.12); color: #8B6914;
    }
    .ent-info h3 { font-size: .875rem; font-weight: 700; color: #1a1208; margin-bottom: .375rem; line-height: 1.3; }
    .ent-info p { font-size: .8125rem; color: #7a6a4a; line-height: 1.6; }
	
	.docs-header { padding: 8rem 0 3rem; text-align: center; background: #faf7f0; }
    .docs-header h1 { font-size: clamp(1.75rem,4vw,2.5rem); font-weight:800; color:#1a1208; text-wrap:balance; }
    .docs-header p { font-size:.875rem; color:#7a6a4a; max-width:28rem; margin:.75rem auto 0; line-height:1.7; }

    .docs-body { padding: 0 0 5rem; background: #faf7f0; }
    .docs-inner { max-width: 60rem; margin: 0 auto; padding: 0 1rem; display: flex; flex-direction: column; gap: 3.5rem; }

    /* Sub-section headers */
    .docs-section-label {
      display: flex; align-items: center; gap: .5rem;
      margin-bottom: 1.5rem;
    }
    .docs-section-label svg { width: 1rem; height: 1rem; stroke: #C9A84C; fill: none; stroke-width: 2; flex-shrink: 0; }
    .docs-section-label span { font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #8B6914; }

    /* Certificates */
    .cert-grid { display: grid; gap: 1.5rem; }
    @media (min-width: 640px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }

    .cert-card {
      background: #fff;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 2px;
      overflow: hidden;
    }
    .cert-card-img { 
      position: relative;
      width: 100%;
      aspect-ratio: 3/4;
      background: #f0ece0;
    }
    .cert-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .cert-card-caption {
      padding: 1.25rem;
      border-top: 1px solid rgba(201,168,76,.15);
    }
    .cert-card-caption p.name { font-size: .875rem; font-weight: 700; color: #1a1208; margin-bottom: .25rem; }
    .cert-card-caption p.desc { font-size: .8125rem; color: #7a6a4a; line-height: 1.65; }

    /* Documents */
    .doc-row {
      background: #fff;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 2px;
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .doc-row-left { display: flex; align-items: flex-start; gap: 1rem; }
    .doc-icon {
      width: 2.5rem; height: 2.5rem;
      border-radius: 2px;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #8B6914, #C9A84C);
    }
    .doc-icon svg { width: 1rem; height: 1rem; stroke: #fff; fill: none; stroke-width: 2; }
    .doc-info p.name { font-size: .875rem; font-weight: 700; color: #1a1208; }
    .doc-info p.desc { font-size: .8125rem; color: #7a6a4a; line-height: 1.6; margin-top: .25rem; }
    .btn-download {
      flex-shrink: 0;
      display: inline-flex; align-items: center; gap: .375rem;
      padding: .5rem 1rem;
      border-radius: 2px;
      font-size: .75rem; font-weight: 700; color: #fff;
      background: linear-gradient(135deg, #8B6914, #C9A84C);
      transition: filter .2s;
    }
    .btn-download:hover { filter: brightness(1.1); }
    .btn-download svg { width: .875rem; height: .875rem; stroke: #fff; fill: none; stroke-width: 2; }
	.page-header { padding: 8rem 0 3.5rem; text-align: center; background: #faf7f0; }
    .page-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: #1a1208; margin-bottom: .75rem; text-wrap: balance; }
    .page-header p { font-size: .875rem; color: #7a6a4a; max-width: 36rem; margin: 0 auto; line-height: 1.7; }

    .contact-body { padding: 0 0 5rem; background: #faf7f0; }
    .contact-grid { display: grid; gap: 2rem; }
    @media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

    .contact-panel {
      background: #fff;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 2px;
      padding: 1.75rem;
    }
    .contact-panel h2 {
      font-size: 1.1rem; font-weight: 800; color: #1a1208;
      margin-bottom: 1.25rem;
      display: flex; align-items: center; gap: .5rem;
    }
    .contact-panel h2 svg { width: 1.25rem; height: 1.25rem; stroke: #C9A84C; fill: none; stroke-width: 2; flex-shrink: 0; }

    .address-label { font-size: .7rem; color: #C9A84C; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .25rem; }
    .address-text { font-size: .875rem; color: #3a2e1a; line-height: 1.65; }
    .address-divider { height: 1px; margin: 1rem 0; background: linear-gradient(90deg, rgba(201,168,76,.3), transparent); }

    .contact-row { display: flex; align-items: center; gap: 1rem; }
    .contact-row + .contact-row { margin-top: 1.25rem; }
    .contact-icon {
      width: 2.5rem; height: 2.5rem;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #8B6914, #C9A84C);
    }
    .contact-icon svg { width: 1rem; height: 1rem; stroke: #fff; fill: none; stroke-width: 2; }
    .contact-row-label { font-size: .75rem; color: #7a6a4a; margin-bottom: .2rem; }
    .contact-row-value { font-size: .875rem; font-weight: 600; color: #1a1208; }
    .contact-row-value a { color: #1a1208; transition: color .2s; }
    .contact-row-value a:hover { color: #8B6914; }

    /* QR section */
    .qr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .qr-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
    .qr-frame {
      border: 2px solid rgba(201,168,76,.3);
      border-radius: 2px;
      padding: .75rem;
      background: #faf7f0;
    }
    .qr-frame img { width: 10rem; height: 10rem; object-fit: contain; display: block; }
    .qr-item p.qr-name { font-weight: 700; color: #1a1208; font-size: .875rem; text-align: center; }
    .qr-item p.qr-hint { font-size: .75rem; color: #7a6a4a; text-align: center; margin-top: .2rem; }
    .qr-note {
      margin-top: 2rem; padding: 1rem;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 2px;
      background: rgba(201,168,76,.05);
      font-size: .8125rem; color: #7a6a4a; line-height: 1.6;
    }

    /* Form */
    .form-title { font-size: 1.1rem; font-weight: 800; color: #1a1208; margin-bottom: 1.5rem; }
    .form-field { margin-bottom: 1rem; }
    .form-field label { display: block; font-size: .75rem; font-weight: 500; color: #6b5535; margin-bottom: .4rem; }
    .form-field input,
    .form-field textarea {
      width: 100%;
      padding: .625rem 1rem;
      border: 1px solid rgba(201,168,76,.3);
      border-radius: 2px;
      font-size: .875rem;
      color: #1a1208;
      background: #faf7f0;
      font-family: inherit;
      outline: none;
      transition: border-color .2s;
    }
    .form-field input:focus,
    .form-field textarea:focus { border-color: rgba(201,168,76,.6); }
    .form-field textarea { resize: none; }
    .form-submit {
      width: 100%;
      padding: .875rem;
      border: none;
      border-radius: 2px;
      font-size: .875rem;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      background: linear-gradient(135deg, #8B6914 0%, #C9A84C 40%, #B8860B 65%, #C9A84C 85%);
      display: flex; align-items: center; justify-content: center; gap: .5rem;
      transition: filter .2s, box-shadow .2s;
    }
    .form-submit:hover { filter: brightness(1.1); box-shadow: 0 4px 16px rgba(201,168,76,.3); }
    .form-submit svg { width: 1rem; height: 1rem; stroke: #fff; fill: none; stroke-width: 2; }
    .form-success { text-align: center; padding: 3rem 0; display: none; }
    .form-success .tick { font-size: 2.5rem; margin-bottom: 1rem; }
    .form-success h4 { font-size: 1.1rem; font-weight: 800; color: #1a1208; margin-bottom: .5rem; }
    .form-success p { font-size: .875rem; color: #6b5535; }

    /* Map */
    .map-wrap {
      margin-top: 2rem;
      background: #fff;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 2px;
      overflow: hidden;
    }
    .map-wrap iframe { display: block; }
	.detail-main { padding: 7rem 0 5rem; background: #fff; }
    .detail-inner { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }

    .back-link {
      display: inline-flex; align-items: center; gap: .375rem;
      font-size: .875rem; color: #8B6914;
      transition: color .2s; margin-bottom: 2rem;
    }
    .back-link:hover { color: #C9A84C; }
    .back-link svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; }

    .detail-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-bottom: 1rem; }
    .detail-meta .date {
      display: inline-flex; align-items: center; gap: .375rem;
      font-size: .75rem; color: #8a7055;
    }
    .detail-meta .date svg { width: .875rem; height: .875rem; stroke: currentColor; fill: none; stroke-width: 2; }
    .detail-meta .cat-pill {
      display: inline-flex; align-items: center; gap: .375rem;
      font-size: .75rem; font-weight: 500;
      padding: .2rem .625rem;
      border-radius: 9999px;
      background: rgba(201,168,76,.15); color: #8B6914;
    }
    .detail-meta .cat-pill svg { width: .75rem; height: .75rem; stroke: currentColor; fill: none; stroke-width: 2; }

    .detail-title {
      font-size: clamp(1.4rem, 3.5vw, 1.875rem);
      font-weight: 800; color: #1a1208;
      line-height: 1.3; margin-bottom: 2rem;
      text-wrap: balance;
    }
    .detail-cover {
      position: relative; width: 100%;
      height: 16rem;
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 2.5rem;
      border: 1px solid rgba(201,168,76,.15);
    }
    @media (min-width: 640px) { .detail-cover { height: 20rem; } }
    .detail-cover img { width: 100%; height: 100%; object-fit: cover; }

    .detail-content p {
      font-size: .9375rem; color: #4a3820;
      line-height: 1.85; margin-bottom: 1.25rem;
    }

    .detail-divider {
      height: 1px; margin: 3rem 0;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,.5), transparent);
    }

    .related-title { font-size: 1.1rem; font-weight: 800; color: #1a1208; margin-bottom: 1.5rem; }
    .related-grid { display: grid; gap: 1.5rem; }
    @media (min-width: 640px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
    .related-card {
      display: flex; gap: 1rem;
      padding: 1rem;
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 2px;
      background: #faf7f0;
      transition: border-color .2s;
    }
    .related-card:hover { border-color: rgba(201,168,76,.5); }
    .related-thumb {
      position: relative;
      width: 5rem; height: 5rem;
      flex-shrink: 0; border-radius: 2px; overflow: hidden;
    }
    .related-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .related-info { display: flex; flex-direction: column; justify-content: center; }
    .related-info .date { font-size: .75rem; color: #8a7055; margin-bottom: .25rem; }
    .related-info h3 {
      font-size: .875rem; font-weight: 600; color: #1a1208;
      line-height: 1.35; transition: color .2s;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .related-card:hover h3 { color: #8B6914; }

    .not-found { text-align: center; padding: 4rem 1rem; }
    .not-found h2 { font-size: 1.5rem; font-weight: 700; color: #1a1208; margin-bottom: .75rem; }
    .not-found p { color: #6b5535; margin-bottom: 1.5rem; }

/* ============================================================
   Fade-up entrance animation (entrance-animation.js)
   ============================================================ */

.fade-up-enter {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up-enter.fade-up-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger sibling sections slightly for a more polished feel */
.fade-up-enter:nth-child(2).fade-up-visible { transition-delay: 0.05s; }
.fade-up-enter:nth-child(3).fade-up-visible { transition-delay: 0.10s; }
.fade-up-enter:nth-child(4).fade-up-visible { transition-delay: 0.15s; }

/* Disable all animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up-enter,
  .fade-up-enter.fade-up-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}