/* ── TOKENS ── */
:root {
  --sage-50:  #f4f7f3;
  --sage-100: #e6ede4;
  --sage-200: #c9d9c4;
  --sage-400: #8aad82;
  --sage-600: #4e7c46;
  --sage-700: #3a6034;
  --sage-800: #2a4726;
  --sage-900: #1a2e18;
  --gold:     #c9a84c;
  --gold-dk:  #a8882e;
  --white:    #ffffff;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-500: #5e6570; /* darkened for AA contrast on sage-50 panels (was #6b7280 = 4.48:1) */
  --gray-600: #4b5563; /* was referenced but never defined */
  --gray-700: #374151;
  --gray-900: #111827;
  --dark-bg:  #1a2e18;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --shadow-xl: 0 16px 60px rgba(0,0,0,.22);
  --space-xs:  0.375rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --transition: all .25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--gray-900); background: var(--white); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--gray-700); }
.label {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--sage-600); margin-bottom: .5rem; display: block;
}
.label.light { color: var(--sage-200); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.6rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent; font-family: var(--font-sans);
}
.btn-primary { background: var(--sage-600); color: var(--white); }
.btn-primary:hover { background: var(--sage-700); }
.btn-gold  { background: var(--gold); color: var(--gray-900); }
.btn-gold:hover { background: var(--gold-dk); }
.btn-outline { border-color: var(--sage-600); color: var(--sage-600); background: transparent; }
.btn-outline:hover { background: var(--sage-600); color: var(--white); }
.navbar:not(.scrolled) .btn-outline { border-color: var(--white); color: var(--white); }
.navbar:not(.scrolled) .btn-outline:hover { background: var(--white); color: var(--sage-700); }
.btn-ghost { border-color: rgba(255,255,255,.6); color: var(--white); background: rgba(255,255,255,.1); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline-sm { padding: .45rem 1rem; font-size: .8rem; border: 1.5px solid var(--sage-600); color: var(--sage-600); border-radius: var(--radius-sm); font-weight: 600; transition: var(--transition); display: inline-block; }
.btn-outline-sm:hover { background: var(--sage-600); color: var(--white); }
.btn-primary-sm { padding: .45rem 1rem; font-size: .8rem; background: var(--sage-600); color: var(--white); border-radius: var(--radius-sm); font-weight: 600; transition: var(--transition); display: inline-block; }
.btn-primary-sm:hover { background: var(--sage-700); }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.full-width { width: 100%; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background .35s ease, box-shadow .35s ease;
}
.navbar.scrolled { background: var(--white); box-shadow: var(--shadow); }
.navbar.scrolled .logo-th,
.navbar.scrolled .logo-en,
.navbar.scrolled .nav-links a { color: var(--gray-900); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; padding: 0; }
.logo { display: flex; align-items: center; }
.logo-img { height: 72px; width: auto; display: block; }
/* Invert to white on dark (hero) background, revert on scrolled white navbar */
.logo-img { filter: brightness(0) invert(1); transition: filter .25s ease; }
.navbar.scrolled .logo-img { filter: none; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--white); text-shadow: 0 1px 3px rgba(0,0,0,.5); transition: var(--transition); }
.nav-links a:hover { color: var(--white); opacity: .85; }
.navbar.scrolled .nav-links a { color: var(--gray-700); text-shadow: none; }
.navbar.scrolled .nav-links a:hover { color: var(--sage-700); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--gray-900); }
.nav-links.open { display: flex; }
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 80px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 1.5rem; gap: 1rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links a { color: var(--gray-900); font-size: 1rem; }
  .nav-links .btn-outline { color: var(--sage-600); border-color: var(--sage-600); }
}

