/* ============================================================
   BHANWAR SINGH PILIBANGA — ORGANIC FARMING WEBSITE
   Custom Stylesheet
   Color Palette:
   --brown:     #613d1a
   --orange:    #F5821F
   --cream:     #fdf9f3
   --green:     #85ad72
   --dark-green:#3e5623
   ============================================================ */

/* ── Root Variables ── */
:root {
  --brown:       #613d1a;
  --orange:      #F5821F;
  --cream:       #fdf9f3;
  --green:       #85ad72;
  --dark-green:  #3e5623;
  --text-dark:   #2a1a08;
  --text-muted:  #6b5a45;
  --white:       #ffffff;
  --shadow-sm:   0 2px 12px rgba(97,61,26,0.10);
  --shadow-md:   0 6px 30px rgba(97,61,26,0.16);
  --shadow-lg:   0 16px 60px rgba(97,61,26,0.20);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   32px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading:'Playfair Display', Georgia, serif;
  --font-body:   'Inter', 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--brown);
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245,130,31,0.10);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,130,31,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--brown);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
}
.btn-green:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62,86,35,0.30);
}
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(97,61,26,0.08);
  box-shadow: 0 2px 16px rgba(97,61,26,0.07);
  transition: var(--transition);
}
#header.scrolled {
  box-shadow: 0 4px 24px rgba(97,61,26,0.12);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(62,86,35,0.10), rgba(133,173,114,0.18));
  border: 1.5px solid rgba(62,86,35,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-text .logo-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.25;
}
.logo-text .logo-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  position: relative;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 11px;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--dark-green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--dark-green); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--dark-green); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }

/* Right action buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(97,61,26,0.18);
  color: var(--brown);
  background: var(--white);
  transition: var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-icon-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245,130,31,0.06);
  transform: translateY(-1px);
}
.nav-icon-btn--whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}
.nav-icon-btn--whatsapp:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
  color: var(--white);
}
.btn-contact-now {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--dark-green);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}
.btn-contact-now:hover {
  background: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(62,86,35,0.30);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(97,61,26,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--dark-green); background: rgba(62,86,35,0.06); }

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
 background: linear-gradient(85deg, rgb(49 27 6 / 88%) 0%, rgb(23 39 6 / 68%) 50%, rgb(62 86 35 / 0%) 100%);
}
.hero-overlay-pattern {
  position: absolute;
  inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgb(245 131 31 / 0%) 0%, #0000001a 50%), radial-gradient(circle at 20% 80%, rgb(8 14 6 / 10%) 0%, #00000000 50%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,130,31,0.2);
  border: 1px solid rgba(245,130,31,0.4);
  color: #ffc07a;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-name .name-accent { color: var(--orange); }
.hero-role {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.80);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.70);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   FEATURES STRIP
   ======================================== */
#features-strip {
  background: var(--brown);
  padding: 0;
}
.features-strip-inner {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.feature-strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.10);
  transition: var(--transition);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { background: rgba(255,255,255,0.06); }
.feature-strip-item .fsi-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.feature-strip-item .fsi-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}
.feature-strip-item .fsi-text span {
  color: rgba(255,255,255,0.60);
  font-size: 0.82rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
#about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -100px;
  right: -30px;
  width: 300px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge-floating {
  position: absolute;
  bottom: 100px;
  left: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-floating .abf-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-floating .abf-text {
  font-size: 0.72rem;
  line-height: 1.3;
  opacity: 0.9;
}
.about-content {}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.about-tag {
  background: rgba(133,173,114,0.15);
  color: var(--dark-green);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(133,173,114,0.3);
}
.about-highlights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green);
}
.about-highlight .ah-icon { font-size: 1.4rem; flex-shrink: 0; }
.about-highlight .ah-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--brown);
  font-weight: 600;
}
.about-highlight .ah-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========================================
   ORGANIC FARMING SECTION
   ======================================== */
#organic-farming {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#organic-farming::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(133,173,114,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.farming-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.farming-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.farming-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.farming-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.farming-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.farming-card:hover::before { transform: scaleX(1); }
.fc-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(245,130,31,0.12), rgba(133,173,114,0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.farming-card:hover .fc-icon {
  background: linear-gradient(135deg, var(--orange), var(--green));
  transform: scale(1.1);
}
.farming-card h3 {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.farming-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.farming-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--dark-green);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.farming-showcase-images {
  width: 100%;
  padding-left: 30px;;
}
.fsi-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.fsi-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.farming-showcase-content {
  padding: 48px 48px 48px 0;
  color: var(--white);
}
.farming-showcase-content .section-label {
  background: rgba(245,130,31,0.20);
  color: #ffc07a;
}
.farming-showcase-content .section-title {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.farming-showcase-content .section-title span { color: var(--orange); }
.farming-showcase-content p {
  color: rgba(255,255,255,0.80);
  margin-bottom: 24px;
  line-height: 1.8;
}
.crops-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.crop-tag {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.80rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.crop-tag:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ========================================
   NATURAL PRACTICES SECTION
   ======================================== */
#practices {
  background: var(--white);
}
.practices-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.practice-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.practice-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.practice-card:hover .practice-card-img { transform: scale(1.05); }
.practice-card-img-wrap { overflow: hidden; position: relative; }
.practice-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(62,86,35,0.3));
  pointer-events: none;
}
.practice-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pc-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(245,130,31,0.20);
  line-height: 1;
  margin-bottom: 8px;
}
.practice-card-body h3 {
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.practice-card-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.pc-icon-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: rgba(62,86,35,0.08);
  color: var(--dark-green);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ========================================
   TRAINING SECTION
   ======================================== */
#training {
  background: var(--cream);
  position: relative;
}
.training-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.training-content {}
.training-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.training-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.training-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.ti-check {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--orange), #e06a0f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.training-item p {
  font-size: 0.90rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}
.training-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 16px;
}
.ti-img-main {
  grid-column: 1 / -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.ti-img-main:hover { transform: scale(1.02); }
.ti-img-sub {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.ti-img-sub:hover { transform: scale(1.04); }

/* ========================================
   SUSTAINABLE MODEL SECTION
   ======================================== */
#sustainable {
  background: linear-gradient(160deg, var(--dark-green) 0%, #2a3d18 100%);
  position: relative;
  overflow: hidden;
}
#sustainable::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/IMG-20200807-WA0124.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}
.sustainable-inner {
  position: relative;
  z-index: 1;
}
.sustainable-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.sustainable-header .section-title { color: var(--white); }
.sustainable-header .section-subtitle { color: rgba(255,255,255,0.72); margin: 0 auto; }
.sustainable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.sustainable-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.sustainable-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-6px);
  border-color: rgba(245,130,31,0.4);
}
.sc-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.sustainable-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.sustainable-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}
.mission-vision-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  background: rgba(245,130,31,0.12);
  border: 1px solid rgba(245,130,31,0.25);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.mv-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.mv-content h3 {
  color: var(--orange);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.mv-content p {
  color: rgba(255,255,255,0.80);
  font-size: 0.90rem;
  line-height: 1.8;
}

/* ========================================
   ACHIEVEMENTS SECTION — LIGHT THEME BENTO
   ======================================== */
#achievements {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#achievements::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(133,173,114,0.14) 0%, transparent 70%);
  pointer-events: none;
}
#achievements::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245,130,31,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.ach-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.ach-header .section-label {
  background: rgba(245,130,31,0.10);
  color: var(--orange);
}
.ach-header .section-title { color: var(--brown); }
.ach-header .section-subtitle { color: var(--text-muted); margin: 0 auto; }

/* ── Counter Stats Row ── */
.ach-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.ach-counter-card {
  border-radius: var(--radius-md);
  padding: 36px 28px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ach-counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(97,61,26,0.18);
}
.ach-cc--orange { background: linear-gradient(135deg, var(--orange), #c96010); }
.ach-cc--green  { background: linear-gradient(135deg, var(--dark-green), #2d4b19); }
.ach-cc--brown  { background: linear-gradient(135deg, var(--brown), #3e2510); }
.ach-cc--dark   { background: linear-gradient(135deg, #3e5623, #2a3d18); }

.acc-bg-icon {
  position: absolute;
  right: -8px;
  bottom: -12px;
  font-size: 5.5rem;
  opacity: 0.13;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.acc-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.acc-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 3px;
}
.acc-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.04em;
}

/* ── Bento Grid ── */
.ach-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
  position: relative;
  z-index: 1;
}

/* Base card */
.ach-bento-card {
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(97,61,26,0.08);
  box-shadow: var(--shadow-sm);
}
.ach-bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Numbered badge */
.ach-bc-num {
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  opacity: 0.55;
  margin-bottom: 2px;
}
.ach-bc-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 4px;
}
.ach-bento-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--brown);
  margin: 0;
}
.ach-bento-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}
.ach-bc-arrow {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.45;
  margin-top: auto;
  transition: transform var(--transition), opacity var(--transition);
}
.ach-bento-card:hover .ach-bc-arrow {
  transform: translateX(6px);
  opacity: 1;
}

/* Tags */
.ach-bc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}
.ach-bc-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 50px;
  background: rgba(62,86,35,0.08);
  color: var(--dark-green);
  border: 1px solid rgba(62,86,35,0.15);
}
.ach-bc-tags--light span {
  background: rgba(97,61,26,0.08);
  color: var(--brown);
  border-color: rgba(97,61,26,0.18);
}

/* Image inset */
.ach-bc-img-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  overflow: hidden;
}
.ach-bc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  transition: opacity var(--transition), transform var(--transition);
}
.ach-bento-card:hover .ach-bc-img-wrap img {
  opacity: 0.28;
  transform: scale(1.05);
}
/* Bottom image variant */
.ach-bc-img-wrap--bottom {
  position: relative;
  right: auto; top: auto; bottom: auto;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  flex-shrink: 0;
}
.ach-bc-img-wrap--bottom img {
  opacity: 0.80;
  border-radius: var(--radius-sm);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ach-bc-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(245,130,31,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  border: 1px solid rgba(245,130,31,0.18);
}

/* ── Card colour variants ── */

/* Hero: spans 2 cols — green accent */
.ach-bc--hero {
  grid-column: span 2;
  background: linear-gradient(135deg, #eef5e8 0%, #deefd4 100%);
  border: 1px solid rgba(62,86,35,0.18);
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  padding-right: 46%;
}
.ach-bc--hero .ach-bc-content { flex: 1; }
.ach-bc--hero .ach-bc-content h3 {
  font-size: 1.4rem;
  color: var(--dark-green);
  margin-bottom: 10px;
}
.ach-bc--hero .ach-bc-content p {
  font-size: 0.90rem;
  color: #4a6635;
  margin-bottom: 16px;
}
.ach-bc--hero .ach-bc-num { color: var(--dark-green); opacity: 0.55; }
.ach-bc--hero .ach-bc-icon-wrap {
  background: rgba(62,86,35,0.12);
  border-color: rgba(62,86,35,0.20);
}
.ach-bc--hero .ach-bc-img-wrap { width: 44%; }
.ach-bc--hero .ach-bc-img-wrap img { opacity: 0.55; }
.ach-bc--hero .ach-bc-tags span {
  background: rgba(62,86,35,0.10);
  color: var(--dark-green);
  border-color: rgba(62,86,35,0.20);
}

/* Orange tint card */
.ach-bc--orange {
  background: linear-gradient(145deg, #fff4ec, #fde8d4);
  border-color: rgba(245,130,31,0.18);
}
.ach-bc--orange .ach-bc-num { color: var(--orange); }
.ach-bc--orange h3 { color: var(--brown); }
.ach-bc--orange p  { color: var(--text-muted); }
.ach-bc--orange .ach-bc-arrow { color: var(--orange); }

/* Green tint card */
.ach-bc--green {
  background: linear-gradient(145deg, #f0f6eb, #deefd4);
  border-color: rgba(62,86,35,0.15);
}
.ach-bc--green .ach-bc-num { color: var(--dark-green); }
.ach-bc--green h3 { color: var(--dark-green); }
.ach-bc--green p  { color: #4a6635; }
.ach-bc--green .ach-bc-arrow { color: var(--dark-green); }

/* Plain white / cream */
.ach-bc--cream {
  background: var(--white);
  border-color: rgba(97,61,26,0.10);
}
.ach-bc--cream .ach-bc-num { color: var(--orange); }
.ach-bc--cream h3 { color: var(--brown); }
.ach-bc--cream p  { color: var(--text-muted); }
.ach-bc--cream .ach-bc-arrow { color: var(--brown); }

/* Tall card — brown tint */
.ach-bc--tall {
  grid-row: span 2;
  background: linear-gradient(160deg, #fdf4ec, #fde8d4);
  border-color: rgba(97,61,26,0.14);
}
.ach-bc--tall .ach-bc-num { color: var(--orange); }
.ach-bc--tall h3 { color: var(--brown); font-size: 1.15rem; }
.ach-bc--tall p  { color: var(--text-muted); }
.ach-bc--tall .ach-bc-img-wrap--bottom img { opacity: 0.90; }

/* Soft orange accent */
.ach-bc--orange-light {
  background: var(--white);
  border-left: 4px solid var(--orange);
}
.ach-bc--orange-light .ach-bc-num { color: var(--orange); }
.ach-bc--orange-light h3 { color: var(--brown); }
.ach-bc--orange-light p  { color: var(--text-muted); }
.ach-bc--orange-light .ach-bc-arrow { color: var(--orange); }

/* Soft green accent */
.ach-bc--green-light {
  background: var(--white);
  border-left: 4px solid var(--dark-green);
}
.ach-bc--green-light .ach-bc-num { color: var(--dark-green); }
.ach-bc--green-light h3 { color: var(--dark-green); }
.ach-bc--green-light p  { color: var(--text-muted); }
.ach-bc--green-light .ach-bc-arrow { color: var(--dark-green); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ach-stats-row { grid-template-columns: repeat(2, 1fr); }
  .ach-bento { grid-template-columns: repeat(2, 1fr); }
  .ach-bc--hero { grid-column: span 2; padding-right: 40%; }
  .ach-bc--hero .ach-bc-img-wrap { width: 38%; }
  .ach-bc--tall { grid-row: span 1; }
}
@media (max-width: 700px) {
  .ach-stats-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .acc-number { font-size: 2.4rem; }
  .ach-bento { grid-template-columns: 1fr; }
  .ach-bc--hero { grid-column: span 1; padding-right: 28px; flex-direction: column; }
  .ach-bc--hero .ach-bc-img-wrap { position: relative; width: 100%; height: 160px; top: auto; right: auto; border-radius: var(--radius-sm); margin-top: 12px; }
  .ach-bc--tall { grid-row: span 1; }
}
#media {
  background: var(--white);
}
.media-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 56px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.media-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.media-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.media-card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.media-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.media-card:hover .media-card-img-wrap img { transform: scale(1.08); }
.media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.70rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.media-card-body {
  padding: 20px;
}
.media-card-body h4 {
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.4;
}
.media-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.media-card-footer {
  padding: 0 20px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}

/* ========================================
   GALLERY SECTION — REDESIGNED
   ======================================== */
#gallery {
  background: var(--cream);
  position: relative;
}
.gallery-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px;
}
.gallery-header .section-title { color: var(--brown); }
.gallery-header .section-subtitle { color: var(--text-muted); margin: 0 auto; }

/* Filter Bar */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  position: relative;
}
.gf-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid rgba(97,61,26,0.15);
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.gf-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245,130,31,0.05);
}
.gf-tab.active {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(62,86,35,0.28);
}
.gf-tab-icon { font-size: 0.95rem; }
.gf-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(0,0,0,0.08);
  color: inherit;
  transition: var(--transition);
}
.gf-tab.active .gf-tab-count {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  /* min-height keeps layout stable during filter */
  min-height: 200px;
}

