/* ============================================================
   pages.css — Shared inner-page styles for Thai Wisdom Center
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Noto+Sans+Thai:wght@300;400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --sage-50:  #f4f8f3;
  --sage-100: #e6f0e4;
  --sage-200: #c8dfc4;
  --sage-300: #9ec499;
  --sage-400: #6fa368;
  --sage-500: #4e7c46;   /* primary */
  --sage-600: #4e7c46;
  --sage-700: #3a5e34;
  --sage-800: #2e4a29;
  --sage-900: #1e3119;
  --gold:     #c9a84c;
  --gold-lt:  #e2c97e;
  --white:    #ffffff;
  --grey-50:  #f9fafb;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-400: #9ca3af;
  --grey-600: #4b5563;
  --grey-800: #1f2937;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --transition: .25s ease;
}

/* ---------- Base Reset / Global ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Noto Sans Thai', sans-serif;
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Noto Sans Thai', serif;
  line-height: 1.25;
  color: var(--grey-800);
}
a { color: var(--sage-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage-800); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; }
button { cursor: pointer; font-family: inherit; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--grey-200);
  padding: .75rem 0;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar-brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.navbar-brand img { height: 40px; width: auto; }
.navbar-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sage-700);
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
  margin-left: auto;
}
.navbar-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--grey-600);
  padding: .4rem .7rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.navbar-nav a:hover { background: var(--sage-50); color: var(--sage-700); }
.navbar-nav a.page-nav-active,
.navbar-nav a[aria-current="page"] {
  color: var(--sage-600);
  background: var(--sage-50);
  font-weight: 600;
  border-bottom: 2px solid var(--sage-500);
}
.lang-btn {
  background: var(--sage-600);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: .35rem .8rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background var(--transition);
  margin-left: .5rem;
}
.lang-btn:hover { background: var(--sage-800); }

/* ---------- SVG Icons ---------- */
.svg-icon { display:inline-block; vertical-align:middle; flex-shrink:0; }
.meta-icon .svg-icon { width:1.5rem; height:1.5rem; color:var(--sage-600); }
.award-icon .svg-icon { width:2.5rem; height:2.5rem; color:var(--gold); }
.contact-icon .svg-icon { width:1.5rem; height:1.5rem; color:var(--sage-600); }
.step-icon .svg-icon { width:2rem; height:2rem; color:var(--sage-600); }
.element-icon .svg-icon { width:2.5rem; height:2.5rem; color:var(--sage-600); }
.herb-icon .svg-icon { width:2rem; height:2rem; color:var(--sage-600); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--grey-100);
  padding: .6rem 0;
  font-size: .8rem;
  color: var(--grey-400);
  margin-top: 64px; /* navbar height */
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--grey-600); }
.breadcrumb-inner a:hover { color: var(--sage-600); }
.breadcrumb-inner .sep { color: var(--grey-400); user-select: none; }
.breadcrumb-inner .current { color: var(--sage-600); font-weight: 600; }

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--sage-800); /* fallback */
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(.45);
  z-index: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,49,25,.55) 0%,
    rgba(30,49,25,.70) 100%
  );
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.page-hero p {
  color: rgba(255,255,255,.78);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-hero .hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ---------- Inner Sections ---------- */
.inner-section {
  padding: 5rem 0;
}
.inner-section:nth-child(even) {
  background: var(--sage-50);
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--sage-800);
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--grey-600);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ---------- Detail Grid (2-col) ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .detail-grid { grid-template-columns: 1fr; }
}
.detail-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.detail-card:hover { box-shadow: var(--shadow-md); }
.detail-card h3 {
  font-size: 1.2rem;
  color: var(--sage-700);
  margin-bottom: .75rem;
}
.detail-card p { color: var(--grey-600); font-size: .95rem; line-height: 1.7; }
.detail-card ul { margin-top: .5rem; }
.detail-card ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--grey-600);
  font-size: .93rem;
  margin-bottom: .35rem;
}
.detail-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .6rem;
  top: .3rem;
}