/* ── Nav dropdown (Knowledge) ── */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle {
  font-family: inherit; font-size: .875rem; font-weight: 500; color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,.5); background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .25rem; padding: 0; transition: var(--transition);
}
.nav-dropdown-toggle:hover { opacity: .85; }
.navbar.scrolled .nav-dropdown-toggle { color: var(--gray-700); text-shadow: none; }
.navbar.scrolled .nav-dropdown-toggle:hover { color: var(--sage-700); opacity: 1; }
.nav-dropdown-toggle.page-nav-active { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.nav-dropdown-caret { width: 13px; height: 13px; flex-shrink: 0; transition: transform .2s ease; }
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret,
.nav-dropdown.open .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; min-width: 195px;
  transform: translateX(-50%) translateY(.6rem);
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: .45rem; display: flex; flex-direction: column; gap: .1rem;
  opacity: 0; visibility: hidden; z-index: 1100;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(.3rem);
}
.nav-dropdown-menu a {
  color: var(--gray-700) !important; text-shadow: none !important; opacity: 1 !important;
  font-size: .875rem; font-weight: 500; padding: .55rem .8rem; border-radius: 8px; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--sage-50); color: var(--sage-700) !important; }
.nav-dropdown-menu a.page-nav-active,
.nav-dropdown-menu a[aria-current="page"] { background: var(--sage-100); color: var(--sage-700) !important; font-weight: 600; }

@media (max-width: 900px) {
  .nav-dropdown { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-dropdown-toggle { color: var(--gray-900); font-size: 1rem; }
  .nav-dropdown-toggle.page-nav-active { text-decoration: none; color: var(--sage-700); }
  .nav-dropdown-caret { display: none; }
  .nav-dropdown-menu {
    position: static; transform: none !important; opacity: 1; visibility: visible;
    box-shadow: none; background: none; padding: .25rem 0 .25rem 1rem; min-width: 0; gap: .25rem;
  }
  .nav-dropdown-menu a { font-size: 1rem; padding: .35rem 0; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  background: url('/images/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,46,24,.82) 0%, rgba(26,46,24,.65) 50%, rgba(13,28,11,.78) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 8rem 0 5rem; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 500;
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.dot { width: 7px; height: 7px; background: var(--sage-400); border-radius: 50%; display: inline-block; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 580px; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); }
.hero-logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; opacity: .15; }
.hero-logo img { height: 400px; width: auto; display: block; filter: brightness(0) invert(1); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--sage-700); padding: .9rem 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 500; }
.trust-icon { font-size: 1rem; }

/* ── STATS STRIP ── */
.intro-strip { background: var(--sage-50); border-bottom: 1px solid var(--sage-100); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.strip-item { padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid var(--sage-100); display: flex; flex-direction: column; gap: .25rem; }
.strip-item:last-child { border-right: none; }
.strip-item strong { font-family: var(--font-serif); font-size: 1.6rem; color: var(--sage-800); display: block; }
.strip-item span { font-size: .8rem; color: var(--gray-500); font-weight: 500; }

/* ── GENERIC SECTION ── */
.section { padding: var(--space-3xl) 0; }
.bg-light { background: var(--sage-50); }
.bg-green { background: var(--sage-800); }
.bg-dark  { background: var(--dark-bg); }
.section-header { margin-bottom: var(--space-2xl); }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: .75rem; }
.section-sub { color: var(--gray-500); font-size: 1rem; max-width: 640px; margin: 0 auto; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.section-photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-lg); }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; }
.about-text .btn { margin-top: .5rem; }
.img-placeholder {
  background: linear-gradient(135deg, var(--sage-100) 0%, var(--sage-200) 100%);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  color: var(--sage-600); font-size: .85rem; font-weight: 500;
}
.about-ph { height: 420px; }
.about-img { height: 420px; border-radius: var(--radius-lg); overflow: hidden; }