/* Individual Card */
.gl-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  /* Filter animation states */
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gl-card.hidden {
  display: none;
}
.gl-card.fade-out {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}
.gl-card.fade-in {
  opacity: 1;
  transform: scale(1);
}
.gl-card-inner {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 ratio */
  overflow: hidden;
  background: #e8e0d5;
}
.gl-card-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gl-card:hover .gl-card-inner img {
  transform: scale(1.08);
}

/* Card Overlay */
.gl-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(62,86,35,0) 30%,
    rgba(62,86,35,0.65) 70%,
    rgba(62,86,35,0.90) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gl-card:hover .gl-card-overlay { opacity: 1; }

/* Zoom Button */
.gl-zoom-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.20);
  flex-shrink: 0;
  transform: translateY(-6px);
  transition: transform 0.35s ease, background 0.25s ease;
}
.gl-card:hover .gl-zoom-btn {
  transform: translateY(0);
}
.gl-zoom-btn:hover {
  background: var(--orange);
  color: var(--white);
}

/* Card Info (bottom) */
.gl-card-info {
  width: 100%;
  transform: translateY(6px);
  transition: transform 0.35s ease;
}
.gl-card:hover .gl-card-info { transform: translateY(0); }
.gl-cat-badge {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  background: rgba(245,130,31,0.90);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 5px;
  backdrop-filter: blur(4px);
}
.gl-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Empty State */
.gallery-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.gallery-empty span { font-size: 3rem; display: block; margin-bottom: 12px; }
.gallery-empty p { font-size: 1rem; }

/* Footer Bar */
.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-showing {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.gallery-showing strong { color: var(--brown); }
.btn-outline-brown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--brown);
  color: var(--brown);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-brown:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(97,61,26,0.25);
}
.btn-outline-brown:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,12,5,0.92);
  backdrop-filter: blur(6px);
}
.lightbox-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 92vh;
  width: 100%;
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(245,130,31,0.80); border-color: var(--orange); }
.lightbox-img-wrap {
  position: relative;
  max-width: 80vw;
  max-height: 76vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 80px rgba(0,0,0,0.60);
}
.lightbox-img-wrap img {
  display: block;
  max-width: 80vw;
  max-height: 76vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.25s ease;
}
.lightbox-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.lightbox-loader.loading { opacity: 1; }
.lightbox-loader::after {
  content: '';
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}
.lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-prev { left: -62px; }
.lightbox-next { right: -62px; }
.lightbox-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.lightbox-cat {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
}
.lightbox-title {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.lightbox-counter {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-left: auto;
}

/* ========================================
   CTA SECTION
   ======================================== */
#cta {
  background: linear-gradient(135deg, var(--orange) 0%, #c96010 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/DSCN0359.JPG') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner .section-label {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.90);
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ========================================
   CONTACT SECTION
   ======================================== */
#contact {
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-info {}
.contact-info p {
  color: var(--text-muted);
  margin: 16px 0 32px;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cd-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(245,130,31,0.15), rgba(133,173,114,0.15));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cd-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--brown);
  font-weight: 600;
}
.cd-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(97,61,26,0.12);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.90rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,31,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ========================================
   FOOTER
   ======================================== */
#footer {
  background: var(--text-dark);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text .logo-name { color: var(--cream); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(253,249,243,0.60);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.fs-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.70);
}
.fs-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}
.fs-link img{filter: invert(1) brightness(0.9);}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(253,249,243,0.60);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item .fci-icon {
  color: var(--orange);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.86rem;
  color: rgba(253,249,243,0.60);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(253,249,243,0.45);
}
.footer-bottom-links {
  display: flex;
  gap: 10px;
   font-size: 0.82rem;
  color: rgba(253,249,243,0.45);
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(253,249,243,0.45);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--orange); }