/* ---------- 3-col grid ---------- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .three-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .three-col { grid-template-columns: 1fr; }
}

/* ---------- 4-col grid ---------- */
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1000px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .four-col { grid-template-columns: 1fr; }
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { font-size: 1.15rem; color: var(--sage-700); margin-bottom: .5rem; }
.service-card-body p { font-size: .9rem; color: var(--grey-600); line-height: 1.65; }

/* ---------- Icon Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}
.step-item {
  text-align: center;
  padding: 1.5rem;
}
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--sage-600);
  color: var(--white);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.step-item h4 { font-size: 1rem; color: var(--sage-800); margin-bottom: .4rem; }
.step-item p { font-size: .875rem; color: var(--grey-600); }

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
}
.faq-section .section-heading { margin-bottom: 2.5rem; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-q {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-800);
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background var(--transition);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--sage-500);
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
details[open] .faq-q { background: var(--sage-50); }
details[open] .faq-q::after { content: '−'; }
.faq-a {
  padding: 1rem 1.4rem 1.2rem;
  font-size: .95rem;
  color: var(--grey-600);
  line-height: 1.75;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
}
.faq-a a { color: var(--sage-600); text-decoration: underline; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--sage-800);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-band p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: .9rem 2.2rem;
  border-radius: var(--radius-sm);
  border: none;
  letter-spacing: .03em;
  transition: background var(--transition), transform var(--transition);
}
.btn-cta:hover { background: var(--gold-lt); transform: translateY(-2px); color: var(--white); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--sage-600);
  font-size: .95rem;
  font-weight: 600;
  padding: .75rem 1.8rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--sage-600);
  transition: background var(--transition), color var(--transition);
  margin-top: .5rem;
}
.btn-outline:hover { background: var(--sage-600); color: var(--white); }
.btn-sage {
  display: inline-block;
  background: var(--sage-600);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  padding: .75rem 1.8rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: background var(--transition);
}
.btn-sage:hover { background: var(--sage-800); color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-900);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { height: 44px; width: auto; margin-bottom: .75rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-disclaimer {
  max-width: 700px;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  margin-top: .5rem;
}

/* ---------- Herb Grid ---------- */
.herb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .herb-grid { grid-template-columns: repeat(2, 1fr); }
}
.herb-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.herb-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.herb-icon img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  border: 2px solid var(--sage-100, #e3ebe1);
  box-shadow: var(--shadow-sm);
}
.herb-card h4 { font-size: .95rem; color: var(--sage-700); margin-bottom: .15rem; }
.herb-thai { font-size: .8rem; color: var(--gold); font-family: 'Noto Sans Thai', sans-serif; }
.herb-card p { font-size: .8rem; color: var(--grey-600); margin-top: .3rem; line-height: 1.5; }

/* ---------- Product Cards ---------- */
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card img { width: 100%; height: 220px; object-fit: cover; }
.product-card-body { padding: 1.25rem; }
.product-card-body h3 { font-size: 1.05rem; color: var(--sage-700); margin-bottom: .4rem; }
.product-card-body p { font-size: .875rem; color: var(--grey-600); line-height: 1.6; }
.product-badge {
  display: inline-block;
  background: var(--sage-100);
  color: var(--sage-700);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}