/* ── PARADIGM (PERSONALISED MEDICINE) ── */
.paradigm { background: linear-gradient(160deg, var(--sage-800) 0%, var(--sage-900) 100%); }
.paradigm .label { color: var(--sage-300); }
.paradigm h2, .paradigm .section-sub { color: rgba(255,255,255,.9); }
.paradigm .section-sub { color: rgba(255,255,255,.7); }
.paradigm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: var(--space-2xl); }
.paradigm-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition);
}
.paradigm-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.paradigm-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.paradigm-card h3 { color: var(--white); margin-bottom: .75rem; font-size: 1.1rem; }
.paradigm-card p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ── FOUR ELEMENTS ── */
.elements-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.element-card { background: var(--white); border: 1px solid var(--sage-100); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); }
.element-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.element-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.element-card h3 { color: var(--sage-800); margin-bottom: .75rem; font-size: 1.05rem; }
.element-card p { font-size: .875rem; }

/* ── STEPS ── */
.process { background: var(--white); }
.steps { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; gap: 0; margin-top: var(--space-2xl); }
.step { display: flex; flex-direction: column; align-items: center; gap: .6rem; min-width: 120px; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage-600); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; font-family: var(--font-serif);
}
.step-label { font-size: .8rem; font-weight: 600; color: var(--gray-700); text-align: center; max-width: 90px; line-height: 1.3; }
.step-connector { width: 60px; height: 2px; background: var(--sage-200); margin-top: 25px; flex-shrink: 0; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-img { height: 180px; }
.svc-1 { background: linear-gradient(135deg, #a8d5a2, #4e7c46); }
.svc-2 { background: linear-gradient(135deg, #d5c9a2, #7c6a46); }
.svc-3 { background: linear-gradient(135deg, #a2c4d5, #466c7c); }
.svc-4 { background: linear-gradient(135deg, #c4d5a2, #5a7c46); }
.service-body { padding: 1.75rem; }
.service-body h3 { color: var(--sage-800); margin-bottom: .75rem; font-size: 1.1rem; }
.service-body p { font-size: .875rem; margin-bottom: 1rem; }
.service-body ul { margin-bottom: 1.25rem; }
.service-body ul li { font-size: .8rem; color: var(--gray-600); padding: .2rem 0; padding-left: 1rem; position: relative; }
.service-body ul li::before { content: '·'; position: absolute; left: 0; color: var(--sage-600); font-weight: 700; }

/* ── PILLARS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.pillar-card { background: var(--sage-50); border: 1px solid var(--sage-100); border-radius: var(--radius-lg); padding: 1.75rem 1.25rem; text-align: center; transition: var(--transition); }
.pillar-card:hover { background: var(--white); box-shadow: var(--shadow-md); }
.pillar-icon { font-size: 2rem; margin-bottom: .75rem; }
.pillar-card h3 { font-size: .95rem; color: var(--sage-800); margin-bottom: .5rem; }
.pillar-card p { font-size: .8rem; color: var(--gray-500); }

/* ── PROGRAMS ── */
.programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: start; }
.program-card { background: var(--white); border: 1.5px solid var(--sage-100); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: var(--transition); }
.program-card:hover { box-shadow: var(--shadow-md); }
.program-card.featured { border-color: var(--sage-600); box-shadow: var(--shadow-md); }
.program-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--sage-600); color: var(--white); font-size: .7rem; font-weight: 700; padding: .25rem .75rem; border-radius: 100px; white-space: nowrap; }
.program-card h3 { color: var(--sage-800); margin-bottom: .5rem; font-size: 1.05rem; }
.program-duration { font-size: .75rem; color: var(--sage-600); font-weight: 600; margin-bottom: .75rem; display: block; }
.program-card p { font-size: .85rem; margin-bottom: 1rem; }
.program-card ul { margin-bottom: 1.25rem; }
.program-card ul li { font-size: .8rem; color: var(--gray-600); padding: .25rem 0; padding-left: 1rem; position: relative; }
.program-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--sage-600); font-size: .7rem; font-weight: 700; }

/* ── RESEARCH ── */
.research { background: var(--white); }
.research-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.research-card { background: var(--sage-50); border: 1px solid var(--sage-100); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.research-card:hover { box-shadow: var(--shadow-md); }
.research-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: var(--sage-600); color: var(--white); padding: .2rem .6rem; border-radius: 4px; display: inline-block; margin-bottom: .75rem; }
.research-card h3 { color: var(--sage-800); margin-bottom: .75rem; font-size: 1rem; }
.research-card p { font-size: .875rem; margin-bottom: 1rem; }
.citation { font-size: .75rem; color: var(--gray-500); border-top: 1px solid var(--sage-200); padding-top: .75rem; font-style: italic; }

/* ── FARM ── */
.farm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.farm-text h2 { color: var(--white); margin-bottom: 1rem; }
.farm-text p { color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.farm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
.farm-stats > div { text-align: center; }
.farm-stats strong { display: block; font-family: var(--font-serif); font-size: 1.4rem; color: var(--sage-200); }
.farm-stats span { font-size: .75rem; color: rgba(255,255,255,.6); }
.farm-ph { height: 380px; background: linear-gradient(135deg, var(--sage-700), var(--sage-900)); color: rgba(255,255,255,.6); }
.farm-img { height: 420px; border-radius: var(--radius-lg); overflow: hidden; }
.farm-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-card { background: var(--white); border: 1px solid var(--sage-100); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.pg-rx    { background: linear-gradient(135deg, #dfe8df, #b8cdb8); }
.pg-oil   { background: linear-gradient(135deg, #f0e8d0, #d4b86a); }
.pg-lotion{ background: linear-gradient(135deg, #d8e8f0, #7aaccf); }
.product-body { padding: 1.5rem; }
.product-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .2rem .6rem; border-radius: 4px; display: inline-block; margin-bottom: .75rem; }
.product-tag.rx  { background: #fef3c7; color: #92400e; }
.product-tag.otc { background: #d1fae5; color: #065f46; }
.product-body h3 { color: var(--sage-800); margin-bottom: .5rem; font-size: 1rem; }
.product-body p  { font-size: .85rem; margin-bottom: 1rem; }

/* ── AWARDS ── */
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.award-card { background: var(--white); border: 1px solid var(--sage-100); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); }
.award-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.award-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.award-card h4 { color: var(--sage-800); margin-bottom: .5rem; }
.award-card p  { font-size: .8rem; color: var(--gray-500); }

/* ── MEMBERSHIP ── */
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.mem-card { background: var(--white); border: 1.5px solid var(--sage-100); border-radius: var(--radius-lg); padding: 2.5rem; position: relative; transition: var(--transition); }
.mem-card.featured { border-color: var(--sage-600); box-shadow: var(--shadow-md); }
.mem-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--gray-900); font-size: .7rem; font-weight: 700; padding: .25rem .75rem; border-radius: 100px; white-space: nowrap; }
.mem-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mem-card h3 { color: var(--sage-800); margin-bottom: .5rem; }
.mem-card > p { font-size: .875rem; color: var(--gray-500); margin-bottom: 1.25rem; }
.mem-card ul { margin-bottom: 1.75rem; }
.mem-card ul li { font-size: .85rem; color: var(--gray-700); padding: .35rem 0; border-bottom: 1px solid var(--sage-50); padding-left: 1.25rem; position: relative; }
.mem-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--sage-600); font-weight: 700; font-size: .75rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: var(--sage-50); border-radius: var(--radius-lg); padding: 2rem; }
.stars { display:flex; gap:.2rem; align-items:center; margin-bottom: 1rem; }
.testi-card p { font-size: .9rem; font-style: italic; color: var(--gray-700); margin-bottom: 1.5rem; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sage-600); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.testi-author strong { display: block; font-size: .875rem; color: var(--sage-800); }
.testi-author span { font-size: .75rem; color: var(--gray-500); }

/* ── TIMELINE ── */
.timeline-list { max-width: 700px; margin: 0 auto; }
.tl-item { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.tl-item:not(:last-child) .tl-dot::after { content: ''; position: absolute; left: 11px; top: 24px; width: 2px; height: calc(100% - 24px); background: var(--sage-100); }
.tl-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--sage-100); border: 3px solid var(--sage-200); flex-shrink: 0; position: relative; margin-top: 2px; }
.tl-item.done .tl-dot { background: var(--sage-600); border-color: var(--sage-600); }
.tl-active .tl-dot, .tl-item.active .tl-dot { background: var(--gold); border-color: var(--gold); }
.tl-content h4 { color: var(--sage-800); margin-bottom: .25rem; }
.tl-period { font-size: .75rem; font-weight: 600; color: var(--sage-600); margin-bottom: .5rem; display: block; }
.tl-content p { font-size: .875rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: start; }
.contact-info h2 { color: var(--white); margin-bottom: 1rem; }
.contact-info > p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: .75rem; color: rgba(255,255,255,.75); font-size: .875rem; }
.ci-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem .9rem; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-size: .875rem; font-family: var(--font-sans); color: var(--gray-900);
  transition: var(--transition); outline: none; background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage-600); box-shadow: 0 0 0 3px rgba(78,124,70,.12); }
.form-group textarea { resize: vertical; }
.form-note { font-size: .75rem; color: var(--gray-500); text-align: center; margin-top: .75rem; }

/* ── FOOTER ── */
.footer { background: var(--gray-900); padding-top: var(--space-3xl); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: var(--space-2xl); border-bottom: 1px solid rgba(255,255,255,.08); }
.logo-img-footer { height: 90px; width: auto; opacity: .9; filter: none; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .8rem; margin-top: .75rem; }
.footer-legal { color: rgba(255,255,255,.3) !important; font-size: .72rem !important; margin-top: 1rem !important; line-height: 1.6; }
.footer-links h4 { color: var(--white); font-size: .85rem; margin-bottom: 1rem; font-family: var(--font-sans); }
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links ul li a { color: rgba(255,255,255,.5); font-size: .8rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--sage-400); }
.disclaimer-footer { padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.disclaimer-footer p { font-size: .72rem; color: rgba(255,255,255,.35); line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── SVG ICONS ── */
.svg-icon { display:inline-block; vertical-align:middle; flex-shrink:0; }
.trust-icon .svg-icon { width:1rem; height:1rem; }
.paradigm-icon .svg-icon { width:2.2rem; height:2.2rem; color:var(--sage-300); }
.element-icon .svg-icon { width:2.5rem; height:2.5rem; color:var(--sage-600); }
.pillar-icon .svg-icon { width:2rem; height:2rem; color:var(--sage-600); }
.award-icon .svg-icon { width:2.5rem; height:2.5rem; color:var(--gold); }
.mem-icon .svg-icon { width:2.5rem; height:2.5rem; color:var(--sage-600); }
.ci-icon .svg-icon { width:1rem; height:1rem; }

/* ── LANGUAGE TOGGLE ── */
.lang-btn {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.9);
  padding: .35rem .9rem;
  font-size: .8rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.lang-btn .svg-icon { width:.9rem; height:.9rem; opacity:.8; }
.lang-btn:hover { background: rgba(255,255,255,.22); }
.navbar.scrolled .lang-btn {
  background: var(--sage-50);
  border-color: var(--sage-300);
  color: var(--sage-700);
}
.navbar.scrolled .lang-btn:hover { background: var(--sage-100); }

/* Thai font override */
.lang-th body,
body.lang-th { font-family: 'Noto Sans Thai', var(--font-sans); }
body.lang-th h1, body.lang-th h2, body.lang-th h3, body.lang-th h4 {
  font-family: 'Noto Sans Thai', var(--font-serif);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid,
  .farm-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .research-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .elements-grid { grid-template-columns: repeat(2, 1fr); }
  .paradigm-grid { grid-template-columns: 1fr; }
  .farm-img { display: none; }
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .strip-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .elements-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 30px; }
  .trust-bar-inner { gap: 1rem; }
}