/* ========================================
   SCROLL TO TOP
   ======================================== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(245,130,31,0.40);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}
#scrollTop:hover {
  background: var(--brown);
  transform: translateY(-3px);
}

/* ========================================
   ANIMATIONS / UTILITIES
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .farming-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .training-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .about-img-accent { display: none; }
  .about-badge-floating { left: 12px; top: 12px; bottom: auto; }

  .farming-showcase { grid-template-columns: 1fr; gap:20px; }
  .farming-showcase-images { height: auto; padding: 24px 24px 0; }
  .farming-showcase-content { padding: 24px 36px 36px; }

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

  .sustainable-grid { grid-template-columns: 1fr 1fr; }
  .mission-vision-wrap { grid-template-columns: 1fr; }

  .media-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { left: -48px; }
  .lightbox-next { right: -48px; }

  .features-strip-inner { flex-wrap: wrap; }
  .feature-strip-item { flex: calc(50% - 1px); border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
}

@media (max-width: 640px) {
  .section-pad { padding: 72px 0; }
  .hero-stats { gap: 20px; }
  .hero-stat .stat-number { font-size: 1.6rem; }
  .hero-overlay-pattern{    background-image: radial-gradient(circle at 80% 20%, rgb(245 131 31 / 0%) 0%, #0000001a 50%), radial-gradient(circle at 20% 80%, rgb(8 14 6 / 10%) 0%, #00000054 50%);}
  .hero-badge{    letter-spacing: 0.02em;}
  .hero-bg {
    background-image: url('../images/mobile-hero.jpg');
    background-position: center center;
  }
  .mobile-nav{gap: 10px;}

  .farming-grid { grid-template-columns: 1fr; }
  .practices-grid { grid-template-columns: 1fr; }
  .sustainable-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-footer { flex-direction: column; align-items: center; text-align: center; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-img-wrap img { max-width: 92vw; max-height: 65vh; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }

  .about-highlights { grid-template-columns: 1fr; }

  .feature-strip-item { flex: 100%; }
}


/* ================================================================
   ABOUT PAGE — Page-Specific Styles
   ================================================================ */
    /* ============================================================
       ABOUT PAGE — Supplementary Styles
       ============================================================ */

    /* ── Page Hero — Split Panel ── */
    /* ── About Hero — Editorial Circle Design ── */
    #about-hero {
      min-height: 100vh;
      background: #0f0803;
      padding-top: 72px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    /* Background decorations */
    .ah-bg-blob1 {
      position: absolute;
      top: -140px; right: -80px;
      width: 640px; height: 640px;
      background: radial-gradient(circle, rgba(245,130,31,0.10) 0%, transparent 60%);
      pointer-events: none;
    }
    .ah-bg-blob2 {
      position: absolute;
      bottom: -180px; left: -80px;
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(62,86,35,0.14) 0%, transparent 60%);
      pointer-events: none;
    }
    .ah-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
    }

    /* Inner layout */
    .ah-layout {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: 56px 60px 80px;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    /* ── LEFT: text content ── */
    .ah-left { display: flex; flex-direction: column; }

    .ah-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }
    .ah-eyebrow-line {
      width: 40px; height: 2px;
      background: #F5821F;
      flex-shrink: 0;
    }
    .ah-eyebrow-text {
      font-size: 0.72rem;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
      font-weight: 500;
    }

    .ah-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.4rem, 4.2vw, 5rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.04;
      margin-bottom: 26px;
    }
    .ah-title em {
      color: #F5821F;
      font-style: italic;
    }

    .ah-bio {
      font-size: 1.02rem;
      color: rgba(255,255,255,0.60);
      line-height: 1.80;
      max-width: 560px;
      margin-bottom: 28px;
    }

    /* tag pills */
    .ah-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }
    .ah-tag {
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.10);
      color: rgba(255,255,255,0.68);
      padding: 7px 16px;
      border-radius: 50px;
      font-size: 0.79rem;
      font-weight: 500;
      transition: all 0.25s;
    }
    .ah-tag:hover {
      background: rgba(245,130,31,0.12);
      border-color: rgba(245,130,31,0.30);
      color: #ffb870;
    }

    /* horizontal stats bar */
    .ah-stats-row {
      display: flex;
      border-left: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 38px;
    }
    .ah-stt {
      padding: 18px 26px;
      border-right: 1px solid rgba(255,255,255,0.08);
      min-width: 100px;
    }
    .ah-stt strong {
      display: block;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 2rem;
      font-weight: 700;
      color: #F5821F;
      line-height: 1;
    }
    .ah-stt small {
      display: block;
      font-size: 0.67rem;
      color: rgba(255,255,255,0.38);
      text-transform: uppercase;
      letter-spacing: 0.10em;
      margin-top: 5px;
    }

    /* CTA row */
    .ah-cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .ah-cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: #F5821F;
      color: #fff;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.03em;
      text-decoration: none;
      box-shadow: 0 8px 32px rgba(245,130,31,0.30);
      transition: all 0.3s;
    }
    .ah-cta-primary:hover {
      background: #d96e10;
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(245,130,31,0.50);
    }
    .ah-cta-sec {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: transparent;
      color: rgba(255,255,255,0.62);
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 0.88rem;
      border: 1.5px solid rgba(255,255,255,0.16);
      text-decoration: none;
      transition: all 0.3s;
    }
    .ah-cta-sec:hover {
      color: #fff;
      border-color: rgba(255,255,255,0.38);
      background: rgba(255,255,255,0.06);
      transform: translateY(-2px);
    }

    /* ── RIGHT: circular photo ── */
    .ah-right {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .ah-photo-wrap {
      position: relative;
      width: min(380px, 80vw);
      height: min(380px, 80vw);
    }
    .ah-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      border-radius: 50%;
      border: 4px solid rgba(245,130,31,0.35);
      display: block;
      position: relative;
      z-index: 2;
    }
    /* spinning rings */
    .ah-ring1 {
      position: absolute;
      inset: -22px;
      border-radius: 50%;
      border: 1.5px dashed rgba(245,130,31,0.28);
      animation: spinRing 32s linear infinite;
    }
    .ah-ring2 {
      position: absolute;
      inset: -46px;
      border-radius: 50%;
      border: 1px solid rgba(133,173,114,0.18);
      animation: spinRing 55s linear infinite reverse;
    }
    /* ring dot accents */
    .ah-ring1::before,
    .ah-ring2::before {
      content: '';
      position: absolute;
      top: 50%; left: -5px;
      width: 10px; height: 10px;
      border-radius: 50%;
      transform: translateY(-50%);
    }
    .ah-ring1::before { background: #F5821F; box-shadow: 0 0 8px rgba(245,130,31,0.7); }
    .ah-ring2::before { background: #85ad72; box-shadow: 0 0 8px rgba(133,173,114,0.6); }
    @keyframes spinRing { to { transform: rotate(360deg); } }

    /* floating experience chip */
    .ah-chip {
      position: absolute;
      bottom: 12px; right: -20px;
      background: #F5821F;
      border-radius: 18px;
      padding: 14px 20px;
      text-align: center;
      box-shadow: 0 12px 40px rgba(245,130,31,0.55);
      z-index: 4;
      min-width: 115px;
    }
    .ah-chip strong {
      display: block;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 2.1rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }
    .ah-chip span {
      font-size: 0.64rem;
      color: rgba(255,255,255,0.88);
      text-transform: uppercase;
      letter-spacing: 0.09em;
    }
    /* location chip top-left of photo */
    .ah-chip-loc {
      position: absolute;
      top: 10px; left: -24px;
      background: rgba(20,14,5,0.88);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 50px;
      padding: 9px 18px;
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 4;
      box-shadow: 0 8px 28px rgba(0,0,0,0.40);
    }
    .ah-chip-loc span { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 500; }

    /* scroll indicator */
    .ah-scroll {
      position: absolute;
      bottom: 28px; left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.25);
      font-size: 0.63rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      animation: scrollBob 2.4s ease-in-out infinite;
    }
    .ah-scroll-line {
      width: 1px; height: 44px;
      background: linear-gradient(180deg, rgba(245,130,31,0.55), transparent);
    }
    @keyframes scrollBob {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(-7px); }
    }

    /* entry animations */
    .ah-anim-l {
      opacity: 0;
      transform: translateX(-28px);
      animation: ahFromLeft 0.65s cubic-bezier(0.4,0,0.2,1) forwards;
    }
    .ah-anim-l-d1 { animation-delay: 0.08s; }
    .ah-anim-l-d2 { animation-delay: 0.18s; }
    .ah-anim-l-d3 { animation-delay: 0.30s; }
    .ah-anim-l-d4 { animation-delay: 0.42s; }
    .ah-anim-l-d5 { animation-delay: 0.54s; }
    .ah-anim-l-d6 { animation-delay: 0.66s; }
    @keyframes ahFromLeft {
      to { opacity: 1; transform: translateX(0); }
    }
    .ah-anim-photo {
      opacity: 0;
      transform: scale(0.90) translateY(24px);
      animation: ahPhotoIn 1s cubic-bezier(0.4,0,0.2,1) 0.25s forwards;
    }
    @keyframes ahPhotoIn {
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
    .ah-chip-anim {
      opacity: 0;
      transform: translateY(18px) scale(0.88);
      animation: ahChipIn 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.8s forwards;
    }
    @keyframes ahChipIn {
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    /* ── Responsive ── */
    @media (max-width: 1080px) {
      .ah-layout {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 48px 40px 72px;
        text-align: center;
      }
      .ah-eyebrow { justify-content: center; }
      .ah-bio { margin-left: auto; margin-right: auto; }
      .ah-tags { justify-content: center; }
      .ah-stats-row { justify-content: center; }
      .ah-cta-row { justify-content: center; }
      .ah-right { order: -1; }
      .ah-photo-wrap { width: min(300px, 70vw); height: min(300px, 70vw); }
      .ah-chip { right: -8px; }
      .ah-chip-loc { left: -8px; }
    }
    @media (max-width: 600px) {
      .ah-layout { padding: 36px 20px 64px; }
      .ah-title { font-size: clamp(2rem, 8vw, 2.6rem); }
      .ah-stt { padding: 14px 18px; min-width: 80px; }
      .ah-stt strong { font-size: 1.6rem; }
      .ah-photo-wrap { width: min(240px, 76vw); height: min(240px, 76vw); }
      .ah-scroll { display: none; }
    }
    /* ── Intro Strip ── */
    .intro-strip {
      background: #3e5623;
      padding: 28px 0;
    }
    .intro-strip-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .intro-strip p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.88);
      line-height: 1.7;
      max-width: 820px;
      flex: 1;
    }
    .intro-strip p strong { color: #ffd699; }
    .intro-strip-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #F5821F;
      color: #fff;
      padding: 12px 26px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      flex-shrink: 0;
      transition: all 0.3s;
    }
    .intro-strip-cta:hover {
      background: #613d1a;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,130,31,0.35);
    }

    /* ── Section Divider ── */
    .section-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 56px;
    }
    .section-divider .sd-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(97,61,26,0.15), transparent);
    }
    .section-divider .sd-icon {
      font-size: 1.4rem;
      color: #85ad72;
    }

    /* ── Journey Section ── */
    #journey { background: #fff; }
    .journey-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
    .journey-grid {
      display: grid;
      grid-template-columns: 1fr 60px 1fr;
      gap: 0;
      position: relative;
    }
    .journey-timeline-line {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .journey-timeline-line::before {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, #F5821F 0%, #85ad72 50%, #3e5623 100%);
      left: 50%;
      transform: translateX(-50%);
    }
    .journey-dot {
      width: 18px; height: 18px;
      background: #F5821F;
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 0 0 3px rgba(245,130,31,0.25);
      z-index: 1;
      flex-shrink: 0;
      margin-top: 28px;
    }
    .journey-dot.green {
      background: #3e5623;
      box-shadow: 0 0 0 3px rgba(62,86,35,0.25);
    }
    .journey-card {
      background: #fdf9f3;
      border: 1px solid rgba(97,61,26,0.09);
      border-radius: 16px;
      padding: 28px 32px;
      margin-bottom: 28px;
      position: relative;
      transition: all 0.35s;
    }
    .journey-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 40px rgba(97,61,26,0.12);
      border-color: rgba(245,130,31,0.25);
    }
    .journey-card-label {
      font-size: 0.73rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #F5821F;
      margin-bottom: 8px;
    }
    .journey-card h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.2rem;
      color: #613d1a;
      margin-bottom: 10px;
    }
    .journey-card p {
      font-size: 0.95rem;
      color: #6b5a45;
      line-height: 1.75;
    }
    /* Right-aligned card */
    .journey-card.right { text-align: left; }

    /* ── Experience Section ── */
    #experience { background: #fdf9f3; }
    .experience-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .experience-text {}
    .experience-text h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.9rem, 3.5vw, 2.7rem);
      color: #613d1a;
      margin-bottom: 18px;
    }
    .experience-text h2 span { color: #F5821F; }
    .experience-text p {
      font-size: 1rem;
      color: #6b5a45;
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .crops-visual {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .crop-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
      background: rgba(62,86,35,0.08);
      color: #3e5623;
      border: 1.5px solid rgba(62,86,35,0.15);
      transition: all 0.3s;
    }
    .crop-pill:hover {
      background: #3e5623;
      color: #fff;
      border-color: #3e5623;
      transform: translateY(-2px);
    }
    .experience-skills {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .skill-card {
      background: #fff;
      border: 1px solid rgba(97,61,26,0.09);
      border-radius: 14px;
      padding: 20px 18px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .skill-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #F5821F, #85ad72);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s;
    }
    .skill-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(97,61,26,0.10); }
    .skill-card:hover::before { transform: scaleX(1); }
    .skill-card .sk-icon { font-size: 1.6rem; margin-bottom: 10px; }
    .skill-card h4 { font-size: 0.92rem; font-weight: 600; color: #613d1a; margin-bottom: 4px; }
    .skill-card p { font-size: 0.8rem; color: #6b5a45; line-height: 1.5; }

    /* ── Awareness Journey Section ── */
    #awareness-journey {
      background: linear-gradient(135deg, #3e5623 0%, #2a3b18 60%, #1e2b10 100%);
      position: relative;
      overflow: hidden;
    }
    #awareness-journey::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(245,130,31,0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    #awareness-journey::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(133,173,114,0.10) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .awareness-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .awareness-text { color: rgba(255,255,255,0.88); }
    .awareness-text .section-label {
      background: rgba(245,130,31,0.18);
      color: #ffc07a;
    }
    .awareness-text h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.9rem, 3.5vw, 2.7rem);
      color: #fff;
      margin-bottom: 20px;
    }
    .awareness-text h2 span { color: #F5821F; }
    .awareness-text p {
      font-size: 1rem;
      color: rgba(255,255,255,0.78);
      line-height: 1.85;
      margin-bottom: 16px;
    }
    .awareness-list {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .al-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.82);
    }
    .al-item::before {
      content: '→';
      color: #F5821F;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .awareness-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .awareness-stat-card {
      background: rgba(255,255,255,0.07);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.35s;
    }
    .awareness-stat-card:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    }
    .asc-num {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: #F5821F;
      line-height: 1;
      margin-bottom: 8px;
    }
    .asc-label {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.4;
    }
    .awareness-stat-card.featured {
      grid-column: span 2;
      padding: 36px;
      background: rgba(245,130,31,0.15);
      border-color: rgba(245,130,31,0.35);
    }
    .awareness-stat-card.featured .asc-num { font-size: 3.5rem; }

    /* ── Innovation Section ── */
    #innovation { background: #fff; }
    .innovation-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
    .innovation-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .innovation-card {
      background: #fdf9f3;
      border: 1px solid rgba(97,61,26,0.09);
      border-radius: 20px;
      padding: 32px 26px;
      position: relative;
      overflow: hidden;
      transition: all 0.35s;
    }
    .innovation-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #F5821F, #85ad72, #3e5623);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s;
    }
    .innovation-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(97,61,26,0.13);
      border-color: rgba(245,130,31,0.2);
    }
    .innovation-card:hover::after { transform: scaleX(1); }
    .ic-num {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 3rem;
      font-weight: 700;
      color: rgba(97,61,26,0.07);
      line-height: 1;
      margin-bottom: -10px;
    }
    .ic-icon { font-size: 2rem; margin-bottom: 12px; }
    .innovation-card h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: #613d1a;
      margin-bottom: 8px;
    }
    .innovation-card p {
      font-size: 0.88rem;
      color: #6b5a45;
      line-height: 1.7;
    }

    /* ── Training Section ── */
    #training-about {
      background: #fdf9f3;
    }
    .ab-training-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .ab-training-visual {
      position: relative;
    }
    .ab-training-img-stack {
      position: relative;
      height: 480px;
    }
    .ab-training-img-main {
      width: 80%;
      height: 380px;
      object-fit: cover;
      border-radius: 20px;
      position: absolute;
      top: 0; left: 0;
      box-shadow: 0 16px 48px rgba(97,61,26,0.20);
    }
    .ab-training-img-accent {
      width: 55%;
      height: 220px;
      object-fit: cover;
      border-radius: 16px;
      position: absolute;
      bottom: 0; right: 0;
      border: 5px solid #fff;
      box-shadow: 0 12px 36px rgba(97,61,26,0.18);
    }
    .ab-training-floating-badge {
      position: absolute;
      top: 30px; right: 10px;
      background: #F5821F;
      color: #fff;
      border-radius: 16px;
      padding: 16px 20px;
      text-align: center;
      z-index: 3;
      box-shadow: 0 8px 24px rgba(245,130,31,0.40);
    }
    .ab-training-floating-badge strong {
      display: block;
      font-size: 1.6rem;
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 700;
      line-height: 1;
    }
    .ab-training-floating-badge span {
      font-size: 0.72rem;
      opacity: 0.9;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .ab-training-content h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.9rem, 3.5vw, 2.7rem);
      color: #613d1a;
      margin-bottom: 16px;
    }
    .ab-training-content h2 span { color: #F5821F; }
    .ab-training-content > p {
      font-size: 1rem;
      color: #6b5a45;
      line-height: 1.82;
      margin-bottom: 32px;
    }
    .ab-training-topics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .ab-tt-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1px solid rgba(97,61,26,0.09);
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 0.88rem;
      font-weight: 500;
      color: #2a1a08;
      transition: all 0.3s;
    }
    .ab-tt-item:hover {
      background: #3e5623;
      color: #fff;
      border-color: #3e5623;
      transform: translateX(4px);
    }
    .ab-tt-item .tt-dot {
      width: 8px; height: 8px;
      background: #85ad72;
      border-radius: 50%;
      flex-shrink: 0;
      transition: background 0.3s;
    }
    .ab-tt-item:hover .tt-dot { background: #ffd699; }

    /* ── Media Recognition ── */
    /* ── Media Recognition – redesigned ── */
    #media-recognition {
      background: #fdf9f3;
      overflow: hidden;
    }
    .mr-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 52px;
    }
    .mr-header h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      color: #613d1a;
      margin-bottom: 14px;
    }
    .mr-header h2 span { color: #F5821F; }
    .mr-header p {
      font-size: 1rem;
      color: #6b5a45;
      line-height: 1.8;
    }

    /* Highlight cards row */
    .mr-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 52px;
    }
    .mr-card {
      background: #fff;
      border: 1px solid rgba(97,61,26,0.09);
      border-radius: 20px;
      padding: 30px 26px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }
    .mr-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #F5821F, #85ad72);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s;
    }
    .mr-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(97,61,26,0.12); }
    .mr-card:hover::after { transform: scaleX(1); }
    .mr-card-icon {
      width: 48px; height: 48px;
      background: rgba(245,130,31,0.10);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .mr-card h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.05rem;
      color: #613d1a;
      font-weight: 600;
    }
    .mr-card p {
      font-size: 0.86rem;
      color: #6b5a45;
      line-height: 1.7;
    }

    /* Photo gallery strip */
    .mr-gallery {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 14px;
    }
    .mr-gallery-item {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      cursor: pointer;
    }
    .mr-gallery-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .mr-gallery-item:first-child img { height: 280px; }
    .mr-gallery-item:hover img { transform: scale(1.06); }
    .mr-gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(40,20,5,0.55) 100%);
      opacity: 0;
      transition: opacity 0.35s;
    }
    .mr-gallery-item:hover::after { opacity: 1; }

    /* responsive */
    @media (max-width: 768px) {
      .mr-cards { grid-template-columns: 1fr; }
      .mr-gallery { grid-template-columns: 1fr 1fr; }
      .mr-gallery-item:first-child { grid-column: span 2; }
      .mr-gallery-item img, .mr-gallery-item:first-child img { height: 200px; }
    }
    @media (max-width: 480px) {
      .mr-gallery { grid-template-columns: 1fr; }
      .mr-gallery-item:first-child { grid-column: auto; }
    }
    }
    .media-images-grid img:first-child {
      grid-column: span 2;
      height: 220px;
    }

    /* ── Vision & Mission ── */
    #vision-mission {
      background: linear-gradient(135deg, #613d1a 0%, #3e1f08 100%);
      position: relative;
      overflow: hidden;
    }
    #vision-mission::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(245,130,31,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(133,173,114,0.08) 0%, transparent 50%);
      pointer-events: none;
    }
    .vm-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }
    .vm-header h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: #fff;
      margin-bottom: 12px;
    }
    .vm-header h2 span { color: #F5821F; }
    .vm-header p {
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
    }
    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      position: relative;
      z-index: 1;
    }
    .vm-card {
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 24px;
      padding: 40px 36px;
      transition: all 0.35s;
    }
    .vm-card:hover {
      background: rgba(255,255,255,0.10);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.30);
    }
    .vm-card-icon {
      width: 52px; height: 52px;
      background: rgba(245,130,31,0.20);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }
    .vm-card.mission-card .vm-card-icon {
      background: rgba(133,173,114,0.18);
    }
    .vm-card h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 16px;
    }
    .vm-card p {
      font-size: 0.97rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .vm-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .vm-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.80);
      line-height: 1.5;
    }
    .vm-list li::before {
      content: '✦';
      color: #F5821F;
      font-size: 0.65rem;
      flex-shrink: 0;
      margin-top: 4px;
    }
    .mission-card .vm-list li::before { color: #85ad72; }

    /* ── Guiding Principle / Quote ── */
    #guiding-principle {
      background: #fdf9f3;
      padding: 100px 0;
    }
    .quote-wrap {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }
    .quote-icon {
      font-size: 5rem;
      line-height: 1;
      color: rgba(245,130,31,0.18);
      font-family: Georgia, serif;
      margin-bottom: -20px;
      display: block;
    }
    .quote-text {
      font-family: 'Playfair Display', Georgia, serif;
      font-style: italic;
      font-size: clamp(1.3rem, 2.8vw, 1.9rem);
      color: #613d1a;
      line-height: 1.65;
      margin-bottom: 28px;
      position: relative;
    }
    .quote-text::before, .quote-text::after {
      content: '';
      display: block;
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, transparent, #F5821F);
      margin: 24px auto;
    }
    .quote-text::after {
      background: linear-gradient(90deg, #F5821F, transparent);
    }
    .quote-author {
      display: inline-flex;
      align-items: center;
      gap: 14px;
    }
    .quote-author-line {
      width: 40px;
      height: 2px;
      background: #85ad72;
      border-radius: 2px;
    }
    .quote-author-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #3e5623;
    }

    /* ── Closing / CTA Section ── */
    #closing-cta {
      background: linear-gradient(135deg, #3e5623 0%, #2a3b18 100%);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    #closing-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
    }
    .closing-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }
    .closing-leaf {
      font-size: 3rem;
      margin-bottom: 20px;
      animation: float 3s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .closing-inner h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      color: #fff;
      margin-bottom: 16px;
    }
    .closing-inner h2 span { color: #F5821F; }
    .closing-inner p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.82;
      margin-bottom: 36px;
    }
    .closing-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn-white {
      background: #fff;
      color: #3e5623;
      border: 2px solid #fff;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
    }
    .btn-white:hover {
      background: transparent;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.20);
    }
    .btn-orange-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.45);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
    }
    .btn-orange-outline:hover {
      background: rgba(245,130,31,0.85);
      border-color: #F5821F;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,130,31,0.35);
    }

    /* ── Responsive (non-hero sections) ── */
    @media (max-width: 1024px) {
      .journey-grid { grid-template-columns: 1fr; }
      .journey-timeline-line { display: none; }
      .journey-card { margin-bottom: 16px; }
      .innovation-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .experience-layout,
      .awareness-layout,
      .ab-training-layout,
      .vm-grid { grid-template-columns: 1fr; gap: 36px; }
      .experience-skills { grid-template-columns: 1fr 1fr; }
      .awareness-stats { grid-template-columns: 1fr 1fr; }
      .awareness-stat-card.featured { grid-column: span 2; }
      .innovation-grid { grid-template-columns: 1fr; }
      .ab-training-img-stack { height: 340px; }
    }

    @media (max-width: 480px) {
      .experience-skills { grid-template-columns: 1fr; }
      .vm-grid { grid-template-columns: 1fr; }
      .awareness-stat-card.featured { grid-column: auto; }
      .ab-training-topics { grid-template-columns: 1fr; }
    }