/* ---------- Package Cards ---------- */
.package-card {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.package-card:hover,
.package-card.featured { border-color: var(--sage-500); box-shadow: var(--shadow-md); }
.package-card.featured { background: var(--sage-50); }
.package-name {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.package-duration {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--sage-800);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .25rem;
}
.package-unit { font-size: .85rem; color: var(--grey-400); margin-bottom: 1.2rem; }
.package-card ul { text-align: left; margin-bottom: 1.5rem; }
.package-card ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .875rem;
  color: var(--grey-600);
  margin-bottom: .35rem;
}
.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-500);
  font-weight: 700;
}

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--grey-800);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--grey-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage-500);
  box-shadow: 0 0 0 3px rgba(78,124,70,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-submit {
  width: 100%;
  background: var(--sage-600);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: .9rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  letter-spacing: .02em;
}
.form-submit:hover { background: var(--sage-800); }

/* ---------- Contact Details Block ---------- */
.contact-info-block {
  background: var(--sage-50);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}
.contact-info-block h3 {
  font-size: 1.15rem;
  color: var(--sage-800);
  margin-bottom: 1.25rem;
}
.contact-detail-item {
  display: flex;
  gap: .85rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--sage-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-item p {
  font-size: .9rem;
  color: var(--grey-600);
  line-height: 1.5;
}
.contact-detail-item strong { color: var(--grey-800); }
.map-placeholder {
  width: 100%;
  height: 220px;
  background: var(--grey-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  font-size: .9rem;
  margin-top: 1.5rem;
  border: 1px solid var(--grey-200);
}

/* ---------- Research Cards ---------- */
.research-card {
  background: var(--white);
  border-left: 4px solid var(--sage-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.research-card .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage-500);
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .75rem;
}
.research-card h3 { font-size: 1.1rem; color: var(--sage-800); margin-bottom: .5rem; }
.research-card .citation {
  font-size: .8rem;
  color: var(--grey-400);
  font-style: italic;
  margin-bottom: .75rem;
}
.research-card p { font-size: .9rem; color: var(--grey-600); line-height: 1.7; }

/* ---------- Programme Card ---------- */
.programme-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow var(--transition);
}
.programme-card:hover { box-shadow: var(--shadow-md); }
.programme-duration {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 999px;
  width: fit-content;
}
.programme-card h3 { font-size: 1.2rem; color: var(--sage-700); }
.programme-card p { font-size: .9rem; color: var(--grey-600); line-height: 1.65; }
.programme-card ul { margin-top: .25rem; }
.programme-card ul li {
  position: relative;
  padding-left: 1.2rem;
  font-size: .875rem;
  color: var(--grey-600);
  margin-bottom: .3rem;
}
.programme-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage-500);
}

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
}
.highlight-box h3 { color: var(--sage-800); font-size: 1.1rem; margin-bottom: .75rem; }
.highlight-box p, .highlight-box li {
  font-size: .9rem;
  color: var(--grey-600);
  line-height: 1.7;
}
.highlight-box ul { padding-left: .25rem; }
.highlight-box ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .35rem;
}
.highlight-box ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sage-500);
  font-size: 1.1rem;
  top: -.1rem;
}

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-600);
  line-height: 1;
  display: block;
  margin-bottom: .25rem;
}
.stat-item .label { font-size: .85rem; color: var(--grey-600); }

/* ---------- Divider ---------- */
.divider {
  border: none;
  border-top: 1px solid var(--grey-200);
  margin: 3rem 0;
}
.divider-gold {
  width: 60px;
  border-top: 3px solid var(--gold);
  margin: 1rem 0 2rem;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-sage { color: var(--sage-600); }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-sm { gap: .75rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.inline-flex { display: inline-flex; }

/* ---------- Responsive Navbar ---------- */
@media (max-width: 1000px) {
  .navbar-nav a { font-size: .8rem; padding: .35rem .55rem; }
}
@media (max-width: 768px) {
  .navbar-inner { flex-wrap: wrap; }
  .navbar-nav { display: none; }
  .navbar-nav.open { display: flex; width: 100%; flex-direction: column; align-items: flex-start; padding: .5rem 0; }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: .4rem;
    margin-left: auto;
    cursor: pointer;
  }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--grey-800); border-radius: 2px; }
}
@media (min-width: 769px) {
  .hamburger { display: none; }
}

/* ── ABOUT PAGE ── */
.breadcrumb-bar { background: var(--sage-50); border-bottom: 1px solid var(--sage-100); padding: .6rem 0; }
.breadcrumb { display: flex; align-items: center; gap: .4rem; list-style: none; font-size: .8rem; }
.breadcrumb a { color: var(--sage-600); }
.breadcrumb a:hover { color: var(--sage-800); text-decoration: underline; }
.bc-sep { color: var(--gray-300); }

.page-hero { position: relative; min-height: 360px; display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,40,18,.85) 0%, rgba(20,40,18,.4) 60%, rgba(20,40,18,.2) 100%); }
.page-hero-content { position: relative; z-index: 1; padding: 3rem 0 2.5rem; }
.page-hero-content h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: .75rem; }
.page-hero-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; }

.founder-grid { display: grid; grid-template-columns: 420px 1fr; gap: var(--space-2xl); align-items: start; }
.founder-photo-wrap { position: relative; }
.founder-photo { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); display: block; }
.founder-credential-badge { background: var(--sage-800); color: var(--white); padding: 1rem 1.25rem; border-radius: 0 0 var(--radius-lg) var(--radius-lg); text-align: center; }
.badge-title { display: block; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; }
.badge-sub { display: block; font-size: .75rem; color: var(--sage-200); margin-top: .25rem; }
.founder-bio h2 { color: var(--sage-800); margin-bottom: .5rem; }
.founder-title { font-size: .95rem; color: var(--sage-600); font-weight: 600; margin-bottom: 1.25rem; display: block; line-height: 1.5; }
.founder-bio p { margin-bottom: 1rem; }
.founder-quote { border-left: 4px solid var(--sage-400); margin: 1.75rem 0; padding: 1.25rem 1.5rem; background: var(--sage-50); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.founder-quote p { font-style: italic; color: var(--sage-800); font-size: .95rem; line-height: 1.7; margin: 0; }
.founder-quote footer { margin-top: .75rem; font-size: .8rem; color: var(--gray-500); }
.founder-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.founder-meta-item { display: flex; align-items: flex-start; gap: .75rem; background: var(--sage-50); border-radius: var(--radius-sm); padding: .85rem 1rem; }
.meta-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.founder-meta-item strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--sage-700); margin-bottom: .25rem; }
.founder-meta-item span { font-size: .82rem; color: var(--gray-700); line-height: 1.45; }

/* specificity must beat .inner-section:nth-child(even){background:sage-50} above */
.inner-section.founder-message { background: var(--sage-800); }
.founder-message-grid { display: grid; grid-template-columns: 340px 1fr; gap: var(--space-2xl); align-items: center; }
.founder-message-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); display: block; }
.founder-message-body .label.light { color: var(--gold-lt); } /* lighter gold = 6.4:1 on sage-800 (was --gold = 4.53:1) */
.founder-message-body h2 { color: var(--white); margin-bottom: 1.25rem; line-height: 1.3; }
.founder-message-quote { border-left: 4px solid var(--gold); margin: 0; padding: .5rem 0 .5rem 1.75rem; }
.founder-message-quote p { font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,.92); font-size: 1.15rem; line-height: 1.85; margin: 0; }
.founder-message-sign { margin-top: 1.5rem; font-family: var(--font-serif); font-size: 1.05rem; color: var(--gold-lt); font-weight: 600; }

.award-detail { font-size: .82rem; color: var(--gray-500); margin-top: .5rem; line-height: 1.5; }

.heritage-timeline { list-style: none; display: flex; flex-direction: column; gap: 0; }
.ht-item { display: flex; gap: 1.5rem; padding-bottom: 2.25rem; position: relative; }
.ht-item:not(:last-child) .ht-dot::after { content: ''; position: absolute; left: 11px; top: 24px; width: 2px; height: calc(100% - 20px); background: var(--sage-200); }
.ht-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--sage-100); border: 3px solid var(--sage-300); flex-shrink: 0; position: relative; margin-top: 3px; }
.ht-present .ht-dot { background: var(--gold); border-color: var(--gold); }
.ht-content h3 { color: var(--sage-800); font-size: 1rem; margin-bottom: .4rem; }
.ht-content p { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }

.phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: var(--space-xl); }
.phil-card { background: var(--white); border: 1px solid var(--sage-100); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: var(--transition); }
.phil-card:hover { box-shadow: var(--shadow-md); }
.phil-number { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--sage-100); line-height: 1; margin-bottom: .75rem; }
.phil-card h3 { color: var(--sage-800); font-size: 1.05rem; margin-bottom: .6rem; }
.phil-card p { font-size: .875rem; line-height: 1.65; }