/* ================================================================
   ORGANIC FARMING PAGE — Page-Specific Styles
   ================================================================ */
    /* ============================================================
       ORGANIC FARMING PAGE — Styles
       ============================================================ */

    /* ── OF Hero ── */
    #of-hero {
      min-height: 100vh;
      background: #07140a;
      padding-top: 72px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    /* animated background */
    .of-hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 65% 40%, rgba(62,86,35,0.28) 0%, transparent 60%),
        radial-gradient(ellipse 55% 50% at 10% 80%, rgba(133,173,114,0.10) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(245,130,31,0.07) 0%, transparent 60%);
    }
    /* subtle grid overlay */
    .of-hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    /* leaf decorative shapes */
    .of-hero-leaf {
      position: absolute;
      border-radius: 50% 0 50% 0;
      opacity: 0.06;
      background: #85ad72;
    }
    .of-hero-leaf-1 { width: 420px; height: 420px; top: -80px; right: -60px; transform: rotate(25deg); }
    .of-hero-leaf-2 { width: 260px; height: 260px; bottom: 40px; left: -40px; transform: rotate(-15deg); background: #3e5623; }

    .of-hero-inner {
      position: relative; z-index: 2;
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: 72px 60px 88px;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 72px;
      align-items: center;
    }

    /* breadcrumb */
    .of-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 24px;
    }
    .of-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
    .of-breadcrumb a:hover { color: #85ad72; }
    .of-breadcrumb .sep { color: rgba(255,255,255,0.18); }

    /* green accent label */
    .of-hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(133,173,114,0.14);
      border: 1px solid rgba(133,173,114,0.30);
      color: #a8d08d;
      padding: 7px 18px;
      border-radius: 50px;
      font-size: 0.73rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .of-hero-label .dot { width: 6px; height: 6px; background: #85ad72; border-radius: 50%; animation: pulse 2s infinite; }

    /* main title */
    .of-hero-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.2rem, 4vw, 4.8rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.06;
      margin-bottom: 22px;
    }
    .of-hero-title em { color: #85ad72; font-style: italic; }

    /* subtitle */
    .of-hero-sub {
      font-size: 1.04rem;
      color: rgba(255,255,255,0.58);
      line-height: 1.82;
      max-width: 540px;
      margin-bottom: 36px;
    }

    /* hero pills row */
    .of-hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 38px;
    }
    .of-pill {
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.09);
      color: rgba(255,255,255,0.65);
      padding: 7px 16px;
      border-radius: 50px;
      font-size: 0.79rem;
      font-weight: 500;
    }

    /* CTA */
    .of-hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .of-btn-primary {
      display: inline-flex; align-items: center; gap: 9px;
      background: #3e5623; color: #fff;
      padding: 14px 28px; border-radius: 50px;
      font-weight: 700; font-size: 0.88rem;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(62,86,35,0.45);
      transition: all 0.3s;
    }
    .of-btn-primary:hover { background: #2d3f19; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(62,86,35,0.60); }
    .of-btn-ghost {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: rgba(255,255,255,0.62);
      padding: 14px 28px; border-radius: 50px;
      font-weight: 500; font-size: 0.88rem;
      border: 1.5px solid rgba(255,255,255,0.16);
      text-decoration: none; transition: all 0.3s;
    }
    .of-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.36); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

    /* right: stacked image collage */
    .of-hero-collage {
      position: relative;
      height: 480px;
    }
    .of-col-img {
      position: absolute;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    }
    .of-col-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
    .of-col-img-1 { width: 68%; height: 62%; top: 0; right: 0; border-radius: 24px; }
    .of-col-img-2 { width: 50%; height: 50%; bottom: 0; left: 0; border: 3px solid rgba(133,173,114,0.35); }
    .of-col-img-3 { width: 34%; height: 34%; bottom: 10%; right: 2%; border: 3px solid rgba(245,130,31,0.30); border-radius: 16px; }

    /* floating stats card */
    .of-hero-stat-chip {
      position: absolute;
      top: 50%; left: -16px;
      transform: translateY(-50%);
      background: rgba(10,22,5,0.92);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(133,173,114,0.22);
      border-radius: 18px;
      padding: 16px 20px;
      z-index: 5;
      box-shadow: 0 12px 40px rgba(0,0,0,0.45);
      min-width: 130px;
    }
    .of-hero-stat-chip strong {
      display: block;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.8rem; font-weight: 700; color: #85ad72; line-height: 1;
    }
    .of-hero-stat-chip span { font-size: 0.68rem; color: rgba(255,255,255,0.50); text-transform: uppercase; letter-spacing: 0.09em; }

    /* hero entry animations */
    .of-anim { opacity: 0; transform: translateY(24px); animation: ofFadeUp 0.65s cubic-bezier(0.4,0,0.2,1) forwards; }
    .of-anim-d1 { animation-delay: 0.08s; }
    .of-anim-d2 { animation-delay: 0.18s; }
    .of-anim-d3 { animation-delay: 0.30s; }
    .of-anim-d4 { animation-delay: 0.44s; }
    .of-anim-d5 { animation-delay: 0.58s; }
    .of-collage-anim { opacity: 0; transform: scale(0.92) translateX(24px); animation: ofCollageIn 1s cubic-bezier(0.4,0,0.2,1) 0.25s forwards; }
    @keyframes ofFadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes ofCollageIn { to { opacity: 1; transform: scale(1) translateX(0); } }
    

    /* responsive hero */
    @media (max-width: 1100px) {
      .of-hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 56px 40px 72px; }
      .of-hero-collage { height: 320px; }
      .of-col-img-1 { width: 60%; height: 60%; }
    }
    @media (max-width: 600px) {
      .of-hero-inner { padding: 40px 20px 60px; }
      .of-hero-collage { height: 260px; }
      .of-hero-stat-chip { left: 4px; }
    }

    /* ── What is Organic Farming ── */
    #of-intro { background: #fdf9f3; }
    .of-intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .of-intro-img {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: 0 20px 60px rgba(97,61,26,0.15);
    }
    .of-intro-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 7s ease; }
    .of-intro-img:hover img { transform: scale(1.04); }
    .of-intro-img-badge {
      position: absolute;
      bottom: 20px; right: 20px;
      background: #3e5623;
      border-radius: 14px;
      padding: 12px 18px;
      color: #fff;
      text-align: center;
    }
    .of-intro-img-badge strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
    .of-intro-img-badge span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.09em; opacity: 0.8; }

    .of-intro-content .section-label { background: rgba(62,86,35,0.10); color: #3e5623; }
    .of-intro-content h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.8rem, 2.8vw, 2.6rem);
      font-weight: 700;
      color: #2a1a08;
      line-height: 1.18;
      margin: 14px 0 18px;
    }
    .of-intro-content h2 span { color: #3e5623; }
    .of-intro-content p { color: #6b5a45; line-height: 1.82; font-size: 1rem; margin-bottom: 16px; }

    .of-principle-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }
    .of-pc {
      background: #fff;
      border-radius: 16px;
      padding: 20px 16px;
      border-left: 4px solid #85ad72;
      box-shadow: 0 4px 20px rgba(97,61,26,0.07);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .of-pc:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(97,61,26,0.12); }
    .of-pc:nth-child(2) { border-left-color: #F5821F; }
    .of-pc:nth-child(3) { border-left-color: #3e5623; }
    .of-pc-icon { font-size: 1.6rem; margin-bottom: 8px; }
    .of-pc h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 0.95rem; font-weight: 700; color: #2a1a08; margin-bottom: 5px; }
    .of-pc p { font-size: 0.78rem; color: #6b5a45; line-height: 1.6; margin: 0; }

    @media (max-width: 900px) {
      .of-intro-grid { grid-template-columns: 1fr; gap: 40px; }
      .of-principle-cards { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 500px) {
      .of-principle-cards { grid-template-columns: 1fr; }
    }

    /* ── Why It Matters — problems strip ── */
    #of-why { background: #1a3a0a; position: relative; overflow: hidden; }
    #of-why::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(133,173,114,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 20%, rgba(245,130,31,0.05) 0%, transparent 55%);
    }
    .of-why-header { text-align: center; max-width: 680px; margin: 0 auto 56px; position: relative; z-index:1; }
    .of-why-header .section-label { background: rgba(133,173,114,0.15); color: #a8d08d; }
    .of-why-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,2.8vw,2.6rem); color: #fff; margin-top: 12px; line-height: 1.18; }
    .of-why-header h2 span { color: #85ad72; }
    .of-why-header p { color: rgba(255,255,255,0.58); line-height: 1.8; margin-top: 14px; }

    .of-why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-bottom: 56px;
      position: relative; z-index: 1;
    }
    .of-why-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px;
      padding: 26px 20px;
      transition: all 0.30s;
      position: relative;
      overflow: hidden;
    }
    .of-why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #85ad72, #3e5623);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .of-why-card:hover::before { transform: scaleX(1); }
    .of-why-card:hover { background: rgba(133,173,114,0.08); border-color: rgba(133,173,114,0.20); transform: translateY(-4px); }
    .of-why-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
    .of-why-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .of-why-card p { font-size: 0.80rem; color: rgba(255,255,255,0.50); line-height: 1.65; margin: 0; }

    /* solution callout */
    .of-solution-bar {
      position: relative; z-index: 1;
      background: rgba(133,173,114,0.12);
      border: 1px solid rgba(133,173,114,0.22);
      border-radius: 20px;
      padding: 32px 40px;
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .of-solution-bar-icon { font-size: 2.6rem; flex-shrink: 0; }
    .of-solution-bar h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; font-weight: 700; color: #a8d08d; margin-bottom: 6px; }
    .of-solution-bar p { color: rgba(255,255,255,0.60); font-size: 0.94rem; line-height: 1.75; margin: 0; }

    @media (max-width: 900px) { .of-why-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) {
      .of-why-grid { grid-template-columns: 1fr; }
      .of-solution-bar { flex-direction: column; padding: 24px 20px; }
    }

    /* ── Methods Section ── */
    #of-methods { background: #fff; }
    .of-methods-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .of-methods-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,2.8vw,2.6rem); color: #2a1a08; margin-top: 12px; line-height: 1.18; }
    .of-methods-header h2 span { color: #3e5623; }
    .of-methods-header p { color: #6b5a45; line-height: 1.8; margin-top: 14px; }

    /* big alternating method rows */
    .of-method-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-bottom: 80px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 10px 50px rgba(97,61,26,0.10);
    }
    .of-method-block:last-child { margin-bottom: 0; }
    .of-method-block.reverse { direction: rtl; }
    .of-method-block.reverse > * { direction: ltr; }

    .of-method-img {
      position: relative;
      overflow: hidden;
      min-height: 340px;
    }
    .of-method-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 7s ease; }
    .of-method-img:hover img { transform: scale(1.06); }
    .of-method-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10,30,5,0.45) 0%, transparent 60%);
      pointer-events: none;
    }
    .of-method-img-label {
      position: absolute;
      top: 20px; left: 20px;
      background: rgba(10,22,5,0.82);
      backdrop-filter: blur(8px);
      border-radius: 50px;
      padding: 7px 16px;
      color: #a8d08d;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .of-method-content {
      background: #fdf9f3;
      padding: 44px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .of-method-num {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: rgba(62,86,35,0.10);
      line-height: 1;
      margin-bottom: -10px;
    }
    .of-method-content h3 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.55rem;
      font-weight: 700;
      color: #2a1a08;
      margin-bottom: 12px;
      line-height: 1.25;
    }
    .of-method-content p { color: #6b5a45; line-height: 1.80; font-size: 0.96rem; margin-bottom: 20px; }

    .of-method-list {
      list-style: none;
      padding: 0; margin: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .of-method-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: #6b5a45;
      font-weight: 500;
    }
    .of-method-list li::before {
      content: '';
      width: 6px; height: 6px;
      background: #85ad72;
      border-radius: 50%;
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .of-method-block { grid-template-columns: 1fr; }
      .of-method-block.reverse { direction: ltr; }
      .of-method-img { min-height: 260px; }
      .of-method-content { padding: 32px 28px; }
      .of-method-list { grid-template-columns: 1fr; }
    }

    /* ── Crops & Fruits ── */
    #of-crops { background: #fdf9f3; }
    .of-crops-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .of-crops-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,2.8vw,2.6rem); color: #2a1a08; margin-top: 12px; }
    .of-crops-header h2 span { color: #F5821F; }
    .of-crops-header p { color: #6b5a45; line-height: 1.8; margin-top: 14px; }

    /* tab switcher */
    .of-crops-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }
    .of-ctab {
      background: transparent;
      border: 1.5px solid rgba(97,61,26,0.18);
      color: #6b5a45;
      padding: 9px 22px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
      font-family: 'Inter', sans-serif;
    }
    .of-ctab.active, .of-ctab:hover {
      background: #3e5623;
      border-color: #3e5623;
      color: #fff;
    }

    /* crop tab panels */
    .of-crop-panel { display: none; }
    .of-crop-panel.active { display: block; }

    .of-veg-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 14px;
    }
    .of-veg-item {
      background: #fff;
      border-radius: 16px;
      padding: 22px 14px 16px;
      text-align: center;
      border: 1.5px solid transparent;
      box-shadow: 0 4px 16px rgba(97,61,26,0.07);
      transition: all 0.25s;
      cursor: default;
    }
    .of-veg-item:hover { border-color: #85ad72; transform: translateY(-4px); box-shadow: 0 10px 28px rgba(97,61,26,0.13); }
    .of-veg-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
    .of-veg-item span:last-child { font-size: 0.80rem; font-weight: 600; color: #2a1a08; }

    /* fruit cards */
    .of-fruit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    .of-fruit-card {
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 6px 28px rgba(97,61,26,0.09);
      transition: all 0.30s;
    }
    .of-fruit-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(97,61,26,0.18); }
    .of-fruit-card-img {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    .of-fruit-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 6s ease; }
    .of-fruit-card:hover .of-fruit-card-img img { transform: scale(1.08); }
    .of-fruit-card-body { padding: 20px 18px; }
    .of-fruit-card-body h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #2a1a08; margin-bottom: 6px; }
    .of-fruit-card-body p { font-size: 0.80rem; color: #6b5a45; line-height: 1.65; margin: 0; }
    .of-fruit-tag { display: inline-block; margin-top: 10px; font-size: 0.70rem; background: rgba(62,86,35,0.10); color: #3e5623; padding: 4px 12px; border-radius: 50px; font-weight: 600; }

    @media (max-width: 900px) { .of-fruit-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) { .of-fruit-grid { grid-template-columns: 1fr; } .of-veg-grid { grid-template-columns: repeat(3,1fr); } }

    /* ── Benefits Section ── */
    #of-benefits { background: #2a1a08; position: relative; overflow: hidden; }
    #of-benefits::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(245,130,31,0.07) 0%, transparent 55%);
    }
    .of-ben-header { text-align: center; max-width: 680px; margin: 0 auto 56px; position: relative; z-index: 1; }
    .of-ben-header .section-label { background: rgba(245,130,31,0.15); color: #ffb870; }
    .of-ben-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,2.8vw,2.6rem); color: #fff; margin-top: 12px; }
    .of-ben-header h2 span { color: #F5821F; }
    .of-ben-header p { color: rgba(255,255,255,0.55); line-height: 1.8; margin-top: 14px; }

    .of-ben-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative; z-index: 1;
    }
    .of-ben-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 24px;
      padding: 32px 28px;
      transition: all 0.30s;
    }
    .of-ben-card:hover { background: rgba(245,130,31,0.07); border-color: rgba(245,130,31,0.18); transform: translateY(-4px); }
    .of-ben-card-who {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 13px;
      border-radius: 50px;
      margin-bottom: 18px;
    }
    .of-ben-card-who.farmers { background: rgba(133,173,114,0.15); color: #a8d08d; }
    .of-ben-card-who.consumers { background: rgba(245,130,31,0.13); color: #ffb870; }
    .of-ben-card-who.environment { background: rgba(62,86,35,0.22); color: #85ad72; }
    .of-ben-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
    .of-ben-list { list-style: none; padding: 0; margin: 0; }
    .of-ben-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.86rem; color: rgba(255,255,255,0.58);
      line-height: 1.6; padding: 7px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .of-ben-list li:last-child { border-bottom: none; }
    .of-ben-list li::before { content: '✓'; color: #85ad72; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    @media (max-width: 900px) { .of-ben-grid { grid-template-columns: 1fr; } }

    /* ── Protected Cultivation + Rajasthan ── */
    #of-protected { background: #fdf9f3; }
    .of-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: start;
    }
    .of-content-card {
      background: #fff;
      border-radius: 24px;
      padding: 36px 32px;
      box-shadow: 0 6px 32px rgba(97,61,26,0.08);
      height: 100%;
    }
    .of-content-card-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
    .of-content-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 700; color: #2a1a08; margin-bottom: 12px; }
    .of-content-card p { color: #6b5a45; line-height: 1.80; font-size: 0.95rem; margin-bottom: 18px; }
    .of-check-list { list-style: none; padding: 0; margin: 0; }
    .of-check-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.86rem; color: #4a3828;
      padding: 9px 0;
      border-bottom: 1px solid rgba(97,61,26,0.08);
      font-weight: 500;
    }
    .of-check-list li:last-child { border-bottom: none; }
    .of-check-list .ck { width: 20px; height: 20px; border-radius: 50%; background: rgba(62,86,35,0.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:0.70rem; color:#3e5623; font-weight:700; }

    /* Rajasthan challenges */
    .of-raj-card {
      background: linear-gradient(135deg, #1a3a0a 0%, #0f2205 100%);
      border-radius: 24px;
      padding: 36px 32px;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .of-raj-card::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(133,173,114,0.12) 0%, transparent 60%);
      pointer-events: none;
    }
    .of-raj-card-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; position: relative; z-index:1; }
    .of-raj-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 10px; position: relative; z-index:1; }
    .of-raj-card p { color: rgba(255,255,255,0.60); line-height: 1.80; font-size: 0.95rem; margin-bottom: 18px; position: relative; z-index:1; }
    .of-raj-challenges {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      position: relative; z-index:1;
    }
    .of-raj-chall {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 12px 14px;
      font-size: 0.80rem;
      color: rgba(255,255,255,0.65);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .of-raj-chall::before { content: '⚡'; font-size: 0.85rem; }
    .of-raj-quote {
      position: relative; z-index:1;
      margin-top: 22px;
      background: rgba(133,173,114,0.10);
      border-left: 3px solid #85ad72;
      border-radius: 0 12px 12px 0;
      padding: 14px 18px;
      font-family: 'Playfair Display', Georgia, serif;
      font-style: italic;
      font-size: 0.93rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
    }

    @media (max-width: 900px) { .of-two-col { grid-template-columns: 1fr; } }

    /* ── Closing CTA ── */
    #of-cta {
      background: linear-gradient(135deg, #3e5623 0%, #1a3a0a 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    #of-cta::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 50% 80% at 50% -20%, rgba(133,173,114,0.15) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 90% 100%, rgba(245,130,31,0.06) 0%, transparent 55%);
      pointer-events: none;
    }
    .of-cta-inner { position: relative; z-index:1; max-width: 680px; margin: 0 auto; }
    .of-cta-inner .section-label { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.75); }
    .of-cta-inner h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,3vw,3rem); color: #fff; margin: 16px 0 18px; line-height: 1.15; }
    .of-cta-inner h2 span { color: #ffd699; font-style: italic; }
    .of-cta-inner p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.80; margin-bottom: 36px; }
    .of-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .of-cta-btn-white {
      display: inline-flex; align-items: center; gap: 9px;
      background: #fff; color: #3e5623;
      padding: 15px 32px; border-radius: 50px;
      font-weight: 700; font-size: 0.92rem;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(0,0,0,0.20);
      transition: all 0.3s;
    }
    .of-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.30); }
    .of-cta-btn-outline {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: rgba(255,255,255,0.80);
      padding: 15px 32px; border-radius: 50px;
      font-weight: 500; font-size: 0.92rem;
      border: 1.5px solid rgba(255,255,255,0.30);
      text-decoration: none; transition: all 0.3s;
    }
    .of-cta-btn-outline:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }


/* ================================================================
   NATURAL METHODS PAGE — Page-Specific Styles
   ================================================================ */
    /* ============================================================
       NATURAL METHODS PAGE
       ============================================================ */

    /* ── HERO ── */
    #nm-hero {
      min-height: 100vh;
      background: #060e04;
      padding-top: 72px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    /* Animated gradient orbs */
    .nm-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }
    .nm-orb-1 { width: 600px; height: 600px; background: rgba(62,86,35,0.22); top: -150px; right: -100px; animation: orbFloat 18s ease-in-out infinite; }
    .nm-orb-2 { width: 400px; height: 400px; background: rgba(133,173,114,0.12); bottom: -100px; left: -80px; animation: orbFloat 24s ease-in-out infinite reverse; }
    .nm-orb-3 { width: 280px; height: 280px; background: rgba(245,130,31,0.07); top: 40%; left: 40%; animation: orbFloat 15s ease-in-out 3s infinite; }
    @keyframes orbFloat {
      0%,100% { transform: translate(0,0) scale(1); }
      33% { transform: translate(30px,-20px) scale(1.06); }
      66% { transform: translate(-20px,30px) scale(0.94); }
    }
    /* dot grid */
    .nm-hero-dots {
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }
    .nm-hero-inner {
      position: relative; z-index: 2;
      max-width: 1280px; width: 100%;
      margin: 0 auto;
      padding: 72px 60px 88px;
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 80px;
      align-items: center;
    }
    /* breadcrumb */
    .nm-breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.71rem; color: rgba(255,255,255,0.30);
      text-transform: uppercase; letter-spacing: 0.16em;
      margin-bottom: 22px;
    }
    .nm-breadcrumb a { color: inherit; text-decoration: none; transition: color 0.3s; }
    .nm-breadcrumb a:hover { color: #85ad72; }
    .nm-breadcrumb .sep { color: rgba(255,255,255,0.15); }

    /* label */
    .nm-hero-label {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(133,173,114,0.12);
      border: 1px solid rgba(133,173,114,0.28);
      color: #a8d08d;
      padding: 7px 18px; border-radius: 50px;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.13em; text-transform: uppercase;
      margin-bottom: 22px;
    }
    .nm-hero-label .dot { width: 6px; height: 6px; background: #85ad72; border-radius: 50%; animation: nmPulse 2s infinite; }
    @keyframes nmPulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.35;transform:scale(1.6);} }

    .nm-hero-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.4rem, 4vw, 5rem);
      font-weight: 700; color: #fff;
      line-height: 1.04; margin-bottom: 22px;
    }
    .nm-hero-title em { color: #85ad72; font-style: italic; }
    .nm-hero-title .line-accent {
      display: inline-block;
      background: linear-gradient(90deg, #85ad72, #3e5623);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nm-hero-sub {
      font-size: 1.02rem; color: rgba(255,255,255,0.54);
      line-height: 1.84; max-width: 540px; margin-bottom: 36px;
    }

    /* quick method pills */
    .nm-method-pills {
      display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px;
    }
    .nm-method-pill {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.09);
      color: rgba(255,255,255,0.62);
      padding: 7px 16px; border-radius: 50px;
      font-size: 0.78rem; font-weight: 500;
      transition: all 0.25s; cursor: default;
    }
    .nm-method-pill:hover { background: rgba(133,173,114,0.13); border-color: rgba(133,173,114,0.28); color: #a8d08d; }

    /* CTAs */
    .nm-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
    .nm-btn-primary {
      display: inline-flex; align-items: center; gap: 9px;
      background: linear-gradient(135deg, #3e5623, #2d3f19);
      color: #fff; padding: 14px 28px; border-radius: 50px;
      font-weight: 700; font-size: 0.88rem; text-decoration: none;
      box-shadow: 0 8px 28px rgba(62,86,35,0.50);
      transition: all 0.3s;
    }
    .nm-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(62,86,35,0.65); }
    .nm-btn-ghost {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: rgba(255,255,255,0.60);
      padding: 14px 28px; border-radius: 50px;
      font-weight: 500; font-size: 0.88rem;
      border: 1.5px solid rgba(255,255,255,0.15);
      text-decoration: none; transition: all 0.3s;
    }
    .nm-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.36); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

    /* RIGHT: staggered method icon grid */
    .nm-hero-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .nm-hero-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px;
      padding: 22px 18px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .nm-hero-card::before {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, #85ad72, transparent);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s ease;
    }
    .nm-hero-card:hover { background: rgba(133,173,114,0.09); border-color: rgba(133,173,114,0.20); transform: translateY(-3px); }
    .nm-hero-card:hover::before { transform: scaleX(1); }
    .nm-hero-card:nth-child(even) { margin-top: 20px; }
    .nm-hero-card-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
    .nm-hero-card h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.3; }
    .nm-hero-card p { font-size: 0.73rem; color: rgba(255,255,255,0.42); line-height: 1.55; margin: 0; }

    /* hero animations */
    .nm-anim { opacity: 0; transform: translateY(22px); animation: nmFadeUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards; }
    .nm-anim-d1 { animation-delay: 0.08s; }
    .nm-anim-d2 { animation-delay: 0.18s; }
    .nm-anim-d3 { animation-delay: 0.30s; }
    .nm-anim-d4 { animation-delay: 0.44s; }
    .nm-anim-d5 { animation-delay: 0.58s; }
    .nm-cards-anim { opacity: 0; transform: translateX(28px); animation: nmSlideIn 0.8s cubic-bezier(0.4,0,0.2,1) 0.25s forwards; }
    @keyframes nmFadeUp { to { opacity:1; transform:translateY(0); } }
    @keyframes nmSlideIn { to { opacity:1; transform:translateX(0); } }

    /* scroll hint */
    .nm-scroll-hint {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      color: rgba(255,255,255,0.20); font-size: 0.60rem;
      letter-spacing: 0.18em; text-transform: uppercase;
    }
    .nm-scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, rgba(133,173,114,0.50), transparent); }

    /* hero responsive */
    @media (max-width: 1080px) {
      .nm-hero-inner { grid-template-columns: 1fr; gap: 52px; padding: 56px 40px 72px; }
      .nm-hero-cards { grid-template-columns: repeat(4,1fr); }
      .nm-hero-card:nth-child(even) { margin-top: 0; }
    }
    @media (max-width: 700px) {
      .nm-hero-inner { padding: 40px 20px 64px; }
      .nm-hero-cards { grid-template-columns: 1fr 1fr; }
      .nm-hero-card:nth-child(even) { margin-top: 16px; }
    }

    /* ── INTRO STRIP ── */
    #nm-intro-strip { background: #3e5623; padding: 36px 0; }
    .nm-intro-strip-inner {
      display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
      justify-content: space-between;
    }
    .nm-intro-strip-inner p { font-size: 1.04rem; color: rgba(255,255,255,0.88); line-height: 1.75; flex: 1; min-width: 280px; max-width: 820px; }
    .nm-intro-strip-inner p strong { color: #ffd699; }
    .nm-intro-stats { display: flex; gap: 32px; flex-shrink: 0; }
    .nm-istat { text-align: center; }
    .nm-istat strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 1.8rem; font-weight: 700; color: #ffd699; line-height: 1; }
    .nm-istat span { font-size: 0.70rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.09em; }
    @media (max-width: 600px) { .nm-intro-stats { gap: 20px; } .nm-istat strong { font-size: 1.4rem; } }

    /* ── METHODS GRID (main) ── */
    #nm-methods { background: #fdf9f3; }
    .nm-methods-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
    .nm-methods-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,2.8vw,2.7rem); color: #2a1a08; margin-top: 12px; line-height: 1.18; }
    .nm-methods-header h2 span { color: #3e5623; }
    .nm-methods-header p { color: #6b5a45; line-height: 1.80; margin-top: 14px; }

    /* bento grid */
    .nm-bento {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 20px;
    }
    .nm-bento-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(97,61,26,0.08);
      transition: all 0.30s;
      position: relative;
    }
    .nm-bento-card:hover { transform: translateY(-6px); box-shadow: 0 16px 52px rgba(97,61,26,0.16); }
    /* wide: span 2 cols */
    .nm-bc-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
    /* tall: span 2 rows */
    .nm-bc-tall { grid-row: span 2; display: flex; flex-direction: column; }

    /* card with image */
    .nm-bc-img {
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }
    .nm-bc-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 7s ease; min-height: 200px; }
    .nm-bento-card:hover .nm-bc-img img { transform: scale(1.06); }
    .nm-bc-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,20,5,0.55) 100%); pointer-events: none; }

    /* card body */
    .nm-bc-body { padding: 26px 24px; }
    .nm-bc-tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 5px 13px; border-radius: 50px;
      margin-bottom: 12px;
      background: rgba(62,86,35,0.10); color: #3e5623;
    }
    .nm-bc-tag.orange { background: rgba(245,130,31,0.10); color: #d96e10; }
    .nm-bc-tag.brown { background: rgba(97,61,26,0.10); color: #613d1a; }
    .nm-bc-num { font-family: 'Playfair Display', Georgia, serif; font-size: 2.8rem; font-weight: 700; color: rgba(62,86,35,0.08); line-height: 1; margin-bottom: -6px; }
    .nm-bc-body h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 700; color: #2a1a08; margin-bottom: 10px; line-height: 1.25; }
    .nm-bc-body p { font-size: 0.84rem; color: #6b5a45; line-height: 1.75; margin-bottom: 14px; }
    .nm-bc-list { list-style: none; padding: 0; margin: 0; }
    .nm-bc-list li {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.80rem; color: #4a3828; font-weight: 500;
      padding: 6px 0; border-bottom: 1px solid rgba(97,61,26,0.07);
    }
    .nm-bc-list li:last-child { border-bottom: none; }
    .nm-bc-list li::before { content: ''; width: 6px; height: 6px; background: #85ad72; border-radius: 50%; flex-shrink: 0; }

    /* dark card variant */
    .nm-bc-dark {
      background: linear-gradient(135deg, #1a3a0a 0%, #0e2105 100%);
    }
    .nm-bc-dark .nm-bc-num { color: rgba(133,173,114,0.12); }
    .nm-bc-dark .nm-bc-body h3 { color: #fff; }
    .nm-bc-dark .nm-bc-body p { color: rgba(255,255,255,0.54); }
    .nm-bc-dark .nm-bc-list li { color: rgba(255,255,255,0.70); border-bottom-color: rgba(255,255,255,0.06); }
    .nm-bc-dark .nm-bc-list li::before { background: #85ad72; }
    .nm-bc-dark .nm-bc-tag { background: rgba(133,173,114,0.15); color: #a8d08d; }

    /* orange variant */
    .nm-bc-orange { background: #F5821F; }
    .nm-bc-orange .nm-bc-body h3 { color: #fff; }
    .nm-bc-orange .nm-bc-body p { color: rgba(255,255,255,0.78); }
    .nm-bc-orange .nm-bc-num { color: rgba(255,255,255,0.10); }
    .nm-bc-orange .nm-bc-tag { background: rgba(255,255,255,0.18); color: #fff; }
    .nm-bc-orange .nm-bc-list li { color: rgba(255,255,255,0.82); border-bottom-color: rgba(255,255,255,0.12); }
    .nm-bc-orange .nm-bc-list li::before { background: #fff; }

    /* cream/brown variant */
    .nm-bc-cream { background: #2a1a08; }
    .nm-bc-cream .nm-bc-num { color: rgba(245,130,31,0.10); }
    .nm-bc-cream .nm-bc-body h3 { color: #fff; }
    .nm-bc-cream .nm-bc-body p { color: rgba(255,255,255,0.54); }
    .nm-bc-cream .nm-bc-list li { color: rgba(255,255,255,0.68); border-bottom-color: rgba(255,255,255,0.06); }
    .nm-bc-cream .nm-bc-list li::before { background: #F5821F; }
    .nm-bc-cream .nm-bc-tag { background: rgba(245,130,31,0.15); color: #ffb870; }

    @media (max-width: 1000px) {
      .nm-bento { grid-template-columns: 1fr 1fr; }
      .nm-bc-wide { grid-column: span 2; }
      .nm-bc-tall { grid-row: span 1; }
    }
    @media (max-width: 620px) {
      .nm-bento { grid-template-columns: 1fr; }
      .nm-bc-wide { grid-column: span 1; grid-template-columns: 1fr; }
    }

    /* ── VISUAL SHOWCASE — alternating rows ── */
    #nm-showcase { background: #fff; }
    .nm-showcase-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .nm-showcase-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,2.8vw,2.6rem); color: #2a1a08; margin-top: 12px; }
    .nm-showcase-header h2 span { color: #F5821F; }
    .nm-showcase-header p { color: #6b5a45; line-height: 1.8; margin-top: 14px; }

    .nm-showcase-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-bottom: 60px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(97,61,26,0.10);
    }
    .nm-showcase-row:last-child { margin-bottom: 0; }
    .nm-showcase-row.flip { direction: rtl; }
    .nm-showcase-row.flip > * { direction: ltr; }

    .nm-sr-img {
      overflow: hidden; position: relative; min-height: 320px;
    }
    .nm-sr-img img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; transition: transform 8s ease; }
    .nm-sr-img:hover img { transform: scale(1.05); }
    .nm-sr-img-tag {
      position: absolute; top: 18px; left: 18px;
      background: rgba(10,20,5,0.80); backdrop-filter: blur(8px);
      border-radius: 50px; padding: 6px 16px;
      color: #a8d08d; font-size: 0.70rem; font-weight: 700;
      letter-spacing: 0.10em; text-transform: uppercase;
    }

    .nm-sr-content {
      background: #fdf9f3;
      padding: 40px 44px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .nm-sr-num { font-family: 'Playfair Display', Georgia, serif; font-size: 4rem; font-weight: 700; color: rgba(62,86,35,0.07); line-height: 1; margin-bottom: -8px; }
    .nm-sr-content h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.55rem; font-weight: 700; color: #2a1a08; margin-bottom: 12px; line-height: 1.2; }
    .nm-sr-content p { color: #6b5a45; line-height: 1.80; font-size: 0.95rem; margin-bottom: 20px; }
    .nm-sr-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .nm-sr-list li { display: flex; align-items: center; gap: 7px; font-size: 0.80rem; color: #4a3828; font-weight: 500; }
    .nm-sr-list li::before { content: ''; width: 6px; height: 6px; background: #3e5623; border-radius: 50%; flex-shrink: 0; }

    @media (max-width: 860px) {
      .nm-showcase-row { grid-template-columns: 1fr; }
      .nm-showcase-row.flip { direction: ltr; }
      .nm-sr-img { min-height: 240px; }
      .nm-sr-content { padding: 30px 26px; }
      .nm-sr-list { grid-template-columns: 1fr; }
    }

    /* ── LOW COST + HARMONY (2-col cards) ── */
    #nm-sustainable { background: #fdf9f3; }
    .nm-two-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .nm-sustain-card {
      border-radius: 24px;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
    }
    .nm-sustain-card.light { background: #fff; box-shadow: 0 6px 30px rgba(97,61,26,0.08); }
    .nm-sustain-card.dark { background: linear-gradient(135deg, #2a1a08 0%, #1a0e03 100%); }
    .nm-sustain-card.dark::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 260px; height: 260px;
      background: radial-gradient(circle, rgba(245,130,31,0.09) 0%, transparent 60%);
    }
    .nm-sustain-card-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
    .nm-sustain-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.45rem; font-weight: 700; margin-bottom: 12px; line-height: 1.2; }
    .nm-sustain-card.light h3 { color: #2a1a08; }
    .nm-sustain-card.dark h3 { color: #fff; position: relative; z-index: 1; }
    .nm-sustain-card.light p { color: #6b5a45; line-height: 1.80; font-size: 0.95rem; margin-bottom: 20px; }
    .nm-sustain-card.dark p { color: rgba(255,255,255,0.57); line-height: 1.80; font-size: 0.95rem; margin-bottom: 20px; position: relative; z-index: 1; }
    .nm-focus-list { list-style: none; padding: 0; margin: 0; }
    .nm-focus-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.86rem; font-weight: 500;
      padding: 9px 0; border-bottom: 1px solid rgba(97,61,26,0.08);
    }
    .nm-focus-list li:last-child { border-bottom: none; }
    .nm-sustain-card.light .nm-focus-list li { color: #4a3828; border-bottom-color: rgba(97,61,26,0.08); }
    .nm-sustain-card.dark .nm-focus-list li { color: rgba(255,255,255,0.68); border-bottom-color: rgba(255,255,255,0.06); position: relative; z-index: 1; }
    .nm-check { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; flex-shrink: 0; }
    .nm-sustain-card.light .nm-check { background: rgba(62,86,35,0.10); color: #3e5623; }
    .nm-sustain-card.dark .nm-check { background: rgba(245,130,31,0.15); color: #ffb870; }

    @media (max-width: 700px) { .nm-two-cards { grid-template-columns: 1fr; } }

    /* ── PHOTO STRIP ── */
    #nm-photos { background: #0a1505; padding: 56px 0; overflow: hidden; }
    .nm-photo-strip-header { text-align: center; margin-bottom: 36px; }
    .nm-photo-strip-header p { color: rgba(255,255,255,0.38); font-size: 0.80rem; letter-spacing: 0.14em; text-transform: uppercase; }
    .nm-photo-strip {
      display: flex; gap: 16px;
      overflow-x: auto;
      padding: 0 60px 12px;
      scrollbar-width: thin; scrollbar-color: rgba(133,173,114,0.3) transparent;
    }
    .nm-photo-strip::-webkit-scrollbar { height: 4px; }
    .nm-photo-strip::-webkit-scrollbar-track { background: transparent; }
    .nm-photo-strip::-webkit-scrollbar-thumb { background: rgba(133,173,114,0.3); border-radius: 2px; }
    .nm-strip-item {
      flex-shrink: 0; border-radius: 16px; overflow: hidden;
      position: relative; cursor: pointer;
    }
    .nm-strip-item:nth-child(odd) { height: 200px; width: 280px; }
    .nm-strip-item:nth-child(even) { height: 240px; width: 200px; margin-top: -20px; }
    .nm-strip-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
    .nm-strip-item:hover img { transform: scale(1.08); }
    .nm-strip-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5,15,2,0.70) 100%); pointer-events: none; }

    /* ── CLOSING CTA ── */
    #nm-cta {
      background: linear-gradient(135deg, #1a3a0a 0%, #0e2205 100%);
      text-align: center; position: relative; overflow: hidden;
    }
    #nm-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 70% at 50% -10%, rgba(133,173,114,0.14) 0%, transparent 55%);
      pointer-events: none;
    }
    .nm-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .nm-cta-inner .section-label { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.70); }
    .nm-cta-inner h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.9rem,3vw,3.2rem); color: #fff; margin: 16px 0 18px; line-height: 1.14; }
    .nm-cta-inner h2 em { color: #85ad72; font-style: italic; }
    .nm-cta-inner p { color: rgba(255,255,255,0.60); font-size: 1rem; line-height: 1.82; margin-bottom: 36px; }
    .nm-cta-tagline {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-bottom: 36px;
    }
    .nm-cta-dot { width: 8px; height: 8px; background: #85ad72; border-radius: 50%; opacity: 0.60; }
    .nm-cta-tagline span { font-family: 'Playfair Display', Georgia, serif; font-size: 1.02rem; color: rgba(255,255,255,0.65); font-style: italic; }
    .nm-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .nm-cta-btn-white {
      display: inline-flex; align-items: center; gap: 9px;
      background: #fff; color: #3e5623;
      padding: 15px 32px; border-radius: 50px;
      font-weight: 700; font-size: 0.92rem;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(0,0,0,0.22);
      transition: all 0.3s;
    }
    .nm-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.32); }
    .nm-cta-btn-outline {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: rgba(255,255,255,0.75);
      padding: 15px 32px; border-radius: 50px;
      font-weight: 500; font-size: 0.92rem;
      border: 1.5px solid rgba(255,255,255,0.28);
      text-decoration: none; transition: all 0.3s;
    }
    .nm-cta-btn-outline:hover { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.50); transform: translateY(-2px); }


/* ================================================================
   TRAINING & WORKSHOPS PAGE — Page-Specific Styles
   ================================================================ */
    /* ============================================================
       TRAINING & WORKSHOPS PAGE
       ============================================================ */

    /* â”€â”€ HERO â”€â”€ */
    #tw-hero {
      min-height: 100vh;
      background: #100804;
      padding-top: 72px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .tw-hero-grain {
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; opacity: 0.5;
    }
    /* Warm amber orbs â€” different from green pages */
    .tw-orb {
      position: absolute; border-radius: 50%;
      filter: blur(90px); pointer-events: none;
    }
    .tw-orb-1 { width: 700px; height: 700px; background: rgba(200,90,10,0.14); top: -200px; right: -180px; animation: twOrb 20s ease-in-out infinite; }
    .tw-orb-2 { width: 500px; height: 500px; background: rgba(245,130,31,0.08); bottom: -120px; left: -120px; animation: twOrb 26s ease-in-out infinite reverse; }
    .tw-orb-3 { width: 300px; height: 300px; background: rgba(133,173,114,0.07); top: 35%; left: 45%; animation: twOrb 16s ease-in-out 4s infinite; }
    @keyframes twOrb { 0%,100%{transform:translate(0,0);} 33%{transform:translate(40px,-30px);} 66%{transform:translate(-25px,40px);} }

    .tw-hero-inner {
      position: relative; z-index: 2;
      max-width: 1280px; width: 100%;
      margin: 0 auto;
      padding: 80px 60px 96px;
      display: grid;
      grid-template-columns: 1fr 500px;
      gap: 72px;
      align-items: center;
    }

    /* Breadcrumb */
    .tw-breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.70rem; color: rgba(255,255,255,0.28);
      text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 22px;
    }
    .tw-breadcrumb a { color: inherit; text-decoration: none; transition: color 0.3s; }
    .tw-breadcrumb a:hover { color: #F5821F; }
    .tw-breadcrumb .sep { color: rgba(255,255,255,0.14); }

    /* Badge */
    .tw-hero-badge {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(245,130,31,0.12);
      border: 1px solid rgba(245,130,31,0.28);
      color: #ffb870; padding: 8px 20px; border-radius: 50px;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      margin-bottom: 24px;
    }
    .tw-hero-badge .pulse-dot { width: 6px; height: 6px; background: #F5821F; border-radius: 50%; animation: twPulse 2s infinite; }
    @keyframes twPulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.3;transform:scale(1.7);} }

    .tw-hero-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.6rem, 4.2vw, 5.2rem);
      font-weight: 700; color: #fff;
      line-height: 1.02; margin-bottom: 22px;
    }
    .tw-hero-title .accent-line {
      display: block;
      background: linear-gradient(90deg, #F5821F 0%, #ffb870 60%, #F5821F 100%);
      background-size: 200% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmerText 4s linear infinite;
    }
    @keyframes shimmerText { 0%{background-position:0% center;} 100%{background-position:200% center;} }
    .tw-hero-title em { color: #85ad72; font-style: italic; }

    .tw-hero-sub {
      font-size: 1.04rem; color: rgba(255,255,255,0.52);
      line-height: 1.88; max-width: 560px; margin-bottom: 36px;
    }
    .tw-hero-sub strong { color: rgba(255,255,255,0.78); }

    /* Quick topics */
    .tw-topic-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
    .tw-topic {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.58);
      padding: 7px 16px; border-radius: 50px;
      font-size: 0.77rem; font-weight: 500;
      transition: all 0.25s; cursor: default;
    }
    .tw-topic:hover { background: rgba(245,130,31,0.12); border-color: rgba(245,130,31,0.28); color: #ffb870; }

    /* CTAs */
    .tw-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
    .tw-cta-primary {
      display: inline-flex; align-items: center; gap: 9px;
      background: linear-gradient(135deg, #c85a0a, #a04508);
      color: #fff; padding: 15px 30px; border-radius: 50px;
      font-weight: 700; font-size: 0.90rem; text-decoration: none;
      box-shadow: 0 10px 32px rgba(200,90,10,0.45); transition: all 0.3s;
    }
    .tw-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(200,90,10,0.60); }
    .tw-cta-ghost {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: rgba(255,255,255,0.58);
      padding: 15px 30px; border-radius: 50px;
      font-weight: 500; font-size: 0.90rem;
      border: 1.5px solid rgba(255,255,255,0.14);
      text-decoration: none; transition: all 0.3s;
    }
    .tw-cta-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

    /* RIGHT: stacked image collage */
    .tw-hero-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 240px 180px 200px;
      gap: 12px;
    }
    .tw-hg-item {
      border-radius: 18px; overflow: hidden; position: relative;
      background: rgba(255,255,255,0.03);
    }
    .tw-hg-item img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; transition: transform 8s ease; }
    .tw-hg-item:hover img { transform: scale(1.07); }
    .tw-hg-item:nth-child(1) { grid-column: span 2; }
    .tw-hg-badge {
      position: absolute; bottom: 12px; left: 12px;
      background: rgba(0,0,0,0.65); backdrop-filter: blur(8px);
      border-radius: 50px; padding: 5px 14px;
      color: #ffb870; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.09em; text-transform: uppercase;
    }

   
    /* Hero animations */
    .tw-anim { opacity:0; transform:translateY(24px); animation: twFadeUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards; }
    .tw-anim-d1 { animation-delay:0.10s; }
    .tw-anim-d2 { animation-delay:0.22s; }
    .tw-anim-d3 { animation-delay:0.36s; }
    .tw-anim-d4 { animation-delay:0.50s; }
    .tw-anim-d5 { animation-delay:0.64s; }
    .tw-gallery-anim { opacity:0; transform:translateX(32px); animation: twSlide 0.85s cubic-bezier(0.4,0,0.2,1) 0.3s forwards; }
    @keyframes twFadeUp { to{opacity:1;transform:translateY(0);} }
    @keyframes twSlide { to{opacity:1;transform:translateX(0);} }

    .tw-scroll-hint {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      color: rgba(255,255,255,0.18); font-size: 0.60rem;
      letter-spacing: 0.18em; text-transform: uppercase;
    }
    .tw-scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, rgba(245,130,31,0.50), transparent); }

    @media (max-width: 1100px) {
      .tw-hero-inner { grid-template-columns: 1fr; gap: 52px; padding: 56px 40px 80px; }
      .tw-hero-gallery { grid-template-rows: 220px 160px; grid-template-columns: repeat(4,1fr); }
      .tw-hg-item:nth-child(1) { grid-column: span 2; }
    }
    @media (max-width: 680px) {
      .tw-hero-inner { padding: 40px 20px 72px; }
      .tw-hero-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 140px 160px; }
      .tw-hero-stats { flex-wrap: wrap; }
      .tw-hstat { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
    }

    /* â”€â”€ MISSION STRIP â”€â”€ */
    #tw-mission { background: #F5821F; }
    .tw-mission-inner {
      display: grid; grid-template-columns: 1fr 3fr; gap: 48px;
      align-items: center; padding: 44px 0;
    }
    .tw-mission-label {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.55rem; font-weight: 700;
      color: rgba(255,255,255,0.95); line-height: 1.2;
    }
    .tw-mission-label em { display: block; font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.65); font-style: normal; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.10em; }
    .tw-mission-objectives {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 24px;
    }
    .tw-mo-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.87rem; font-weight: 600; color: rgba(255,255,255,0.92);
    }
    .tw-mo-item::before {
      content: ''; width: 8px; height: 8px; background: rgba(255,255,255,0.70);
      border-radius: 50%; flex-shrink: 0;
    }
    @media (max-width: 900px) {
      .tw-mission-inner { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
      .tw-mission-objectives { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 500px) { .tw-mission-objectives { grid-template-columns: 1fr; } }

    /* â”€â”€ PROGRAMS SECTION â”€â”€ */
    #tw-programs { background: #fdf9f3; }
    .tw-programs-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
    .tw-programs-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.9rem,2.8vw,2.9rem); color: #2a1a08; margin-top: 12px; line-height: 1.15; }
    .tw-programs-header h2 span { color: #c85a0a; }
    .tw-programs-header p { color: #6b5a45; line-height: 1.82; margin-top: 14px; font-size: 1rem; }

    /* Program cards grid */
    .tw-prog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }
    .tw-prog-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(97,61,26,0.08);
      transition: all 0.32s;
      position: relative;
    }
    .tw-prog-card:hover { transform: translateY(-7px); box-shadow: 0 20px 56px rgba(97,61,26,0.14); }
    /* First card â€” featured wide */
    .tw-prog-card--featured {
      grid-column: span 2;
      display: grid; grid-template-columns: 1fr 1fr;
    }
    /* color accent top strip */
    .tw-prog-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #F5821F, #c85a0a);
      transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
    }
    .tw-prog-card:hover::before { transform: scaleX(1); }

    .tw-prog-img { overflow: hidden; position: relative; }
    .tw-prog-img img { width:100%; height:100%; object-fit:cover; min-height: 200px; display:block; transition: transform 7s ease; }
    .tw-prog-card:hover .tw-prog-img img { transform: scale(1.07); }
    .tw-prog-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(16,8,4,0.55) 100%); pointer-events:none; }

    .tw-prog-body { padding: 28px 26px; }
    .tw-prog-num {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 3rem; font-weight: 700;
      color: rgba(200,90,10,0.08); line-height: 1; margin-bottom: -6px;
    }
    .tw-prog-tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 5px 14px; border-radius: 50px;
      margin-bottom: 12px;
      background: rgba(200,90,10,0.10); color: #c85a0a;
    }
    .tw-prog-tag.green { background: rgba(62,86,35,0.10); color: #3e5623; }
    .tw-prog-tag.blue  { background: rgba(50,80,160,0.08); color: #3a5aa0; }
    .tw-prog-tag.dark  { background: rgba(42,26,8,0.10);   color: #2a1a08; }
    .tw-prog-body h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.28rem; font-weight: 700; color: #2a1a08; margin-bottom: 10px; line-height: 1.22; }
    .tw-prog-body > p { font-size: 0.85rem; color: #6b5a45; line-height: 1.76; margin-bottom: 16px; }
    .tw-prog-list { list-style: none; padding: 0; margin: 0; }
    .tw-prog-list li {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.80rem; color: #4a3828; font-weight: 500;
      padding: 5px 0; border-bottom: 1px solid rgba(97,61,26,0.06);
    }
    .tw-prog-list li:last-child { border-bottom: none; }
    .tw-prog-list li::before { content:''; width:5px; height:5px; background:#F5821F; border-radius:50%; flex-shrink:0; }

    /* dark variant */
    .tw-prog-card--dark { background: linear-gradient(135deg, #2a1a08 0%, #1a0e03 100%); }
    .tw-prog-card--dark .tw-prog-num { color: rgba(245,130,31,0.08); }
    .tw-prog-card--dark .tw-prog-body h3 { color: #fff; }
    .tw-prog-card--dark .tw-prog-body > p { color: rgba(255,255,255,0.52); }
    .tw-prog-card--dark .tw-prog-list li { color: rgba(255,255,255,0.68); border-bottom-color: rgba(255,255,255,0.06); }
    .tw-prog-card--dark .tw-prog-list li::before { background: #F5821F; }
    .tw-prog-card--dark .tw-prog-tag { background: rgba(245,130,31,0.14); color: #ffb870; }

    /* green variant */
    .tw-prog-card--green { background: linear-gradient(135deg, #1a3a0a 0%, #0e2105 100%); }
    .tw-prog-card--green .tw-prog-num { color: rgba(133,173,114,0.10); }
    .tw-prog-card--green .tw-prog-body h3 { color: #fff; }
    .tw-prog-card--green .tw-prog-body > p { color: rgba(255,255,255,0.52); }
    .tw-prog-card--green .tw-prog-list li { color: rgba(255,255,255,0.68); border-bottom-color: rgba(255,255,255,0.06); }
    .tw-prog-card--green .tw-prog-list li::before { background: #85ad72; }
    .tw-prog-card--green .tw-prog-tag { background: rgba(133,173,114,0.15); color: #a8d08d; }
    .tw-prog-card--green::before { background: linear-gradient(90deg, #85ad72, #3e5623); }

    @media (max-width: 1020px) {
      .tw-prog-grid { grid-template-columns: 1fr 1fr; }
      .tw-prog-card--featured { grid-column: span 2; }
    }
    @media (max-width: 680px) {
      .tw-prog-grid { grid-template-columns: 1fr; }
      .tw-prog-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
    }

    /* â”€â”€ AWARENESS JOURNEY â”€â”€ */
    #tw-journey {
      position: relative;
      background: #0f0803;
      overflow: hidden;
    }
    .tw-journey-bg {
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(245,130,31,0.06) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .tw-journey-glow {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 800px; height: 600px;
      background: radial-gradient(ellipse, rgba(200,90,10,0.10) 0%, transparent 60%);
      pointer-events: none;
    }
    .tw-journey-inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .tw-journey-content {}
    .tw-journey-content h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2rem, 3.2vw, 3.6rem);
      font-weight: 700; color: #fff; line-height: 1.08; margin: 16px 0 22px;
    }
    .tw-journey-content h2 em { color: #F5821F; font-style: italic; }
    .tw-journey-content p { color: rgba(255,255,255,0.54); line-height: 1.85; font-size: 0.97rem; margin-bottom: 22px; }
    .tw-journey-content p strong { color: rgba(255,255,255,0.80); }

    /* Big stats for journey */
    .tw-journey-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 32px 0; }
    .tw-jstat {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px; padding: 20px 18px;
      position: relative; overflow: hidden;
    }
    .tw-jstat::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, #F5821F, transparent);
    }
    .tw-jstat strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 2.2rem; font-weight: 700; color: #F5821F; line-height: 1; margin-bottom: 4px; }
    .tw-jstat span { font-size: 0.74rem; color: rgba(255,255,255,0.46); text-transform: uppercase; letter-spacing: 0.09em; line-height: 1.4; display: block; }

    /* RIGHT: photo mosaic */
    .tw-journey-photos {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 160px 140px 160px;
      gap: 10px;
    }
    .tw-jp-item { border-radius: 14px; overflow: hidden; position: relative; }
    .tw-jp-item img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 6s ease; }
    .tw-jp-item:hover img { transform: scale(1.10); }
    .tw-jp-item:nth-child(1) { grid-column: span 2; }
    .tw-jp-item:nth-child(5) { grid-column: span 2; }
    .tw-jp-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,5,0,0.45) 100%); pointer-events:none; }

    @media (max-width: 960px) {
      .tw-journey-inner { grid-template-columns: 1fr; gap: 48px; }
      .tw-journey-photos { grid-template-columns: repeat(4,1fr); grid-template-rows: 160px 140px; }
      .tw-jp-item:nth-child(1) { grid-column: span 2; }
      .tw-jp-item:nth-child(5) { grid-column: span 2; }
    }
    @media (max-width: 580px) {
      .tw-journey-photos { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .tw-jp-item:nth-child(1), .tw-jp-item:nth-child(5) { grid-column: span 2; }
      .tw-jp-item { min-height: 140px; }
      .tw-journey-stats { grid-template-columns: 1fr 1fr; }
    }

    /* â”€â”€ FIELD DEMONSTRATIONS â”€â”€ */
    #tw-demos { background: #fff; }
    .tw-demos-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
    .tw-demos-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,2.6vw,2.6rem); color: #2a1a08; margin-top: 12px; line-height: 1.18; }
    .tw-demos-header h2 span { color: #3e5623; }
    .tw-demos-header p { color: #6b5a45; line-height: 1.82; margin-top: 14px; }

    /* 2x4 demos grid */
    .tw-demos-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-bottom: 40px;
    }
    .tw-demo-item {
      border-radius: 18px; overflow: hidden; position: relative;
      aspect-ratio: 3/4; background: #f0ece4; cursor: pointer;
    }
    .tw-demo-item img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 6s ease; }
    .tw-demo-item:hover img { transform: scale(1.08); }
    .tw-demo-item-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(16,8,4,0.80) 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 16px 14px;
    }
    .tw-demo-tag {
      font-size: 0.64rem; font-weight: 700; color: #ffb870;
      text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px;
    }
    .tw-demo-title { font-family: 'Playfair Display', Georgia, serif; font-size: 0.90rem; font-weight: 600; color: #fff; line-height: 1.25; }

    @media (max-width: 900px) { .tw-demos-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 500px) { .tw-demos-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

    /* demo list strip */
    .tw-demo-list-strip {
      background: #fdf9f3;
      border-radius: 20px; padding: 28px 32px;
      display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
    }
    .tw-dl-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.82rem; color: #4a3828; font-weight: 500;
    }
    .tw-dl-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
    @media (max-width: 800px) { .tw-demo-list-strip { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 480px) { .tw-demo-list-strip { grid-template-columns: 1fr; } }

    /* â”€â”€ WHO CAN ATTEND â”€â”€ */
    #tw-audience { background: #fdf9f3; }
    .tw-audience-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .tw-audience-content h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,2.6vw,2.6rem); color: #2a1a08; margin: 12px 0 16px; line-height: 1.18; }
    .tw-audience-content h2 span { color: #c85a0a; }
    .tw-audience-content p { color: #6b5a45; line-height: 1.82; font-size: 0.97rem; margin-bottom: 28px; }

    .tw-audience-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    .tw-audience-pill {
      display: flex; align-items: center; gap: 10px;
      background: #fff; border-radius: 14px; padding: 14px 16px;
      box-shadow: 0 2px 16px rgba(97,61,26,0.07);
      font-size: 0.84rem; font-weight: 600; color: #2a1a08;
      transition: all 0.28s;
    }
    .tw-audience-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(97,61,26,0.12); }
    .tw-ap-icon { font-size: 1.3rem; }
    .tw-ap-sub { font-size: 0.70rem; font-weight: 400; color: #6b5a45; display: block; margin-top: 1px; }

    /* image side */
    .tw-audience-img { position: relative; }
    .tw-audience-img img { width:100%; border-radius: 24px; object-fit:cover; display:block; max-height: 520px; }
    .tw-audience-img-card {
      position: absolute; bottom: -20px; left: -20px;
      background: #fff; border-radius: 18px; padding: 18px 22px;
      box-shadow: 0 12px 48px rgba(97,61,26,0.18);
    }
    .tw-aic-num { font-family: 'Playfair Display', Georgia, serif; font-size: 2.4rem; font-weight: 700; color: #F5821F; line-height: 1; }
    .tw-aic-text { font-size: 0.75rem; color: #6b5a45; text-transform: uppercase; letter-spacing: 0.09em; margin-top: 2px; }

    @media (max-width: 860px) {
      .tw-audience-inner { grid-template-columns: 1fr; gap: 44px; }
      .tw-audience-img-card { bottom: 12px; left: 12px; }
    }

    /* â”€â”€ WHY LEARN â”€â”€ */
    #tw-why { background: linear-gradient(180deg, #2a1a08 0%, #1a0e03 100%); }
    .tw-why-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }
    .tw-why-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.9rem,2.8vw,2.8rem); color: #fff; margin-top: 12px; line-height: 1.15; }
    .tw-why-header h2 em { color: #F5821F; font-style: italic; }
    .tw-why-header p { color: rgba(255,255,255,0.48); line-height: 1.82; margin-top: 14px; }

    .tw-why-grid {
      display: grid; grid-template-columns: repeat(5,1fr); gap: 16px;
    }
    .tw-why-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 20px; padding: 28px 20px;
      text-align: center; position: relative; overflow: hidden;
      transition: all 0.3s;
    }
    .tw-why-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, #F5821F, #c85a0a);
      transform: scaleX(0); transform-origin: center; transition: transform 0.3s;
    }
    .tw-why-card:hover { background: rgba(245,130,31,0.08); border-color: rgba(245,130,31,0.18); transform: translateY(-4px); }
    .tw-why-card:hover::after { transform: scaleX(1); }
    .tw-why-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
    .tw-why-card h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.0rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.25; }
    .tw-why-card p { font-size: 0.78rem; color: rgba(255,255,255,0.44); line-height: 1.65; margin: 0; }

    @media (max-width: 1000px) { .tw-why-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 620px)  { .tw-why-grid { grid-template-columns: 1fr 1fr; } }

    /* â”€â”€ INSTITUTIONS SECTION â”€â”€ */
    #tw-institutions { background: #fff; }
    .tw-inst-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
    .tw-inst-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,2.6vw,2.6rem); color: #2a1a08; margin-top: 12px; line-height: 1.18; }
    .tw-inst-header h2 span { color: #3e5623; }
    .tw-inst-header p { color: #6b5a45; line-height: 1.82; margin-top: 14px; }

    .tw-inst-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
    }
    .tw-inst-card {
      border-radius: 22px; padding: 30px 26px;
      border: 1.5px solid rgba(97,61,26,0.09);
      background: #fff; transition: all 0.3s; position: relative; overflow: hidden;
    }
    .tw-inst-card::before {
      content: '';
      position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
      background: linear-gradient(180deg, #F5821F, #c85a0a);
      transform: scaleY(0); transform-origin: top; transition: transform 0.35s;
    }
    .tw-inst-card:hover { transform: translateY(-5px); box-shadow: 0 16px 52px rgba(97,61,26,0.12); border-color: transparent; }
    .tw-inst-card:hover::before { transform: scaleY(1); }
    .tw-inst-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
    .tw-inst-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.12rem; font-weight: 700; color: #2a1a08; margin-bottom: 10px; line-height: 1.25; }
    .tw-inst-card p { font-size: 0.84rem; color: #6b5a45; line-height: 1.74; margin: 0; }

    @media (max-width: 860px) { .tw-inst-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) { .tw-inst-grid { grid-template-columns: 1fr; } }

    /* â”€â”€ BOOKING CTA â”€â”€ */
    #tw-cta {
      background: #0f0803; position: relative; overflow: hidden;
    }
    #tw-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200,90,10,0.15) 0%, transparent 55%);
      pointer-events: none;
    }
    .tw-cta-inner { position: relative; z-index: 1; }
    .tw-cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

    /* Left: text */
    .tw-cta-text h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem,3vw,3.2rem); color: #fff; line-height: 1.1; margin: 16px 0 18px; }
    .tw-cta-text h2 em { color: #F5821F; font-style: italic; }
    .tw-cta-text p { color: rgba(255,255,255,0.54); line-height: 1.85; font-size: 0.97rem; margin-bottom: 32px; }
    .tw-cta-tagline {
      display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
    }
    .tw-cta-tagline-line { flex: 1; height: 1px; background: rgba(255,255,255,0.10); }
    .tw-cta-tagline span { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; color: rgba(255,255,255,0.58); font-style: italic; white-space: nowrap; }
    .tw-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .tw-book-btn {
      display: inline-flex; align-items: center; gap: 9px;
      background: linear-gradient(135deg, #c85a0a, #a04508);
      color: #fff; padding: 16px 34px; border-radius: 50px;
      font-weight: 700; font-size: 0.95rem; text-decoration: none;
      box-shadow: 0 10px 32px rgba(200,90,10,0.45); transition: all 0.3s;
    }
    .tw-book-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 52px rgba(200,90,10,0.60); }
    .tw-green-btn {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: rgba(255,255,255,0.65);
      padding: 16px 34px; border-radius: 50px;
      font-weight: 500; font-size: 0.95rem;
      border: 1.5px solid rgba(255,255,255,0.18);
      text-decoration: none; transition: all 0.3s;
    }
    .tw-green-btn:hover { color: #fff; border-color: rgba(255,255,255,0.38); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

    /* Right: contact card */
    .tw-cta-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 28px; padding: 36px 32px;
      position: relative; overflow: hidden;
    }
    .tw-cta-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, #F5821F, #c85a0a);
    }
    .tw-cta-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
    .tw-contact-row {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .tw-contact-row:last-child { border-bottom: none; }
    .tw-cr-icon {
      width: 40px; height: 40px; border-radius: 12px;
      background: rgba(245,130,31,0.12); color: #F5821F;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .tw-cr-text strong { display: block; font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.82); margin-bottom: 2px; }
    .tw-cr-text span { font-size: 0.78rem; color: rgba(255,255,255,0.44); }
    .tw-cta-form-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 16px; text-align: center; font-style: italic; }

    @media (max-width: 900px) {
      .tw-cta-layout { grid-template-columns: 1fr; gap: 44px; }
    }


/* ================================================================
   COMPREHENSIVE RESPONSIVE OVERRIDES
   All pages — Mobile, Tablet & iPad fixes
   Breakpoints used:
     1100px  Large tablet / landscape iPad Pro
      900px  Portrait iPad / landscape small tablet
      768px  iPad Air / standard tablet
      640px  Large phone landscape / small tablet portrait
      480px  Standard phone portrait
      400px  Small phone / narrow viewport
   ================================================================ */

/* ── Container tightening on very small phones ── */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
}

/* ── Section padding: reduce for tablet to avoid excess whitespace ── */
@media (max-width: 900px) {
  .section-pad    { padding: 80px 0; }
  .section-pad-sm { padding: 56px 0; }
}
@media (max-width: 480px) {
  .section-pad    { padding: 60px 0; }
  .section-pad-sm { padding: 44px 0; }
}

/* ================================================================
   HERO SECTION (index.html)
   ================================================================ */
@media (max-width: 900px) {
  .hero-content { padding: 100px 0 72px; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 640px) {
  .hero-content { padding: 90px 0 56px; }
  .hero-buttons .btn { padding: 12px 22px; font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .hero-content { padding: 84px 0 48px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-stats { gap: 14px; flex-wrap: wrap; }
  .hero-stat .stat-number { font-size: 1.5rem; }
  .hero-stat .stat-label  { font-size: 0.70rem; }
}
@media (max-width: 400px) {
  .hero-name { font-size: clamp(2.2rem, 9vw, 2.8rem); }
}

/* ================================================================
   FEATURES STRIP
   ================================================================ */
@media (max-width: 900px) {
  .feature-strip-item { padding: 22px 20px; gap: 12px; }
  .feature-strip-item .fsi-icon { font-size: 1.6rem; }
}

/* ================================================================
   ABOUT SECTION (index.html)
   ================================================================ */
@media (max-width: 900px) {
  .about-img-main  { height: 320px; }
  .about-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about-img-main  { height: 260px; }
}

/* ================================================================
   FARMING SHOWCASE — Video responsive fix
   ================================================================ */
@media (max-width: 640px) {
  .farming-showcase-images  { padding: 16px 16px 0; }
  .farming-showcase-content { padding: 16px 16px 28px; }
}
@media (max-width: 400px) {
  .farming-showcase-content { padding: 14px 14px 24px; }
}

/* ================================================================
   TRAINING SECTION (index.html) — image grid on mobile
   ================================================================ */
@media (max-width: 900px) {
  .training-images { grid-template-rows: 200px 160px; }
}
@media (max-width: 640px) {
  .training-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ti-img-main { height: 220px; }
  .ti-img-sub  { height: 150px; }
}

/* ================================================================
   ACHIEVEMENTS
   ================================================================ */
@media (max-width: 480px) {
  .ach-counter-card { padding: 24px 16px; }
  .acc-number       { font-size: 2.2rem; }
  .acc-label        { font-size: 0.85rem; }
}
@media (max-width: 400px) {
  .ach-stats-row { gap: 10px; }
  .acc-number    { font-size: 1.9rem; }
}

/* ================================================================
   GALLERY
   ================================================================ */
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   CTA SECTION
   ================================================================ */
@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   CONTACT FORM
   ================================================================ */
@media (max-width: 400px) {
  .contact-form { padding: 28px 16px; border-radius: var(--radius-md); }
}

/* ================================================================
   FOOTER
   ================================================================ */
@media (max-width: 900px) {
  #footer     { padding: 60px 0 0; }
}
@media (max-width: 480px) {
  #footer     { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 400px) {
  .footer-bottom p { font-size: 0.76rem; }
}

/* ================================================================
   SCROLL-TO-TOP button
   ================================================================ */
@media (max-width: 640px) {
  #scrollTop { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 1rem; }
}

/* ================================================================
   LIGHTBOX on small phones
   ================================================================ */
@media (max-width: 480px) {
  .lightbox-close { top: 8px; right: 8px; position: fixed; }
  .lightbox-img-wrap img { max-width: 96vw; max-height: 70vh; }
  .lightbox-counter { display: none; }
}

/* ================================================================
   ABOUT PAGE — Page-specific responsive
   ================================================================ */

/* Intro strip wraps gracefully */
@media (max-width: 640px) {
  .intro-strip-inner { flex-direction: column; gap: 16px; }
  .intro-strip-cta   { width: 100%; justify-content: center; text-align: center; }
}

/* Training image stack height reduction */
@media (max-width: 600px) {
  .ab-training-img-stack { height: 260px; }
}
@media (max-width: 400px) {
  .ab-training-img-stack { height: 220px; }
}

/* Awareness section stat cards */
@media (max-width: 400px) {
  .awareness-stats { grid-template-columns: 1fr; }
  .awareness-stat-card.featured { grid-column: auto; }
}

/* ================================================================
   ORGANIC FARMING PAGE — Page-specific responsive
   ================================================================ */
@media (max-width: 600px) {
  .of-hero-collage { height: 220px; }
}
@media (max-width: 400px) {
  .of-hero-collage { height: 180px; }
  .of-hero-pills   { gap: 6px; }
}

/* ================================================================
   NATURAL METHODS PAGE — Page-specific responsive
   ================================================================ */
@media (max-width: 480px) {
  .nm-hero-cards { grid-template-columns: 1fr 1fr; }
  .nm-bento      { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .nm-hero-inner { padding: 32px 14px 60px; }
}

/* ================================================================
   TRAINING PAGE — Page-specific responsive
   ================================================================ */
@media (max-width: 480px) {
  .tw-hero-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 130px; }
  .tw-prog-card    { padding: 20px 16px; }
}
@media (max-width: 400px) {
  .tw-hero-inner   { padding: 32px 14px 60px; }
  .tw-prog-list li { font-size: 0.82rem; }
}

/* ================================================================
   GLOBAL — Typography scaling helpers
   ================================================================ */
@media (max-width: 480px) {
  .section-title  { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  h1, h2          { word-break: break-word; }
  .btn            { padding: 12px 22px; font-size: 0.88rem; }
  .btn-sm         { padding: 9px 18px;  font-size: 0.82rem; }
}
@media (max-width: 400px) {
  .section-label  { font-size: 0.70rem; padding: 4px 11px; }
  .section-title  { font-size: clamp(1.4rem, 7vw, 2rem); }
}

/* ================================================================
   NAVIGATION — extra polish
   ================================================================ */
@media (max-width: 400px) {
  .logo-text .logo-name    { font-size: 0.85rem; }
  .logo-text .logo-tagline { display: none; }
  .logo-icon               { width: 38px; height: 38px; }
}