.cta-band { background: var(--sage-800); padding: var(--space-3xl) 0; text-align: center; }
.cta-band-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band-inner p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 2rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.faq-section { background: var(--white); }
.faq-item { border-bottom: 1px solid var(--sage-100); }
.faq-q { cursor: pointer; padding: 1.25rem 0; font-size: 1rem; font-weight: 600; color: var(--sage-800); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-sans); }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--sage-400); flex-shrink: 0; transition: transform .2s ease; }
details[open] .faq-q::after { content: '−'; }
.faq-a { padding: 0 0 1.25rem; }
.faq-a p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; }

.inner-section { padding: var(--space-3xl) 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo-wrap { max-width: 420px; margin: 0 auto; }
  .founder-meta-grid { grid-template-columns: 1fr; }
  .founder-message-grid { grid-template-columns: 1fr; }
  .founder-message-photo { max-width: 340px; margin: 0 auto; }
  .phil-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-hero { min-height: 280px; }
  .page-hero-content h1 { font-size: 1.6rem; }
}

/* ── DINING PAGE ── */
.menu-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.menu-card { background: var(--white); border: 1px solid var(--sage-100); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.menu-card:hover { box-shadow: var(--shadow-md); }
.menu-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.menu-card h3 { color: var(--sage-800); margin-bottom: .75rem; font-size: 1.05rem; }
.menu-card p  { font-size: .875rem; margin-bottom: 1rem; }
.menu-card ul { list-style: none; }
.menu-card ul li { font-size: .82rem; color: var(--gray-600); padding: .25rem 0; padding-left: 1.1rem; position: relative; }
.menu-card ul li::before { content: '✦'; position: absolute; left: 0; color: var(--sage-400); font-size: .65rem; top: .3rem; }
.opening-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: var(--space-xl); }
.opening-card { background: var(--sage-50); border-radius: var(--radius-lg); padding: 2rem; }
.opening-card h3 { color: var(--sage-800); margin-bottom: 1rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours-table tr td { padding: .5rem .25rem; border-bottom: 1px solid var(--sage-100); }
.hours-table tr td:first-child { color: var(--gray-600); }
.hours-table tr td:last-child { font-weight: 600; color: var(--sage-800); text-align: right; }

/* ── AFFILIATE PAGE ── */
.comm-table-wrap { overflow-x: auto; margin-top: var(--space-xl); }
.comm-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.comm-table th { background: var(--sage-800); color: var(--white); padding: .85rem 1rem; text-align: left; font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.comm-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--sage-100); }
.comm-table tr:nth-child(even) td { background: var(--sage-50); }
.rate-cell { font-weight: 700; color: var(--sage-700); font-size: 1rem; text-align: center; }
.comm-bonus td { background: linear-gradient(135deg, #fef3c7, #fde68a) !important; font-weight: 600; }
.comm-note { font-size: .78rem; color: var(--gray-500); margin-top: 1rem; line-height: 1.6; }

@media (max-width: 768px) {
  .menu-grid { grid-template-columns: 1fr; }
  .opening-grid { grid-template-columns: 1fr; }
}

/* ── rebuilt pages: membership / products / privacy helpers ── */
.container.narrow { max-width: 760px; }
.mem-price { font-size: 1.05rem; color: var(--sage-700); margin-bottom: 1rem; }
.mem-price strong { font-size: 1.6rem; color: var(--sage-800); }
.product-price { color: var(--sage-700); margin: .25rem 0 .6rem; }
.product-price strong { font-size: 1.05rem; }
.legal-doc { max-width: 820px; }
.legal-doc h2 { color: var(--sage-800); font-size: 1.25rem; margin: 2rem 0 .75rem; }
.legal-doc h3 { color: var(--sage-700); font-size: 1.02rem; margin: 1.25rem 0 .4rem; }
.legal-doc p, .legal-doc li { color: var(--grey-700, #444); line-height: 1.7; }
.legal-doc ul { padding-left: 1.25rem; margin: .5rem 0 1rem; }
.legal-doc ul li { margin-bottom: .4rem; }
.legal-updated { color: var(--grey-500, #888); font-size: .85rem; margin-bottom: 1.5rem; }

/* ============================================================
   INVESTOR RELATIONS PAGE
   ============================================================ */

/* Disclaimer / note ribbon */
.ir-note {
  background: var(--sage-50);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: .85rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin: 0 auto 2.5rem;
  max-width: 820px;
}
.ir-note strong { color: var(--sage-800); }

/* At-a-glance summary tiles */
.ir-glance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 880px) { .ir-glance { grid-template-columns: repeat(2, 1fr); } }
.ir-glance-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ir-glance-card .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--sage-700);
  line-height: 1.05;
  display: block;
}
.ir-glance-card .lbl { font-size: .82rem; color: var(--grey-600); margin-top: .4rem; display: block; }

/* Land-use allocation bar */
.ir-landuse { max-width: 860px; margin: 0 auto; }
.ir-landuse-row {
  display: grid;
  grid-template-columns: 200px 1fr 70px;
  align-items: center;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: .92rem;
}
.ir-landuse-row span:first-child { color: var(--sage-800); font-weight: 600; }
.ir-landuse-bar { height: 12px; border-radius: 999px; background: var(--sage-500); }
.ir-landuse-row b { text-align: right; color: var(--grey-600); font-weight: 600; }
@media (max-width: 640px) {
  .ir-landuse-row { grid-template-columns: 130px 1fr 56px; font-size: .82rem; gap: .6rem; }
}

/* Business-unit blocks */
.ir-unit {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
}
.ir-unit:nth-child(even) .ir-unit-media { order: 2; }
@media (max-width: 900px) {
  .ir-unit { grid-template-columns: 1fr; gap: 1.5rem; }
  .ir-unit:nth-child(even) .ir-unit-media { order: 0; }
}
.ir-unit-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-md);
}
.ir-unit-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ir-unit-body .label { color: var(--gold); }
.ir-unit-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--sage-800);
  margin: .25rem 0 .5rem;
}
.ir-unit-desc { color: var(--grey-600); font-size: .95rem; line-height: 1.7; margin-bottom: 1.1rem; }

/* Quick chips: area / manpower / revenue */
.ir-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.25rem; }
.ir-chip {
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .8rem;
  color: var(--sage-800);
}
.ir-chip b { color: var(--sage-600); }

/* CapEx / OpEx line-item panels */
.ir-fin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 560px) { .ir-fin-grid { grid-template-columns: 1fr; } }
.ir-fin {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.ir-fin h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grey-600);
  margin-bottom: .15rem;
}
.ir-fin .ir-fin-total {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--sage-700);
  font-weight: 700;
  display: block;
  margin-bottom: .75rem;
}
.ir-fin-list { list-style: none; margin: 0; padding: 0; }
.ir-fin-list li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .85rem;
  color: var(--grey-600);
  padding: .35rem 0;
  border-bottom: 1px dashed var(--grey-200);
}
.ir-fin-list li:last-child { border-bottom: none; }
.ir-fin-list li b { color: var(--sage-800); white-space: nowrap; font-weight: 600; }

/* Consolidated tables reuse .comm-table; add a totals row style */
.comm-table tr.ir-total td { background: var(--sage-100); font-weight: 700; color: var(--sage-900); border-top: 2px solid var(--sage-500); }
.comm-table td.num, .comm-table th.num { text-align: right; }

/* Funding split */
.ir-fund {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 720px) { .ir-fund { grid-template-columns: 1fr; } }
.ir-fund-bar { display: flex; height: 56px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.ir-fund-seg { display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .82rem; font-weight: 600; }
.ir-fund-seg.equity { background: var(--sage-600); }
.ir-fund-seg.debt { background: var(--gold-dk, #a8882e); }

/* Investor entry band on the About page */
.ir-entry { background: var(--sage-900); padding: 2.25rem 0; }
.ir-entry-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ir-entry-text { max-width: 640px; }
.ir-entry-text .label { color: var(--gold-lt); }
.ir-entry-text p:not(.label) { color: rgba(255,255,255,.82); font-size: .92rem; line-height: 1.6; margin-top: .35rem; }
.ir-entry .btn-outline { color: var(--white); border-color: rgba(255,255,255,.55); white-space: nowrap; }
.ir-entry .btn-outline:hover { background: var(--white); color: var(--sage-900); border-color: var(--white); }
