/* ============================================================
   JTC Website — M/s Jagannath Tek Chand Arhat
   Heritage Editorial Design System
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --gold:          #C8A96E;
  --gold-light:    #E8D5A3;
  --gold-dark:     #A07840;
  --green-deep:    #1F4E30;
  --green-mid:     #2E6B44;
  --green-light:   #3E8858;
  --cream:         #FAF7F0;
  --cream-dark:    #F0EAD9;
  --charcoal:      #1C1C1C;
  --charcoal-soft: #3A3A3A;
  --charcoal-muted:#6A6A6A;
  --white:         #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Georgia', 'Mukta', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-devanagari: 'Mukta', 'Noto Sans Devanagari', sans-serif;

  --shadow-gold:   0 4px 24px rgba(200, 169, 110, 0.25);
  --shadow-card:   0 2px 16px rgba(31, 78, 48, 0.08);
  --shadow-deep:   0 8px 48px rgba(0, 0, 0, 0.18);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--cream); }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700; font-style: italic;
  line-height: 1.08; letter-spacing: -0.02em;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700; font-style: italic; line-height: 1.12;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600; font-style: italic; line-height: 1.2;
}
.label-caps {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.devanagari { font-family: var(--font-devanagari); font-style: normal !important; letter-spacing: 0; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 72px;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(31, 78, 48, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.nav-logo {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; font-style: italic;
  color: var(--gold); letter-spacing: 0.01em; line-height: 1.15;
}
.nav-logo span {
  display: block; font-size: 0.58rem; font-style: normal;
  font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); margin-top: 2px;
}
.nav-logo-img {
  height: 42px; width: auto; flex-shrink: 0;
  opacity: 0.95;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.7));
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-logo-img {
  height: 34px; width: auto; flex-shrink: 0;
  opacity: 0.75;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream); opacity: 0.82;
  position: relative; padding-bottom: 3px;
  transition: opacity var(--transition-fast);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { opacity: 1; color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--green-deep);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.55rem 1.2rem; border-radius: 2px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
}
.lang-btn {
  background: rgba(0,0,0,0.25); border: 1px solid rgba(200,169,110,0.6);
  color: rgba(250,247,240,0.9); border-radius: 3px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.3rem 0.5rem; cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.lang-btn:hover { color: var(--gold); border-color: var(--gold); background: rgba(200,169,110,0.1); }
.lang-btn--active {
  background: rgba(200,169,110,0.2); color: var(--gold);
  border-color: var(--gold);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); transition: all var(--transition-fast);
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.9));
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  height: calc(100svh - 72px);
  background: var(--cream);
  border-top: 2px solid var(--gold);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.23,1,0.32,1); z-index: 999;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile ul {
  display: flex; flex-direction: column; gap: 0;
  padding: 1.5rem 2rem 0;
  list-style: none;
}
.nav-mobile a {
  font-family: var(--font-display); font-size: 1.65rem; font-style: italic;
  color: var(--green-deep);
  border-bottom: 1px solid rgba(31,78,48,0.12);
  padding: 0.85rem 0;
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile a:hover { color: var(--gold); padding-left: 0.4rem; }
.nav-mobile li:last-child a { border-bottom: none; }
/* WhatsApp CTA inside mobile menu */
.nav-mobile .btn.btn-primary {
  display: block !important;
  background: var(--green-deep) !important;
  color: var(--cream) !important;
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.9rem 1.5rem;
  margin: 1.5rem 2rem 2rem;
  border-radius: 2px;
  border: none;
  width: calc(100% - 4rem);
}
.nav-mobile .btn.btn-primary:hover {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, var(--green-deep) 0%, #122E1C 55%, #163020 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.045; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 12%;
  width: 1px; height: 45%;
  background: linear-gradient(to bottom, transparent, var(--gold) 40%, transparent);
  opacity: 0.4; z-index: 1;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22; filter: grayscale(60%) sepia(15%);
}
/* Home hero: farm bg — warmer, less grey than default */
.hero-home .hero-bg img {
  opacity: 0.15;
  filter: grayscale(30%) sepia(28%);
  object-position: center 60%;
}
/* Directional overlay — deepens text side without killing bust side */
.hero-home-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(108deg, rgba(10,38,22,0.68) 0%, rgba(10,38,22,0.22) 52%, transparent 100%),
    radial-gradient(ellipse 65% 70% at 0% 100%, rgba(10,38,22,0.38) 0%, transparent 58%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: clamp(6rem, 12vh, 9rem) clamp(1.25rem, 5vw, 5rem) clamp(3rem, 8vh, 6rem);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.hero-eyebrow-line { display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.hero-headline {
  font-family: 'Playfair Display', var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 700; font-style: normal;
  line-height: 1.04; letter-spacing: -0.02em;
  color: var(--cream); margin-bottom: 1.5rem; max-width: 820px;
}
.hero-headline .word { display: inline-block; overflow: hidden; }
.hero-headline .word-inner { display: inline-block; transform: translateY(110%); }
.hero-gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(0.88rem, 1.5vw, 1.02rem);
  color: rgba(250, 247, 240, 0.78);
  max-width: 520px; line-height: 1.7; margin-bottom: 2.5rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--gold-light); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 2px;
}

/* ── Editorial stat block — overrides pill appearance on hero stats ── */
.hero-stats {
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0;
}
.hero-stats .hero-stat {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 clamp(0.9rem, 2.2vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  letter-spacing: normal;
  text-transform: none;
  font-size: inherit;
  color: inherit;
  align-items: flex-start;
}
.hero-stats .hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: 'Playfair Display', var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 700; color: var(--gold);
  line-height: 1; letter-spacing: -0.03em;
}
.hero-stat-num sup {
  font-size: 0.52em; vertical-align: super;
  letter-spacing: 0; font-weight: 600;
}
.hero-stat-num small {
  font-size: 0.42em; font-family: var(--font-body);
  letter-spacing: 0.1em; font-weight: 500;
  opacity: 0.8; text-transform: lowercase;
}
.hero-stat-label {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.52);
  font-weight: 500; white-space: nowrap;
}
.hero-stat-rule {
  display: block; width: 1px; height: 2.6rem; flex-shrink: 0;
  background: linear-gradient(to bottom, transparent, rgba(200,169,110,0.42), transparent);
  align-self: center;
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .hero-stat-rule { display: none; }
  .hero-stats .hero-stat { padding: 0; }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.hero-scroll-label {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(200,169,110,0.55);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ---------- Buttons (Emil Kowalski: specific transitions, :active press) ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--green-deep);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: 2px;
  transition: background 180ms cubic-bezier(0.23,1,0.32,1),
              transform  160ms cubic-bezier(0.23,1,0.32,1),
              box-shadow 180ms cubic-bezier(0.23,1,0.32,1);
  border: none; cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
}
.btn-primary:active { transform: scale(0.97) translateY(0); box-shadow: none; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--cream);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: 2px;
  border: 1px solid rgba(250, 247, 240, 0.35);
  transition: border-color 160ms cubic-bezier(0.23,1,0.32,1),
              color       160ms cubic-bezier(0.23,1,0.32,1),
              transform   160ms cubic-bezier(0.23,1,0.32,1);
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
}
.btn-outline:active { transform: scale(0.97) translateY(0); }

.btn-green {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--green-deep); color: var(--cream);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: 2px;
  transition: background 180ms cubic-bezier(0.23,1,0.32,1),
              transform  160ms cubic-bezier(0.23,1,0.32,1);
  border: none; cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .btn-green:hover { background: var(--green-mid); transform: translateY(-2px); }
}
.btn-green:active { transform: scale(0.97) translateY(0); }

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--green-deep);
  padding: 3.5rem clamp(1.25rem, 5vw, 5rem);
  position: relative;
}
.trust-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.trust-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1rem; text-align: center;
}
.trust-number {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700; font-style: italic; color: var(--gold); line-height: 1; display: block;
}
.trust-suffix { color: var(--gold-light); font-style: normal; }
.trust-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(250, 247, 240, 0.5); margin-top: 0.4rem;
}

/* ---------- Section Layout ---------- */
.section { padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 5vw, 5rem); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold);
}
.section-eyebrow-text {
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dark);
}

/* Gold Seal Divider */
.seal-divider {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 1.5rem 0;
}
.seal-divider::before, .seal-divider::after {
  content: ''; flex: 1; height: 1px;
}
.seal-divider::before { background: linear-gradient(to right, transparent, rgba(200,169,110,0.4)); }
.seal-divider::after  { background: linear-gradient(to left, transparent, rgba(200,169,110,0.4)); }
.seal-icon {
  width: 36px; height: 36px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}

/* ---------- Timeline ---------- */
.timeline-track {
  position: relative; display: grid;
  grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: start;
}
.timeline-line {
  position: absolute; left: 50%; top: 40px; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,169,110,0.1));
  transform: translateX(-50%);
}
.timeline-node {
  display: flex; flex-direction: column; align-items: center; padding-top: 36px;
}
.timeline-dot {
  width: 14px; height: 14px; background: var(--gold); border-radius: 50%;
  border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--gold); flex-shrink: 0;
}
.timeline-year {
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--gold); margin-top: 0.5rem; text-align: center;
}
.timeline-card {
  background: var(--white); border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card); margin: 1rem 0;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.timeline-card-right { margin-left: 1.5rem; }
.timeline-card-left  { margin-right: 1.5rem; }
.timeline-gen {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.6rem;
}
.timeline-name {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); margin-bottom: 0.25rem; line-height: 1.2;
}
.timeline-role {
  font-size: 0.78rem; font-weight: 500; color: var(--charcoal-muted); margin-bottom: 0.8rem;
}
.timeline-desc { font-size: 0.88rem; line-height: 1.65; color: var(--charcoal-soft); }
.timeline-memorial {
  display: inline-block; font-size: 0.68rem; font-style: italic;
  color: var(--charcoal-muted); margin-top: 0.75rem;
  padding: 0.3rem 0.6rem; border-left: 2px solid var(--gold);
}

/* ---------- Chairman Badge ---------- */
.chairman-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0A2012 50%, #0F2A1A 100%);
  position: relative; overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(200, 169, 110, 0.28);
}
.chairman-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 50%, rgba(200, 169, 110, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(200, 169, 110, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.chairman-section .section-eyebrow,
.chairman-section .chairman-eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}
.chairman-section .section-eyebrow::before {
  width: 36px;
  background: var(--gold);
}
.chairman-section .section-title,
.chairman-section .chairman-heading {
  color: var(--cream);
  font-size: clamp(2.25rem, 5.2vw, 3.85rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
}
.chairman-name-line {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
}
.chairman-role-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(200, 169, 110, 0.18);
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  margin-bottom: 1.35rem;
}
.chairman-section .seal-ring {
  width: clamp(190px, 22vw, 250px);
  height: clamp(190px, 22vw, 250px);
  box-shadow: 0 0 0 6px rgba(200, 169, 110, 0.12), 0 12px 40px rgba(0, 0, 0, 0.35);
}
.chairman-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.chairman-inner {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center;
}
.chairman-seal {
  flex-shrink: 0; position: relative;
}
.seal-photo-wrap {
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.chairman-seal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.chairman-eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.chairman-name {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; font-style: italic; color: var(--cream); line-height: 1.15; margin-bottom: 0.5rem;
}
.chairman-position { font-size: 1rem; color: var(--gold-light); font-weight: 500; margin-bottom: 1rem; }
.chairman-desc { font-size: clamp(1rem, 1.55vw, 1.14rem); color: rgba(250,247,240,0.9); line-height: 1.78; max-width: 580px; }

/* ---------- Service Tracks ---------- */
.service-tracks {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.12); border-radius: var(--radius-md); overflow: hidden;
}
.service-track {
  background: var(--white); padding: 2.5rem 2rem;
  transition: background var(--transition), transform var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.service-track::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
}
.service-track:hover { background: var(--cream); }
.service-track:hover::after { transform: scaleX(1); }
.service-track-icon {
  width: 48px; height: 48px; background: rgba(31, 78, 48, 0.07);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.4rem; transition: all var(--transition);
}
.service-track:hover .service-track-icon { background: rgba(200,169,110,0.15); transform: scale(1.08); }
.service-track-label {
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem;
}
.service-track-title {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); margin-bottom: 0.75rem; line-height: 1.2;
}
.service-track-desc { font-size: 0.84rem; color: var(--charcoal-soft); line-height: 1.65; margin-bottom: 1.25rem; }
.service-track-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.service-track-list li {
  font-size: 0.8rem; color: var(--charcoal-muted);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.service-track-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ---------- Crops ---------- */
.crops-section { background: var(--cream-dark); }
.crops-tabs {
  display: inline-flex; border: 1px solid rgba(200,169,110,0.35);
  border-radius: 4px; overflow: hidden; margin-bottom: 2.5rem;
}
.crops-tab {
  padding: 0.7rem 2rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  border: none; background: transparent; color: var(--charcoal-muted); transition: all var(--transition-fast);
}
.crops-tab.active { background: var(--green-deep); color: var(--gold); }
.crops-panel { display: none; }
.crops-panel.active { display: block; }
.crops-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.crop-chip {
  background: var(--white); border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem; transition: all var(--transition-fast);
}
.crop-chip:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.crop-chip-name {
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
  font-weight: 700; color: var(--green-deep); display: block; margin-bottom: 0.2rem;
}
.crop-chip-note { font-size: 0.72rem; color: var(--charcoal-muted); }
.varieties-title {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-dark); margin: 2rem 0 1rem;
}
.varieties-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.variety-tag {
  background: rgba(31, 78, 48, 0.07); border: 1px solid rgba(31, 78, 48, 0.15);
  border-radius: 2px; padding: 0.3rem 0.7rem;
  font-size: 0.75rem; font-weight: 600; color: var(--green-deep); transition: all var(--transition-fast);
}
.variety-tag:hover { background: var(--green-deep); color: var(--gold); }

/* ---------- WhatsApp CTA Band ---------- */
.wa-band {
  background: var(--gold); padding: 3rem clamp(1.25rem, 5vw, 5rem);
  text-align: center; position: relative; overflow: hidden;
}
.wa-band::before {
  content: ''; position: absolute; top: -40%; left: -5%;
  width: 30%; height: 200%; background: rgba(255,255,255,0.1);
  transform: skewX(-15deg); pointer-events: none;
}
.wa-band-inner { max-width: 700px; margin: 0 auto; position: relative; }
.wa-band-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700; font-style: italic; color: var(--green-deep); margin-bottom: 0.6rem; line-height: 1.15;
}
.wa-band-sub { font-size: 0.9rem; color: rgba(31, 78, 48, 0.72); margin-bottom: 1.75rem; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--green-deep); color: var(--cream);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; padding: 1rem 2.2rem; border-radius: 4px;
  transition: all var(--transition-fast); border: none; cursor: pointer;
}
.wa-btn:hover { background: #0F2A1A; transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.22); }
.wa-btn-icon { font-size: 1.25rem; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: var(--cream); padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem) 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(250,247,240,0.1); margin-bottom: 2rem;
}
.footer-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 700; font-style: italic; color: var(--gold); display: block; margin-bottom: 0.25rem; }
.footer-tagline { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,247,240,0.4); margin-bottom: 1.25rem; }
.footer-address { font-size: 0.82rem; line-height: 1.7; color: rgba(250,247,240,0.62); }
.footer-nav-title { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav-list a { font-size: 0.84rem; color: rgba(250,247,240,0.58); transition: color var(--transition-fast); }
.footer-nav-list a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.8rem; }
.footer-contact-icon { color: var(--gold); font-size: 0.85rem; margin-top: 0.1rem; flex-shrink: 0; }
.footer-contact-text { font-size: 0.82rem; color: rgba(250,247,240,0.62); line-height: 1.5; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-copy { font-size: 0.7rem; color: rgba(250,247,240,0.32); }
.footer-credit { font-size: 0.7rem; color: rgba(250,247,240,0.32); }
.footer-credit a, .footer-credit-link { color: var(--gold); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.footer-credit a:hover, .footer-credit-link:hover { color: var(--gold-light); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  min-height: 52vh; background: linear-gradient(135deg, var(--green-deep) 0%, #122E1C 100%);
  display: flex; align-items: flex-end;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 5vw, 5rem) clamp(3rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.page-hero-eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: 'Playfair Display', var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; font-style: normal; color: var(--cream); line-height: 1.1; max-width: 700px;
}
.page-hero-sub { font-size: 0.9rem; color: rgba(250,247,240,0.58); margin-top: 1rem; max-width: 520px; line-height: 1.7; }

/* ---------- Accordion ---------- */
.accordion-item { border-bottom: 1px solid rgba(200,169,110,0.2); }
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.75rem 0; background: none; border: none; cursor: pointer; text-align: left; gap: 1rem;
}
.accordion-trigger-left { display: flex; align-items: center; gap: 1.25rem; }
.accordion-num {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  font-style: italic; color: var(--gold-dark); opacity: 0.5; width: 24px; flex-shrink: 0;
}
.accordion-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); line-height: 1.2;
}
.accordion-icon {
  width: 28px; height: 28px; border: 1px solid rgba(200,169,110,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold-dark);
  font-size: 0.9rem; flex-shrink: 0; transition: all var(--transition-fast);
}
.accordion-item.open .accordion-icon { background: var(--green-deep); border-color: var(--green-deep); color: var(--gold); transform: rotate(45deg); }
.accordion-body { overflow: hidden; height: 0; transition: height var(--transition); }
.accordion-body-inner { padding: 0 0 2rem calc(24px + 1.25rem); }
.accordion-desc { font-size: 0.9rem; color: var(--charcoal-soft); line-height: 1.7; margin-bottom: 1.25rem; max-width: 680px; }
.accordion-features { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.6rem; }
.accordion-feature { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.84rem; color: var(--charcoal-soft); }
.accordion-feature::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }

/* ---------- Contact Form ---------- */
.form-tabs { display: inline-flex; border: 1px solid rgba(200,169,110,0.35); border-radius: 4px; overflow: hidden; margin-bottom: 2rem; }
.form-tab { padding: 0.65rem 1.75rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border: none; background: transparent; color: var(--charcoal-muted); transition: all var(--transition-fast); }
.form-tab.active { background: var(--green-deep); color: var(--gold); }
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-sm); background: var(--white);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(46, 107, 68, 0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(32px); }
.reveal-left { opacity: 0; transform: translateX(-32px); }
.reveal-right { opacity: 0; transform: translateX(32px); }

/* ---------- Utility ---------- */
.text-gold { color: var(--gold); }
.text-green { color: var(--green-deep); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--charcoal-muted); }
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }
.bg-green  { background: var(--green-deep); }
.bg-cream-dark { background: var(--cream-dark); }
.pt-nav { padding-top: 72px; }
.w-full { width: 100%; }

/* ============================================================
   EXTENDED STYLES — all inner pages
   ============================================================ */

/* ---------- Layout Utilities ---------- */
.section-pad    { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-pad-sm { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.section-container {
  max-width: 1200px; margin: 0 auto;
  padding-left: clamp(1.25rem, 5vw, 5rem);
  padding-right: clamp(1.25rem, 5vw, 5rem);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700; font-style: italic;
  color: var(--green-deep); line-height: 1.1;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: clamp(0.87rem, 1.4vw, 1rem);
  color: var(--charcoal-muted); max-width: 580px; line-height: 1.7;
}
.section-header { margin-bottom: 3rem; }
.section-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dark);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem;
}
.section-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.bg-cream { background: var(--cream); }
.bg-cream-dark-section { background: var(--cream-dark); }

/* ---------- Nav Container & Logo ---------- */
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1400px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.nav-logo-mark {
  font-family: var(--font-display); font-size: clamp(0.78rem, 1.6vw, 1.05rem);
  font-weight: 700; font-style: italic; color: var(--gold); letter-spacing: 0.01em;
  line-height: 1.15;
}
.nav-logo-sub {
  display: block; font-family: var(--font-body); font-size: 0.6rem;
  font-style: normal; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); margin-top: 3px;
}
/* Override nav padding since container handles it */
.nav { padding: 0; }

/* ---------- Hero Eyebrow (plain <p> version) ---------- */
.hero-eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.hero-accent-line {
  position: absolute; top: 0; right: 14%; width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, var(--gold) 40%, transparent);
  opacity: 0.25; z-index: 1; pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: clamp(7rem, 14vh, 10rem) clamp(1.25rem, 5vw, 5rem) clamp(3rem, 6vh, 5rem);
}
.page-hero--short { min-height: 40vh; }

/* ---------- Trust Grid (used in trust-strip section) ---------- */
.trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; text-align: center;
}
.trust-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  text-align: center;
}
.trust-number {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; font-style: italic; color: var(--gold); line-height: 1;
  display: block; text-align: center; width: 100%;
}
.trust-label {
  display: block; text-align: center; width: 100%;
}

/* ---------- Timeline (home page) ---------- */
.timeline-section { background: var(--cream); }
.timeline { display: flex; flex-direction: column; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,169,110,0.1));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  align-items: flex-start; gap: 0; min-height: 200px;
}
.timeline-card {
  background: var(--white); border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0; overflow: hidden; position: relative; cursor: pointer;
}
/* Stretched link: entire card clicks through to timeline-card-cta href */
.timeline-card-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.timeline-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  background: var(--cream-dark);
}
.timeline-card-media .timeline-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.timeline-card-media--portrait {
  aspect-ratio: 3 / 4;
}
.timeline-card-media--portrait .timeline-portrait {
  object-position: center 12%;
}
.timeline-card-media--bust .timeline-portrait {
  object-position: center 15%;
}
.timeline-card-body {
  padding: 2rem;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.timeline-card-left  { margin-right: 1.5rem; margin-bottom: 2rem; }
.timeline-card-right { margin-left:  1.5rem; margin-bottom: 2rem; }
.timeline-card-spacer { display: block; }
.timeline-dot {
  width: 14px; height: 14px; background: var(--gold); border-radius: 50%;
  border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--gold);
  margin: 2rem auto; position: relative; z-index: 1; opacity: 0;
}
.timeline-card-year {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.timeline-card-name {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); line-height: 1.2; margin-bottom: 0.2rem;
}
.timeline-card-role {
  font-size: 0.75rem; font-weight: 500; color: var(--charcoal-muted);
  margin-bottom: 0.8rem; letter-spacing: 0.04em;
}
.timeline-card-desc {
  font-size: 0.85rem; line-height: 1.68; color: var(--charcoal-soft); margin-bottom: 0.6rem;
}
.timeline-card-memorial {
  font-size: 0.7rem; font-style: italic; color: var(--charcoal-muted);
  border-left: 2px solid var(--gold); padding-left: 0.75rem; margin-top: 0.75rem;
}
.timeline-card-badge {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem;
  background: rgba(200,169,110,0.1); border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-sm); padding: 0.6rem 0.9rem;
  font-size: 0.78rem; color: var(--green-deep); line-height: 1.45;
}
.timeline-card-badge small { color: var(--charcoal-muted); font-size: 0.68rem; }
.badge-seal { color: var(--gold); font-size: 1.1rem; }
.timeline-card-cta {
  display: inline-block; margin-top: 0.85rem; font-size: 0.78rem; font-weight: 600;
  color: var(--gold-dark); letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}
.timeline-card-cta:hover { color: var(--green-deep); }

/* ---------- Chairman Section Overrides ---------- */
.seal-ring {
  width: clamp(160px, 18vw, 200px);
  height: clamp(160px, 18vw, 200px);
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; animation: sealGlow 4s ease-in-out infinite;
}
.seal-ring::before {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(200,169,110,0.35); border-radius: 50%;
}
@keyframes sealGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,110,0.3); }
  50%       { box-shadow: 0 0 28px 4px rgba(200,169,110,0.18); }
}
.seal-inner { text-align: center; position: relative; z-index: 1; }
.seal-icon   { color: var(--gold); font-size: 1.6rem; margin-bottom: 0.2rem; }
.seal-text   { font-size: 0.52rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.seal-subtext { font-size: 0.46rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-top: 1px; }
.chairman-content { flex: 1; }
.chairman-desc {
  font-size: clamp(1rem, 1.55vw, 1.14rem);
  color: rgba(250, 247, 240, 0.9);
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 1rem;
}
.chairman-tenure {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-style: italic;
  color: var(--gold-light);
}
.tenure-year { font-weight: 700; }
.tenure-dash { color: rgba(200,169,110,0.5); }

/* about.html chairman badge card */
.chairman-badge-card {
  display: flex; align-items: center; gap: 1rem; margin-top: 1rem;
  background: rgba(200,169,110,0.12); border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-sm); padding: 0.85rem 1.1rem;
  font-size: 0.82rem; color: var(--charcoal-soft); line-height: 1.5;
}
.badge-seal-lg { color: var(--gold); font-size: 1.6rem; }

/* ---------- Service Track Link ---------- */
.service-track-link {
  display: inline-block; margin-top: 1.25rem; font-size: 0.78rem;
  font-weight: 600; color: var(--gold-dark); letter-spacing: 0.06em;
  transition: color var(--transition-fast);
}
.service-track-link:hover { color: var(--green-deep); }

/* ---------- Crops Components (crops.html) ---------- */
.crops-tabs-wrapper { margin-top: 2rem; }
.crops-tabs-wrapper--full .crops-tabs { display: flex; }
.crops-tabs {
  display: inline-flex; border: 1px solid rgba(200,169,110,0.35);
  border-radius: 4px; overflow: hidden; margin-bottom: 2.5rem;
}
.crops-tab {
  padding: 0.8rem 2.2rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  border: none; background: transparent; color: var(--charcoal-muted);
  transition: all var(--transition-fast); display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.crops-tab.active { background: var(--green-deep); color: var(--gold); }
.tab-season-label { font-size: 0.78rem; }
.tab-season-months { font-size: 0.6rem; opacity: 0.7; font-weight: 400; letter-spacing: 0.08em; text-transform: none; }
.crops-panel { display: none; }
.crops-panel.active { display: block; }
.crops-section-group { margin-bottom: 3rem; }

.crops-group-hero {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.crops-group-img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

.crops-group-header { margin-bottom: 1.5rem; }
.crops-group-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); margin-bottom: 0.4rem;
}
.crops-group-desc { font-size: 0.85rem; color: var(--charcoal-muted); }
.crops-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem;
}
.crop-card {
  background: var(--white); border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--radius-md); padding: 1.4rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
}
.crop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(200,169,110,0.4); }
.crop-card-tag {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem;
}
.crop-card-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); margin-bottom: 0.4rem;
}
.crop-card-desc { font-size: 0.81rem; color: var(--charcoal-soft); line-height: 1.6; margin-bottom: 0.65rem; }
.crop-card-spec {
  font-size: 0.68rem; font-weight: 600; color: var(--charcoal-muted);
  background: rgba(31,78,48,0.06); border-radius: 2px; padding: 0.25rem 0.55rem;
  display: inline-block;
}
.crop-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.crop-tag {
  background: rgba(31,78,48,0.08); border: 1px solid rgba(31,78,48,0.18);
  border-radius: 2px; padding: 0.35rem 0.85rem;
  font-size: 0.75rem; font-weight: 600; color: var(--green-deep);
  transition: all var(--transition-fast);
}
.crop-tag:hover { background: var(--green-deep); color: var(--gold); border-color: var(--green-deep); }
.crop-note { font-size: 0.8rem; color: var(--charcoal-muted); font-style: italic; margin-top: 0.5rem; }
.crops-cta { margin-top: 2.5rem; }

/* Quality Process */
.quality-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem;
  counter-reset: none;
}
.quality-step {
  text-align: center; padding: 1.75rem 1.25rem;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid rgba(200,169,110,0.15); opacity: 0;
  transition: box-shadow var(--transition);
}
.quality-step:hover { box-shadow: var(--shadow-card); }
.quality-step-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  font-style: italic; color: rgba(200,169,110,0.35); margin-bottom: 0.75rem; display: block;
}
.quality-step-title {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); margin-bottom: 0.5rem;
}
.quality-step-desc { font-size: 0.8rem; color: var(--charcoal-muted); line-height: 1.6; }

/* ---------- WhatsApp Band Updated ---------- */
.wa-band {
  background: var(--gold); padding: 3.5rem 0; position: relative; overflow: hidden;
}
.wa-band::before {
  content: ''; position: absolute; top: -50%; left: -5%; width: 30%; height: 200%;
  background: rgba(255,255,255,0.08); transform: skewX(-12deg); pointer-events: none;
}
.wa-band-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.wa-band-text { flex: 1; min-width: 240px; }
.wa-band-heading {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700; font-style: italic; color: var(--green-deep); line-height: 1.15; margin-bottom: 0.4rem;
}
.wa-band-sub { font-size: 0.88rem; color: rgba(31,78,48,0.7); }
.wa-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--green-deep); color: var(--cream);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.9rem 1.8rem; border-radius: 2px;
  transition: all var(--transition-fast); border: none; cursor: pointer;
}
.btn-wa:hover { background: #0D2315; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.btn-wa-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--green-deep);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.9rem 1.8rem; border-radius: 2px;
  border: 1.5px solid var(--green-deep); transition: all var(--transition-fast); cursor: pointer;
}
.btn-wa-outline:hover { background: rgba(31,78,48,0.08); transform: translateY(-2px); }

/* ---------- Footer Updated ---------- */
.footer { background: var(--charcoal); color: var(--cream); padding-top: clamp(3.5rem, 7vw, 5.5rem); padding-bottom: 2rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1.1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(250,247,240,0.08); margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo  { display: flex; align-items: baseline; gap: 0.35rem; }
.footer-logo .nav-logo-mark { color: var(--gold); }
.footer-logo .nav-logo-sub  { color: var(--gold-light); }
.footer-tagline { font-size: 0.72rem; color: rgba(250,247,240,0.42); line-height: 1.6; margin-top: 0.25rem; }
.footer-hindi {
  font-family: var(--font-devanagari); font-size: 0.85rem;
  color: rgba(200,169,110,0.55); margin-top: 0.25rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col-heading {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.82rem; color: rgba(250,247,240,0.52);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-address { font-size: 0.82rem; line-height: 1.75; color: rgba(250,247,240,0.52); font-style: normal; margin-bottom: 0.75rem; }
.footer-phone { margin-bottom: 0.5rem; }
.footer-phone a { font-size: 0.9rem; color: var(--gold-light); font-weight: 500; }
.footer-hours { font-size: 0.75rem; color: rgba(250,247,240,0.4); line-height: 1.6; }
.footer-wa-btn { margin-bottom: 1rem; font-size: 0.75rem; padding: 0.7rem 1.4rem; }
.footer-map-placeholder {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 0.9rem 1rem;
  font-size: 0.78rem; color: rgba(250,247,240,0.45); line-height: 1.55;
}
.footer-map-link {
  display: inline-block; margin-top: 0.4rem; font-size: 0.72rem;
  color: var(--gold); transition: color var(--transition-fast);
}
.footer-map-link:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-copy   { font-size: 0.68rem; color: rgba(250,247,240,0.28); }
.footer-credit { font-size: 0.68rem; color: rgba(250,247,240,0.28); }
.footer-credit strong { color: var(--gold-light); }
.footer-credit a strong { color: inherit; }

/* ---------- About Page ---------- */
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: flex-start;
}
.about-story-grid--reverse { direction: rtl; }
.about-story-grid--reverse > * { direction: ltr; }
.about-para { font-size: 0.9rem; line-height: 1.75; color: var(--charcoal-soft); margin-bottom: 1rem; }
.about-memorial { margin-top: 1.5rem; padding-left: 1rem; border-left: 3px solid var(--gold); }
.memorial-line { display: none; }
.memorial-text {
  font-size: 0.78rem; font-style: italic; color: var(--charcoal-muted); line-height: 1.6;
}
.about-image-frame { position: relative; }
.about-image-frame .gen-photo {
  width: 100%; max-height: 520px;
  aspect-ratio: 3 / 4;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius-md);
  display: block;
}
.about-image-placeholder {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0D2315 100%);
  border-radius: var(--radius-md); min-height: 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--gold-light); font-size: 0.82rem; text-align: center;
  line-height: 1.5; padding: 2rem; position: relative; overflow: hidden;
}
.about-image-placeholder::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.placeholder-icon { font-size: 2rem; color: var(--gold); position: relative; z-index: 1; }
.about-image-caption {
  font-size: 0.72rem; color: var(--charcoal-muted); font-style: italic;
  margin-top: 0.75rem; text-align: center; line-height: 1.5;
}
.about-contact-card {
  background: var(--white); border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius-md); padding: 1.5rem 1.75rem; margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.contact-card-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--charcoal-muted); margin-bottom: 0.2rem;
}
.contact-card-phone {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); line-height: 1;
}
.hindi-tribute { background: var(--green-deep); }
.hindi-tribute-inner {
  text-align: center; max-width: 700px; margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 5rem);
}
.hindi-quote {
  font-family: var(--font-devanagari); font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--gold-light); line-height: 1.5; margin-bottom: 0.75rem;
}
.hindi-attribution { font-size: 0.78rem; color: rgba(200,169,110,0.6); margin-bottom: 0.35rem; }
.hindi-translation { font-size: 0.82rem; font-style: italic; color: rgba(250,247,240,0.45); }

/* Values Grid */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
}
.value-card {
  background: var(--white); border: 1px solid rgba(200,169,110,0.15);
  border-radius: var(--radius-md); padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition); opacity: 0;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.value-icon { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; display: block; }
.value-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); margin-bottom: 0.5rem;
}
.value-desc { font-size: 0.82rem; color: var(--charcoal-muted); line-height: 1.65; }

/* ---------- Services Page ---------- */
.services-intro { background: var(--green-deep); }
.services-intro-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem) 0; text-align: center;
}
.services-intro-stat { display: flex; flex-direction: column; align-items: center; }
.intro-stat-num {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700; font-style: italic; color: var(--gold); line-height: 1; display: block;
}
.intro-stat-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,247,240,0.5); margin-top: 0.4rem;
}
.accordion-section { background: var(--cream); }
.accordion { border-top: 1px solid rgba(200,169,110,0.2); }
.accordion-trigger {
  display: flex; align-items: center; gap: 1.25rem; width: 100%; padding: 1.75rem 0;
  background: none; border: none; cursor: pointer; text-align: left;
  border-bottom: 1px solid rgba(200,169,110,0.2); transition: color var(--transition-fast);
}
.accordion-trigger-num {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  color: var(--gold); opacity: 0.5; width: 26px; flex-shrink: 0;
}
.accordion-trigger-title {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700; font-style: italic; color: var(--green-deep); flex: 1;
  transition: color var(--transition-fast);
}
.accordion-trigger:hover .accordion-trigger-title { color: var(--green-mid); }
.accordion-trigger-icon {
  width: 28px; height: 28px; border: 1.5px solid rgba(200,169,110,0.45);
  border-radius: 50%; flex-shrink: 0; position: relative; transition: all var(--transition-fast);
}
.accordion-trigger-icon::before,
.accordion-trigger-icon::after {
  content: ''; position: absolute; background: var(--gold);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.accordion-trigger-icon::before { width: 10px; height: 1.5px; }
.accordion-trigger-icon::after  { width: 1.5px; height: 10px; transition: transform var(--transition-fast); }
.accordion-item.open .accordion-trigger-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.open .accordion-trigger-icon { background: rgba(200,169,110,0.12); border-color: var(--gold); }
.accordion-body { overflow: hidden; transition: height 0.38s cubic-bezier(0.4,0,0.2,1); }
.accordion-body-inner { padding: 1.25rem 0 2rem 2.5rem; }
.accordion-desc {
  font-size: 0.9rem; color: var(--charcoal-soft); line-height: 1.72;
  margin-bottom: 1.5rem; max-width: 640px;
}
.accordion-features { display: flex; flex-direction: column; gap: 1.1rem; }
.accordion-feature {
  display: flex; align-items: flex-start; gap: 0.9rem;
  font-size: 0.86rem; color: var(--charcoal-soft); line-height: 1.55;
}
.accordion-feature strong { display: block; color: var(--green-deep); margin-bottom: 0.15rem; font-size: 0.88rem; }
.accordion-feature p { font-size: 0.82rem; color: var(--charcoal-muted); margin: 0; }
.feature-dot { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: 0.7rem; }

/* ---------- Buyers Page ---------- */
.buyers-main { background: var(--cream); }
.buyer-type-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.buyer-type-card {
  background: var(--white); border: 1px solid rgba(200,169,110,0.15);
  border-radius: var(--radius-md); padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition); opacity: 0;
}
.buyer-type-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-deep); }
.buyer-type-icon {
  width: 52px; height: 52px; background: rgba(31,78,48,0.07);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--green-deep);
  transition: all var(--transition);
}
.buyer-type-card:hover .buyer-type-icon { background: rgba(200,169,110,0.15); color: var(--gold-dark); }
.buyer-type-icon svg { width: 26px; height: 26px; }
.buyer-type-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); margin-bottom: 0.65rem;
}
.buyer-type-desc { font-size: 0.84rem; color: var(--charcoal-soft); line-height: 1.65; margin-bottom: 1rem; }
.buyer-type-crops { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* Buyer Quality Assurance */
.buyer-qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.buyer-qa-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* Geography */
.geography-section { background: var(--cream); }
.geography-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.geography-card {
  background: var(--green-deep); border-radius: var(--radius-md); padding: 2rem;
  opacity: 0; transition: transform var(--transition);
}
.geography-card:hover { transform: translateY(-3px); }
.geo-state {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem;
}
.geo-state::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.geo-locations { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.geo-locations li {
  font-size: 0.86rem; color: rgba(250,247,240,0.72);
  display: flex; align-items: center; gap: 0.5rem;
}
.geo-locations li::before { content: '—'; color: var(--gold); }

/* ---------- Contact Page ---------- */
.contact-main { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-block {}
.contact-info-heading {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); margin-bottom: 1rem;
}
.contact-direct-card {
  background: var(--white); border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-md); padding: 1.5rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.contact-person-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  font-style: italic; color: var(--green-deep);
}
.contact-person-role {
  font-size: 0.72rem; color: var(--charcoal-muted); font-weight: 500;
  letter-spacing: 0.05em; margin-bottom: 0.5rem;
}
.contact-phone-link {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); line-height: 1.1; margin-bottom: 0.75rem;
  transition: color var(--transition-fast); display: block;
}
.contact-phone-link:hover { color: var(--green-mid); }
.contact-wa-btn { width: fit-content; font-size: 0.78rem; padding: 0.7rem 1.4rem; }
.contact-address-block { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 0.75rem; }
.contact-address-line { display: grid; grid-template-columns: 5rem 1fr; gap: 0.5rem; font-size: 0.84rem; }
.contact-address-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dark); padding-top: 2px;
}
.contact-map-link {
  font-size: 0.78rem; font-weight: 600; color: var(--gold-dark);
  transition: color var(--transition-fast);
}
.contact-map-link:hover { color: var(--green-deep); }
.contact-map-embed { border-radius: var(--radius-md); overflow: hidden; }
.map-placeholder-box {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0D2315 100%);
  border-radius: var(--radius-md); padding: 2.5rem 2rem; text-align: center;
  color: var(--gold-light); display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  min-height: 200px; justify-content: center;
}
.map-pin-icon { color: var(--gold); margin-bottom: 0.5rem; }
.map-placeholder-sub { font-size: 0.75rem; color: rgba(250,247,240,0.45); }

/* Form column */
.contact-form-col {}
.form-wrap {
  background: var(--white); border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-card);
}
.contact-form-header { margin-bottom: 1.75rem; }
.contact-form-title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  font-style: italic; color: var(--green-deep); margin-bottom: 0.35rem;
}
.contact-form-sub { font-size: 0.82rem; color: var(--charcoal-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 0.45rem;
}
.form-label span { color: var(--gold-dark); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-sm); background: var(--cream);
  font-family: var(--font-body); font-size: 0.88rem; color: var(--charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast); outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(46,107,68,0.1); background: var(--white);
}
.form-input.error, .form-select.error, .form-textarea.error { border-color: #C0392B; }
.form-textarea { min-height: 100px; resize: vertical; }
.form-submit-btn { width: 100%; justify-content: center; margin-top: 0.5rem; padding: 1rem; font-size: 0.86rem; }
.form-disclaimer {
  text-align: center; font-size: 0.75rem; color: var(--charcoal-muted); margin-top: 0.75rem;
}
.form-disclaimer a { color: var(--gold-dark); font-weight: 500; }
.field-hint {
  display: block; font-size: 0.68rem; color: #C0392B; margin-top: 0.3rem; font-weight: 500;
}
.form-error-notice {
  background: #FDF2F0; border: 1px solid #F5C6BE; border-radius: var(--radius-sm);
  padding: 0.75rem 1rem; font-size: 0.82rem; color: #C0392B; margin-bottom: 1rem;
}
/* Thank-you state (injected by contact.js) */
.thankyou-state { text-align: center; padding: 3rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.thankyou-icon {
  width: 64px; height: 64px; background: rgba(31,78,48,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--green-deep); margin-bottom: 0.5rem;
}
.thankyou-heading {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  font-style: italic; color: var(--green-deep);
}
.thankyou-body { font-size: 0.88rem; color: var(--charcoal-muted); line-height: 1.65; max-width: 380px; }
.mt-4 { margin-top: 1rem; }
.mt-3 { margin-top: 0.75rem; }

/* ---------- 404 Page ---------- */
.error-page {
  min-height: calc(100svh - 72px); margin-top: 72px;
  background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem;
}
.error-page-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.error-seal { display: flex; justify-content: center; margin-bottom: 2rem; opacity: 0; }
.error-heading {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; font-style: italic; color: var(--green-deep);
  margin-bottom: 0.75rem; line-height: 1.15; opacity: 0;
}
.error-sub {
  font-size: 0.9rem; color: var(--charcoal-muted); line-height: 1.7;
  margin-bottom: 2rem; max-width: 420px; margin-left: auto; margin-right: auto; opacity: 0;
}
.error-links {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2.5rem; opacity: 0;
}
.error-links .btn-outline { color: var(--green-deep); border-color: rgba(31,78,48,0.35); }
.error-links .btn-outline:hover { color: var(--green-deep); border-color: var(--green-deep); }
.error-address {
  font-size: 0.72rem; color: var(--charcoal-muted); line-height: 1.65; opacity: 0;
}

/* ---- Miscellaneous ---- */
.mt-2 { margin-top: 0.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  /* Trust */
  .trust-grid         { grid-template-columns: repeat(3, 1fr); }
  /* Services */
  .service-tracks     { grid-template-columns: 1fr 1fr; }
  /* Footer */
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  /* Chairman */
  .chairman-inner     { gap: 2.5rem; }
  /* About */
  .about-story-grid   { gap: 3rem; }
  /* Services intro */
  .services-intro-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  /* Geography */
  .geography-grid     { grid-template-columns: 1fr 1fr; }
  /* Contact */
  .contact-grid       { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger        { display: flex; }
  .lang-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
    margin-right: 0.65rem;
  }
  .lang-switcher .lang-btn {
    min-width: 2.1rem;
    min-height: 2.1rem;
    padding: 0.35rem 0.45rem;
    font-size: 0.68rem;
  }

  /* Trust */
  .trust-grid           { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Services */
  .service-tracks       { grid-template-columns: 1fr; }

  /* Home timeline */
  .timeline::before     { display: none; }
  .timeline-item        { grid-template-columns: 1fr; }
  .timeline-card-left,
  .timeline-card-right  { margin: 0 0 1.25rem; opacity: 1; }
  .timeline-card-media  { aspect-ratio: 16 / 10; }
  .timeline-card-media--portrait { aspect-ratio: 4 / 5; }
  .timeline-card-body { padding: 1.5rem; }
  .timeline-card-spacer { display: none; }
  .timeline-dot         { display: none; }

  /* Chairman */
  .chairman-inner       { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .seal-ring            { margin: 0 auto; }
  .chairman-content     { text-align: left; }

  /* Footer */
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Forms */
  .form-row             { grid-template-columns: 1fr; }

  /* About */
  .about-story-grid,
  .about-story-grid--reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }

  /* Crops */
  .crops-cards          { grid-template-columns: 1fr; }
  .crops-tabs           { display: flex; flex-wrap: wrap; }
  .crops-tab            { flex: 1; text-align: center; }

  /* Buyer QA */
  .buyer-qa-grid        { grid-template-columns: 1fr; }

  /* Geography */
  .geography-grid       { grid-template-columns: 1fr; }

  /* Services intro */
  .services-intro-grid  { grid-template-columns: repeat(2, 1fr); }

  /* Accordion body padding */
  .accordion-body-inner { padding-left: 1rem; }

  /* WhatsApp band */
  .wa-band-inner        { flex-direction: column; text-align: center; }
  .wa-band-text         { text-align: center; }
  .wa-band-actions      { justify-content: center; }

  /* Contact page */
  .contact-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-wrap            { padding: 1.75rem 1.25rem; }
}

@media (max-width: 480px) {
  /* Trust */
  .trust-grid           { grid-template-columns: 1fr 1fr; }

  /* Hero */
  .hero-actions         { flex-direction: column; align-items: flex-start; }
  .hero-badges          { flex-direction: column; gap: 0.5rem; }
  .hero-stats           { align-items: flex-start; }
  .hero-stats .hero-stat{ align-items: flex-start; }

  /* Footer */
  .footer-grid          { grid-template-columns: 1fr; }

  /* Buttons in error page */
  .error-links          { flex-direction: column; align-items: center; }

  /* Buyer grid */
  .buyer-type-grid      { grid-template-columns: 1fr; }

  /* Services intro */
  .services-intro-grid  { grid-template-columns: 1fr 1fr; }

  /* Quality steps */
  .quality-steps        { grid-template-columns: 1fr; }
}

/* ============================================================
   POLISH LAYER — cursor · progress · transitions · hover
   ============================================================ */

/* ---------- Page Transition Overlay ---------- */
#page-transition {
  position: fixed; inset: 0;
  background: var(--green-deep);
  z-index: 99999;
  pointer-events: none;
  will-change: transform;
}

/* ---------- Scroll Progress Bar ---------- */
#progress-bar {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 10001;
  pointer-events: none;
  will-change: transform;
}

/* ---------- Custom Cursor ---------- */
#cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(200, 169, 110, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: width 0.22s ease, height 0.22s ease,
              border-color 0.22s ease, opacity 0.18s ease;
  will-change: transform, width, height;
}
#cursor-ring.visible  { opacity: 1; }
#cursor-ring.expanded { width: 62px; height: 62px; border-color: var(--gold); }

#cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  pointer-events: none;
  z-index: 10000;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.18s ease;
  will-change: transform;
}
#cursor-dot.visible { opacity: 1; }

@media (hover: hover) {
  html, a, button, [role="button"], input, select, textarea, label { cursor: none !important; }
}
@media (hover: none) {
  #cursor-ring, #cursor-dot { display: none !important; }
}

/* ---------- Button Fill Sweep (inset box-shadow trick) ---------- */
.btn-primary {
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.14);
  transition: box-shadow 0.42s ease,
              transform var(--transition-fast);
}
.btn-primary:hover {
  background: var(--gold);
  box-shadow: inset 600px 0 0 0 rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
  color: var(--green-deep);
}

.btn-wa {
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.42s ease,
              transform var(--transition-fast);
}
.btn-wa:hover {
  background: var(--green-deep);
  box-shadow: inset 600px 0 0 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.nav-cta {
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.14);
  transition: box-shadow 0.36s ease,
              transform var(--transition-fast),
              background var(--transition-fast);
}
.nav-cta:hover {
  background: var(--gold);
  box-shadow: inset 400px 0 0 0 rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

/* ---------- Card Hover Polish ---------- */
.timeline-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(31, 78, 48, 0.13),
              0 0 0 1px rgba(200, 169, 110, 0.18);
}

.buyer-type-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.buyer-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(31, 78, 48, 0.16);
  border-color: rgba(200, 169, 110, 0.45);
}

.crop-card:hover {
  border-color: rgba(200, 169, 110, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(200, 169, 110, 0.12);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(31, 78, 48, 0.1);
}

/* ---------- Rotating Dashed Ring on Seal ---------- */
.seal-ring::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 169, 110, 0.22);
  animation: sealSpin 22s linear infinite;
  pointer-events: none;
}
@keyframes sealSpin {
  to { transform: rotate(360deg); }
}

/* ---------- Grain Breathe Animation ---------- */
@keyframes grainBreathe {
  0%, 100% { opacity: 0.04; }
  50%       { opacity: 0.07; }
}
.hero::before { animation: grainBreathe 9s ease-in-out infinite; }

/* ---------- Hero Scroll Indicator Bounce ---------- */
@keyframes scrollDown {
  0%, 100% { transform: scaleY(1);     transform-origin: top; }
  50%       { transform: scaleY(1.45); transform-origin: top; }
}
.hero-scroll-line { animation: scrollDown 2.2s ease-in-out infinite; }

/* ---------- Nav Link Transition Refinement ---------- */
.nav-links a::after {
  transition: width 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Section Eyebrow Gold Dot ---------- */
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 0;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- Form Input Focus Polish ---------- */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.12);
}

/* ---------- Accordion Trigger Hover ---------- */
.accordion-trigger:hover .accordion-trigger-num { color: var(--gold); }
.accordion-trigger:hover { background: rgba(200, 169, 110, 0.04); }

/* ============================================================
   MOBILE & TABLET — iOS + Android Optimization
   ============================================================ */

/* --- Global overflow & text scaling fix --- */
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

/* --- Touch: remove tap flash + 300ms delay on all interactive elements --- */
a,
button,
[role="button"],
.accordion-trigger,
.crops-tab,
.form-tab,
.nav-hamburger,
.nav-cta,
.btn,
input[type="submit"],
input[type="button"],
label {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* --- iOS Safe Area — nav, mobile nav, footer --- */
.nav {
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  padding-top: max(0px, env(safe-area-inset-top));
}

.nav-mobile {
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
}

footer {
  padding-bottom: max(2rem, calc(1.5rem + env(safe-area-inset-bottom)));
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
}

/* --- Prevent nav-mobile from creating horizontal scroll --- */
.nav-mobile {
  max-width: 100vw;
  box-sizing: border-box;
}

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .hero-scroll-line { animation: none; }
  .seal-ring::after { animation: none; }
  .hero::before { animation: none; }
}

/* ============================================================
   TABLET (768px – 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  /* Crops grid: 2-col */
  .crops-cards { grid-template-columns: repeat(2, 1fr); }

  /* Buyer grid: 2-col */
  .buyer-type-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services intro stats: keep 2-col */
  .services-intro-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero headline clamp tighter */
  .hero-headline { font-size: clamp(2.4rem, 5vw, 4rem); }

  /* Timeline: keep vertical, tweak spacing */
  .timeline-item { padding-left: 2rem; }

  /* Chairman badge: compact */
  .chairman-card { padding: 2.5rem 2rem; }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Touch targets — min 48px height per WCAG 2.5.5 */
  .btn,
  .crops-tab,
  .form-tab,
  .accordion-trigger {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Accordion trigger tall enough to thumb-tap */
  .accordion-trigger { min-height: 56px; }

  /* iOS form input zoom prevention — must be ≥ 16px */
  .form-input,
  .form-select,
  .form-textarea,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Section padding tighten */
  .section { padding: 4rem 1.25rem; }

  /* Hero buttons stacked full-width */
  .hero-actions {
    flex-direction: column;
    gap: 0.875rem;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Hero eyebrow — smaller on narrow screens */
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  /* Timeline — extra breathing room */
  .timeline-item { padding-left: 1.5rem; margin-bottom: 2.5rem; }

  /* Service intro stats: 2-col on mobile */
  .services-intro-grid { grid-template-columns: repeat(2, 1fr); }

  /* Crops: single column */
  .crops-cards { grid-template-columns: 1fr; }

  /* Buyer cards: single column */
  .buyer-type-grid { grid-template-columns: 1fr; }

  /* Contact form columns → stack */
  .form-grid { grid-template-columns: 1fr; }

  /* Trust/stats strip: 2-col on mobile */
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Footer: single column */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Values grid: single column */
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

  /* Hero headline: floor at 2rem */
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }

  /* Hero subheadline */
  .hero-sub { font-size: 0.95rem; }

  /* Section title */
  .section-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  /* Hero actions: truly full-width on smallest screens */
  .hero-actions .btn { max-width: 100%; }

  /* Stat number: smaller */
  .stat-num { font-size: clamp(2rem, 9vw, 3.5rem); }

  /* Buyer card, crop card horizontal padding */
  .buyer-type-card,
  .crop-card,
  .value-card { padding: 1.5rem 1.25rem; }

  /* WA CTA band: tighten */
  .wa-band { padding: 2.5rem 1.25rem; }

  /* Error page */
  .error-heading { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

/* ============================================================
   HOVER NONE — disable desktop-only effects on touch devices
   ============================================================ */
@media (hover: none) {
  /* No magnetic button transforms interfere with touch layout */
  .btn-primary:hover,
  .nav-cta:hover {
    transform: none;
  }

  /* Card hover lifts removed — touch has no hover state */
  .timeline-card:hover,
  .buyer-type-card:hover,
  .crop-card:hover,
  .value-card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Native cursor back on touch (polish.js already handles this, belt+suspenders) */
  html, a, button { cursor: auto !important; }
}

/* ============================================================
   PREMIUM ANIMATION LAYER — Canvas · Marquee · Ripple · Tilt
   SVG Underline · WA Pulse · Logo Shimmer · Lenis scroll
   ============================================================ */

/* ---- Canvas Particles (hero overlay) ---- */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
  mix-blend-mode: screen;
}

/* ---- Marquee Ticker Strip ---- */
.marquee-strip {
  background: var(--green-deep);
  border-top: 1px solid rgba(200, 169, 110, 0.18);
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
  overflow: hidden;
  padding: 0.8rem 0;
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

/* Marquee hover speed is now controlled by JS (initMarqueeSpeed) — see animations.js */

.marquee-run {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  padding: 0 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.marquee-sep {
  font-size: 0.45rem;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

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

/* ---- SVG Underline ---- */
.svg-underline {
  display: block;
  width: min(300px, 90%);
  height: 8px;
  margin-top: 2px;
  margin-bottom: 0.5rem;
  overflow: visible;
  pointer-events: none;
}

/* ---- Button Ripple ---- */
.btn-ripple {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleExpand 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 10;
}

@keyframes rippleExpand {
  to {
    transform: translate(-50%, -50%) scale(100);
    opacity: 0;
  }
}

/* ---- WA Button Pulse Glow ---- */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 169, 110, 0.0); }
  50%       { box-shadow: 0 0 22px 8px rgba(200, 169, 110, 0.25), 0 4px 20px rgba(200, 169, 110, 0.15); }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 2px 8px rgba(200, 169, 110, 0.2); }
  50%       { box-shadow: 0 4px 24px rgba(200, 169, 110, 0.45), 0 2px 8px rgba(200, 169, 110, 0.3); }
}

.btn-wa-pulse { animation: waPulse 3.2s ease-in-out infinite; }
.btn-cta-glow { animation: ctaGlow 4s ease-in-out infinite; }

/* ---- Nav Logo Shimmer ---- */
@keyframes shimmerSlide {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}

.logo-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold)       0%,
    var(--gold-light) 38%,
    #FFF3D0           50%,
    var(--gold-light) 62%,
    var(--gold)       100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerSlide 5s linear infinite;
}

/* ---- 3D Card Tilt — CSS perspective base ---- */
.timeline-card,
.buyer-type-card,
.crop-card,
.value-card,
.service-track,
.chairman-card {
  transform-style: preserve-3d;
}

/* ---- Hero Particles z-index stacking ---- */
.hero > *:not(.hero-particles):not(.hero-bg):not(.story-hero-bg):not(.story-hero-overlay):not(.hero-home-overlay) {
  position: relative;
  z-index: 2;
}

/* ---- Marquee reduced-motion override ---- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .btn-wa-pulse  { animation: none; }
  .btn-cta-glow  { animation: none; }
  .logo-shimmer  { animation: none; -webkit-text-fill-color: var(--gold); color: var(--gold); background: none; }
}


/* ═══════════════════════════════════════════════════════════════════
   HERO SPLIT LAYOUT + 3D BUST
   Taste-skill: asymmetric grid, left text / right visual
   Emil Kowalski: scale(0.95) entry, custom easing, no scale(0)
═══════════════════════════════════════════════════════════════════ */

/* Override old hero-content positioning — now handled by grid */
.hero-split {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  width: 100%; max-width: 1360px; margin: 0 auto;
  padding: clamp(7rem, 12vh, 10rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vh, 7rem);
  gap: clamp(2rem, 4vw, 5rem);
}

/* Left column — existing hero-content now sits inside hero-split */
.hero-split .hero-content {
  max-width: 640px;
  padding: 0; /* remove old padding, parent grid handles it */
  position: static; /* override old absolute/relative stacking */
  margin: 0;
}

/* ── Bust column ── */
.hero-bust-col {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.hero-bust-scene {
  display: flex; flex-direction: column; align-items: center;
  /* perspective set via GSAP transformPerspective on frame */
}

.hero-bust-frame {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
  /* Emil: entry from scale(0.95) — NOT scale(0) */
  opacity: 0;
  transform: scale(0.92) translateY(24px);
}

.hero-bust-img {
  width: clamp(240px, 28vw, 440px);
  height: auto;
  display: block;
  /* No border-radius — PNG is transparent, no rectangular crop needed */
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.55))
          drop-shadow(0 6px 20px rgba(200,169,110,0.30))
          drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  mix-blend-mode: normal;
  opacity: 1;
}

/* Gold halo rings — decorative concentric pulses */
.bust-ring {
  position: absolute; inset: -6%; top: -6%;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110, 0.22);
  pointer-events: none;
  animation: bustRingPulse 4s cubic-bezier(0.23,1,0.32,1) infinite;
}
.bust-ring-1 { inset: -8%; animation-delay: 0s; }
.bust-ring-2 { inset: -22%; animation-delay: 1.8s; border-color: rgba(200,169,110,0.12); }

@keyframes bustRingPulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50%       { opacity: 0.42; transform: scale(1.03); }
}

/* Rotating halo arc */
.bust-halo {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  border-top: 1px solid rgba(200,169,110,0.35);
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid rgba(200,169,110,0.12);
  pointer-events: none;
  animation: bustHaloSpin 18s linear infinite;
}

@keyframes bustHaloSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Subtle gold base line below bust */
.bust-gold-base {
  position: absolute;
  bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 55%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.45;
}

/* Caption beneath bust */
.bust-caption {
  margin-top: 1.6rem; text-align: center;
  /* Emil: entry with opacity/transform, not scale(0) */
  opacity: 0; transform: translateY(12px);
}

.bust-caption-name {
  display: block;
  font-family: var(--font-display);
  font-style: italic; font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--gold);
  letter-spacing: 0.02em;
}
.bust-caption-sub {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.52);
  margin-top: 0.3rem;
}

/* Mobile: stack vertically, bust below text, smaller */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    padding-top: clamp(5.5rem, 12vw, 7rem);
    padding-bottom: 3rem;
    gap: 2.5rem;
  }
  .hero-bust-col {
    order: -1; /* bust above text on small screens for visual impact */
    padding-top: 0.5rem;
  }
  .hero-bust-img {
    width: clamp(160px, 45vw, 280px);
  }
  .bust-ring-2 { display: none; }
  .hero-scroll { display: none; } /* too cluttered on mobile stacked layout */
}

@media (max-width: 480px) {
  .hero-bust-img { width: clamp(130px, 40vw, 200px); }
  .bust-caption  { margin-top: 0.8rem; }
  .bust-caption-name { font-size: 0.9rem; }
}

/* ── Hero split stacking context fix ── */
.hero-split > * { position: relative; z-index: 2; }

/* Mobile: keep founder bust above headline (visible without scrolling) */
@media (max-width: 600px) {
  .hero-bust-col { order: -1; }
  .hero-split .hero-content { order: 1; }
}

/* ── Bust entry animation (JS-driven, but CSS fallback) ── */
@keyframes bustEnter {
  from { opacity: 0; transform: scale(0.92) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Reduced motion: skip 3D tilt, show static */
@media (prefers-reduced-motion: reduce) {
  .hero-bust-frame {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .bust-caption { opacity: 1 !important; transform: none !important; }
  .bust-ring, .bust-halo { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE — Portrait images
═══════════════════════════════════════════════════════════════════ */
.person-photo-wrap {
  width: clamp(100px, 14vw, 160px);
  aspect-ratio: 3/4;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(200,169,110,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.person-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.person-photo-placeholder {
  width: 100%; height: 100%;
  background: rgba(200,169,110,0.07);
  display: flex; align-items: center; justify-content: center;
}
.person-card-with-photo {
  display: flex; gap: 1.5rem; align-items: flex-start;
}
@media (max-width: 480px) {
  .person-card-with-photo {
    flex-direction: column; align-items: flex-start;
    gap: 1rem;
  }
  .person-photo-wrap { width: clamp(80px, 25vw, 120px); }
}

/* ═══════════════════════════════════════════════════════════════════
   CROPS PAGE — Crop images
═══════════════════════════════════════════════════════════════════ */
.crop-img-wrap {
  width: 100%;
  border-radius: 4px; overflow: hidden;
  margin-bottom: 1rem;
}
.crop-img-wrap img {
  width: 100%; height: auto; display: block;
  transition: transform 400ms cubic-bezier(0.23,1,0.32,1);
}
@media (hover: hover) and (pointer: fine) {
  .crop-img-wrap:hover img { transform: scale(1.03); }
}

/* ── nav service-track link hover fix (Emil: specific transition) ── */
.service-track-link {
  transition: color 160ms cubic-bezier(0.23,1,0.32,1),
              transform 160ms cubic-bezier(0.23,1,0.32,1);
  /* NO position:relative here — ::after must anchor to .service-track, not to itself */
}
/* Stretched link: ::after fills .service-track (nearest position:relative ancestor) */
.service-track-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .service-track:hover { transform: translateY(-3px); }
  .service-track-link:hover { transform: translateX(3px); }
}

/* ── WhatsApp btn :active state ── */
.btn-wa:active, .btn-wa-outline:active {
  transform: scale(0.97);
}

/* ── timeline-card-cta hover/active ── */
.timeline-card-cta {
  transition: color 160ms cubic-bezier(0.23,1,0.32,1),
              transform 160ms cubic-bezier(0.23,1,0.32,1);
}
@media (hover: hover) and (pointer: fine) {
  .timeline-card-cta:hover { transform: translateX(3px); }
}
.timeline-card-cta:active { transform: scale(0.97); }


/* ============================================================
   OUR STORY PAGE — Chronicle timeline · Founder · Profiles
   ============================================================ */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Story hero with field photograph */
.story-hero {
  min-height: 58vh; align-items: flex-end;
  background: var(--green-deep);
}
.story-hero .story-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.story-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.story-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12, 44, 26, 0.92) 0%, rgba(12, 44, 26, 0.55) 45%, rgba(12, 44, 26, 0.35) 100%);
}
.story-hero-content { position: relative; z-index: 2; }
.story-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  font-weight: 700; font-style: italic;
  color: var(--cream); line-height: 1.12;
  max-width: 720px;
}

/* Vertical chronicle timeline */
.story-chronicle { background: var(--cream); }
.story-chronicle-list {
  list-style: none; margin: 0; padding: 0;
  position: relative;
  max-width: 820px;
}
.story-chronicle-list::before {
  content: '';
  position: absolute;
  left: 72px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,169,110,0.15));
}
.story-chronicle-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding-bottom: 3.5rem;
  position: relative;
}
.story-chronicle-item:last-child { padding-bottom: 0; }
.story-chronicle-date {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600; font-style: italic;
  color: var(--gold-dark);
  text-align: right;
  padding-top: 0.15rem;
  line-height: 1.2;
}
.story-chronicle-date--memorial {
  font-size: 0.82rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(200, 120, 100, 0.85);
}
.story-chronicle-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700; font-style: italic;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.story-chronicle-title--light { color: var(--cream); }
.story-chronicle-text {
  font-size: 0.9rem; line-height: 1.75;
  color: var(--charcoal-soft);
  margin-bottom: 0.85rem;
}
.story-chronicle-text--light { color: rgba(250, 247, 240, 0.78); }
.story-chronicle-photo {
  margin: 1.25rem 0 0; border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid rgba(200,169,110,0.2);
}
.story-chronicle-photo img {
  width: 100%; display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.story-chronicle-photo--portrait { max-width: 220px; }
.story-chronicle-photo--portrait img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 12%;
}

/* In memoriam entry */
.story-chronicle-item--memorial .story-chronicle-body--memorial {
  background: var(--green-deep);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
  border: 1px solid rgba(200,169,110,0.22);
}
.story-memorial-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(200, 169, 110, 0.75);
  margin-bottom: 0.65rem;
}

/* Founder memorial — dark green feature */
.founder-memorial {
  position: relative; background: var(--green-deep);
  overflow: hidden;
}
.founder-memorial-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.founder-memorial-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
}
.founder-memorial-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(12,44,26,0.88) 0%, rgba(12,44,26,0.65) 50%, rgba(12,44,26,0.45) 100%);
  pointer-events: none;
}
.founder-memorial-grid {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative; z-index: 2;
}
.founder-memorial-photo img {
  width: 100%; max-height: 480px;
  object-fit: cover; object-position: center 15%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,169,110,0.25);
  display: block;
}
.founder-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.founder-label::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; font-style: italic;
  color: var(--cream); line-height: 1.12;
  margin-bottom: 0.35rem;
}
.founder-dates {
  font-size: 0.78rem; color: rgba(250,247,240,0.45);
  margin-bottom: 1.25rem;
}
.founder-achievements {
  list-style: none; margin: 0 0 1.5rem; padding: 0;
}
.founder-achievements li {
  font-size: 0.88rem; color: rgba(250,247,240,0.72);
  line-height: 1.65; padding-left: 1rem;
  position: relative; margin-bottom: 0.35rem;
}
.founder-achievements li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold);
}
.founder-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem; margin: 0 0 1rem;
}
.founder-quote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-style: italic; color: rgba(250,247,240,0.55);
  line-height: 1.55;
}
.founder-caption {
  font-size: 0.72rem; font-style: italic;
  color: rgba(250,247,240,0.35);
}

/* Generation profile rows */
.story-profiles .section-container {
  display: flex; flex-direction: column; gap: 3.5rem;
}
.story-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(200,169,110,0.18);
}
.story-profile:last-child {
  padding-bottom: 0; border-bottom: none;
}
.story-profile-photo {
  width: 120px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(200,169,110,0.22);
}
.story-profile-photo img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; object-position: center 12%;
  display: block;
}
.story-profile-photo--lg {
  width: clamp(160px, 22vw, 240px);
}
.story-profile-photo--lg img {
  aspect-ratio: 3 / 4;
}
.story-profile-badge {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200,169,110,0.14);
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.65rem;
}
.story-profile-eyebrow {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem; line-height: 1.5;
}
.story-profile-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700; font-style: italic;
  color: var(--green-deep); line-height: 1.15;
  margin-bottom: 0.25rem;
}
.story-profile-role {
  font-size: 0.78rem; color: var(--charcoal-muted);
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(200,169,110,0.25);
}
.story-profile-desc {
  font-size: 0.9rem; line-height: 1.72;
  color: var(--charcoal-soft);
  max-width: 560px;
}
.story-profile-contact {
  margin-top: 1.25rem; max-width: 320px;
}

/* Heritage closing quote */
.story-heritage-quote { background: var(--cream-dark); }
.story-heritage-block {
  margin: 0; padding: 0 0 0 1.5rem;
  border-left: 3px solid var(--gold);
  max-width: 720px;
}
.story-heritage-block p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600; font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .story-chronicle-list::before { left: 0; display: none; }
  .story-chronicle-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding-bottom: 2.5rem;
  }
  .story-chronicle-date {
    text-align: left;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    color: var(--gold);
  }
  .story-chronicle-photo--portrait { max-width: 180px; }
  .founder-memorial-grid { grid-template-columns: 1fr; }
  .founder-memorial-photo { max-width: 280px; margin: 0 auto; }
  .story-profile,
  .story-profile--reverse {
    grid-template-columns: 1fr;
  }
  .story-profile-photo,
  .story-profile-photo--lg {
    width: 140px;
  }
}


/* ============================================================
   SERVICES PAGE — Storytelling pillars · Enquiry band
   ============================================================ */

.services-hero {
  min-height: 42vh;
}
.services-hero .hero-sub {
  max-width: 520px;
  color: rgba(250, 247, 240, 0.72);
}

.service-pillars {
  background: var(--cream);
}

.service-pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  border-bottom: 1px solid rgba(200, 169, 110, 0.16);
}

.service-pillar--reverse .service-pillar-visual { order: 2; }
.service-pillar--reverse .service-pillar-content { order: 1; }

.service-pillar-visual {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.service-pillar-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.service-pillar-watermark {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: rgba(200, 169, 110, 0.18);
  pointer-events: none;
  user-select: none;
}

.service-pillar-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4.5rem);
}

.service-pillar-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.service-pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.18;
  margin-bottom: 1rem;
  max-width: 520px;
}

.service-pillar-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.service-pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 480px;
}

.service-pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--charcoal);
}

.service-pillar-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  border: 1px solid rgba(200, 169, 110, 0.45);
  background: rgba(200, 169, 110, 0.1);
}

/* Dark green enquiry band */
.service-enquiry {
  position: relative;
  background: var(--green-deep);
  overflow: hidden;
}

.service-enquiry-bg {
  position: absolute;
  inset: 0; z-index: 0;
  pointer-events: none;
}
.service-enquiry-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
}
.service-enquiry-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(12,44,26,0.90) 0%, rgba(12,44,26,0.70) 55%, rgba(12,44,26,0.50) 100%);
  pointer-events: none;
}

.service-enquiry-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.service-enquiry-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.service-enquiry-sub {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(250, 247, 240, 0.72);
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.service-enquiry-wa { margin-top: 0.25rem; }

.service-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(200, 169, 110, 0.22);
}

.service-radio-group {
  border: none;
  margin: 0 0 1rem;
  padding: 0;
}

.service-radio-group .form-label {
  margin-bottom: 0.5rem;
}

.service-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.service-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  cursor: pointer;
}

.service-radio input {
  accent-color: var(--green-deep);
}

@media (max-width: 900px) {
  .service-pillar,
  .service-pillar--reverse {
    grid-template-columns: 1fr;
  }
  .service-pillar--reverse .service-pillar-visual,
  .service-pillar--reverse .service-pillar-content {
    order: unset;
  }
  .service-pillar-visual {
    min-height: clamp(220px, 55vw, 320px);
  }
  .service-pillar-visual img {
    min-height: clamp(220px, 55vw, 320px);
  }
  .service-pillar-content {
    padding: 2rem 1.5rem 2.5rem;
  }
  .service-enquiry-grid {
    grid-template-columns: 1fr;
  }
  .service-enquiry-wa { display: none; }
}


/* ---------- Home crops strip (index.html) ---------- */
.crops-strip .section-sub {
  max-width: 640px;
  margin-top: 0.5rem;
}
.crops-strip .crops-section-group:last-of-type {
  margin-bottom: 1.5rem;
}
.crops-quality-callout {
  background: rgba(31, 78, 48, 0.06);
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
}
.crops-quality-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.crops-quality-text {
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  line-height: 1.72;
  color: var(--charcoal-soft);
  margin: 0;
  max-width: 720px;
}
.crops-cta {
  margin-top: 2rem;
  text-align: center;
}

/* ── Google Translate: force Mukta for Devanagari/Punjabi output ── */
.goog-text-highlight,
font[face],
[lang="hi"] *,
[lang="pa"] * {
  font-family: 'Mukta', 'Noto Sans Devanagari', sans-serif !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
}

/* ── Named Buyers Section ─────────────────────── */
.named-buyers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.named-buyer-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2rem 1.75rem;
  position: relative;
}
.named-buyer-accent {
  width: 2rem; height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}
.named-buyer-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.named-buyer-category {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.named-buyer-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.55;
}
.named-buyers-quote {
  margin-top: 3rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
.named-buyers-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--forest);
  line-height: 1.55;
}
@media (max-width: 768px) {
  .named-buyers-grid { grid-template-columns: 1fr; }
}

/* ── Devanagari Hero Fix (Google Translate hook) ─────────────────── */
/* Google Translate adds body.translated-ltr when Hindi/Punjabi active */

/* Base: kill italic, switch font for ALL hero text when translated */
body.translated-ltr .hero-headline,
body.translated-ltr .hero-sub,
body.translated-ltr .hero-eyebrow,
body.translated-ltr .page-hero-content h1,
body.translated-ltr .story-hero-content h1 {
  font-style: normal !important;
  letter-spacing: 0 !important;
}

/* Home & About & Crops → Tiro Devanagari (traditional, pairs with Cormorant) */
body.translated-ltr .hero-home .hero-headline,
body.translated-ltr .hero-about .hero-headline,
body.translated-ltr .hero-crops .hero-headline {
  font-family: 'Tiro Devanagari', 'Mukta', serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

/* Buyers & Services & Contact → Mukta 700 (clean, bold, professional) */
body.translated-ltr .hero-buyers .hero-headline,
body.translated-ltr .hero-services .hero-headline,
body.translated-ltr .hero-contact .hero-headline {
  font-family: 'Mukta', sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
}

/* Also fix hero-sub and eyebrow for all pages */
body.translated-ltr .hero-home .hero-sub,
body.translated-ltr .hero-about .hero-sub,
body.translated-ltr .hero-crops .hero-sub,
body.translated-ltr .hero-buyers .hero-sub,
body.translated-ltr .hero-services .hero-sub,
body.translated-ltr .hero-contact .hero-sub {
  font-family: 'Mukta', sans-serif !important;
  font-style: normal !important;
}

/* ── Hero font: Hindi + Punjabi translated state ─── */
/* Hind covers Devanagari, Baloo Paaji 2 covers Gurmukhi */
body.translated-ltr .hero-headline,
body.translated-ltr .page-hero h1,
body.translated-ltr .hero-home .hero-headline,
body.translated-ltr .hero-about .hero-headline,
body.translated-ltr .hero-crops .hero-headline,
body.translated-ltr .hero-buyers .hero-headline,
body.translated-ltr .hero-services .hero-headline,
body.translated-ltr .hero-contact .hero-headline {
  font-family: 'Hind', 'Baloo Paaji 2', sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

/* ── Translated hero: smaller size so Devanagari/Gurmukhi words don't wrap ── */
/* body.translated-ltr = Google Translate widget; html.translated-ltr = Chrome native translate */
body.translated-ltr .hero-headline,
html.translated-ltr body .hero-headline {
  font-size: clamp(1.75rem, 4vw, 3.2rem) !important;
  line-height: 1.3 !important;
  overflow-wrap: break-word;
  word-break: keep-all;
  max-width: 680px;
}
body.translated-ltr .page-hero h1,
html.translated-ltr body .page-hero h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.6rem) !important;
  line-height: 1.35 !important;
  overflow-wrap: break-word;
  word-break: keep-all;
}

/* ============================================================
   JTC — Design Polish v3  |  Motion · Depth · Glow · Texture
   ============================================================ */

/* ── Canvas particles: ensure correct z-index ── */
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; pointer-events: none;
}

/* ─── 1. SERVICE TRACKS — dramatic hover ─────────────────── */
.service-track {
  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform 0.28s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  overflow: hidden;
}
.service-track:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(31,78,48,0.14), 0 0 0 1.5px rgba(200,169,110,0.28);
}
/* Gold border-top reveal on hover */
.service-track::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-track:hover::before { transform: scaleX(1); }
/* Icon glow pulse */
.service-track:hover .service-track-icon {
  background: rgba(200,169,110,0.18);
  box-shadow: 0 0 0 6px rgba(200,169,110,0.08);
  transform: scale(1.12) rotate(-4deg);
  transition: background 0.28s, box-shadow 0.28s, transform 0.36s cubic-bezier(0.23,1,0.32,1);
}
/* Arrow indicator */
.service-track-link::before {
  content: '→';
  position: absolute;
  right: 1.75rem; bottom: 1.75rem;
  font-size: 1rem; color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.24s, transform 0.28s cubic-bezier(0.23,1,0.32,1);
}
.service-track:hover .service-track-link::before {
  opacity: 1;
  transform: translateX(0);
}

/* ─── 2. TRUST STRIP — depth + glow numbers ──────────────── */
.trust-strip {
  background: linear-gradient(135deg, #1A4530 0%, var(--green-deep) 50%, #12311F 100%);
}
.trust-strip::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,169,110,0.3), transparent);
}
.trust-strip-inner > div {
  position: relative;
  transition: transform 0.28s cubic-bezier(0.23,1,0.32,1);
}
.trust-strip-inner > div:hover { transform: translateY(-3px); }
.trust-strip-inner > div:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,110,0.22), transparent);
}
.trust-number {
  text-shadow: 0 0 28px rgba(200,169,110,0.22);
}
[data-count] {
  transition: color 0.15s;
}

/* ─── 3. TIMELINE CARDS — gold glow ──────────────────────── */
.timeline-card {
  transition:
    transform 0.30s cubic-bezier(0.23,1,0.32,1),
    box-shadow 0.30s cubic-bezier(0.23,1,0.32,1),
    border-color 0.30s;
}
.timeline-card:hover {
  transform: translateY(-6px) scale(1.008);
  box-shadow: 0 24px 56px rgba(31,78,48,0.15), 0 0 0 1.5px rgba(200,169,110,0.3);
  border-color: rgba(200,169,110,0.38);
}
.timeline-card-cta {
  transition:
    color 0.18s,
    letter-spacing 0.28s cubic-bezier(0.23,1,0.32,1),
    gap 0.22s;
}
.timeline-card:hover .timeline-card-cta {
  letter-spacing: 0.06em;
  color: var(--gold);
}

/* ─── 4. IMAGE HOVER LIFT ────────────────────────────────── */
.about-image-frame,
.timeline-card-media,
.crop-image-wrap,
.service-img-wrap,
.buyer-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.about-image-frame img,
.timeline-card-media img,
.crop-img,
.service-img,
.buyer-img {
  transition:
    transform 0.55s cubic-bezier(0.23,1,0.32,1),
    filter 0.42s;
}
.about-image-frame:hover img,
.timeline-card-media:hover img,
.crop-card:hover .crop-img,
.service-track:hover .service-img,
.buyer-type-card:hover .buyer-img {
  transform: scale(1.04);
  filter: brightness(1.04) saturate(1.08);
}

/* ─── 5. HERO ACTIONS — active press state ───────────────── */
.btn-primary,
.btn-outline,
.nav-cta {
  transition:
    background 0.18s,
    color 0.18s,
    transform 0.18s cubic-bezier(0.23,1,0.32,1),
    box-shadow 0.22s;
}
.btn-primary:active,
.nav-cta:active { transform: scale(0.97) translateY(0) !important; box-shadow: none !important; }
.btn-outline:active { transform: scale(0.97) !important; }

/* Hero CTA shimmer sweep */
.btn-primary {
  background: var(--gold);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.22) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0s;
}
.btn-primary:hover::before {
  transform: translateX(200%);
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

/* ─── 6. MARQUEE STRIP — hover highlight ─────────────────── */
.marquee-item:hover { color: var(--gold-light); }
.marquee-sep { color: var(--gold); opacity: 0.55; }

/* ─── 7. SECTION ALTERNATE BG — warm grain ───────────────── */
.section-alt {
  background: var(--cream-dark);
  position: relative;
}
.section-alt::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.section-green {
  background: linear-gradient(135deg, var(--green-deep) 0%, #1a4128 100%);
  position: relative;
}
.section-green::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ─── 8. FOOTER — editorial top border + texture ─────────── */
.footer {
  position: relative;
  background: linear-gradient(180deg, #181818 0%, #111111 100%);
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 20%, var(--gold) 50%, var(--gold-dark) 80%, transparent 100%);
  opacity: 0.7;
}
.footer::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.footer-grid, .footer-bottom { position: relative; z-index: 1; }
.footer-links a {
  position: relative; padding-left: 0;
  transition: color var(--transition-fast), padding-left 0.22s cubic-bezier(0.23,1,0.32,1);
}
.footer-links a:hover { color: var(--gold); padding-left: 0.5rem; }
.footer-links a::before {
  content: '—';
  position: absolute; left: -0.8rem;
  opacity: 0;
  color: var(--gold);
  transition: opacity 0.22s, left 0.22s;
}
.footer-links a:hover::before { opacity: 1; left: -1rem; }

/* ─── 9. SECTION TITLE GOLD ACCENT DOT ───────────────────── */
.section-eyebrow-text {
  position: relative;
}

/* ─── 10. CROP CARDS — richer hover ─────────────────────── */
.crop-card {
  transition:
    transform 0.30s cubic-bezier(0.23,1,0.32,1),
    box-shadow 0.30s cubic-bezier(0.23,1,0.32,1),
    border-color 0.28s;
}
.crop-card:hover {
  transform: translateY(-6px) scale(1.008);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 0 1.5px rgba(200,169,110,0.25);
  border-color: rgba(200,169,110,0.3);
}

/* ─── 11. VALUE / BUYER CARDS — hover glow ───────────────── */
.value-card,
.buyer-type-card {
  transition:
    transform 0.30s cubic-bezier(0.23,1,0.32,1),
    box-shadow 0.30s cubic-bezier(0.23,1,0.32,1),
    border-color 0.28s;
}
.value-card:hover,
.buyer-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(31,78,48,0.12), 0 0 0 1.5px rgba(200,169,110,0.22);
  border-color: rgba(200,169,110,0.28);
}

/* ─── 12. HERO SCROLL INDICATOR — animated bounce ────────── */
.hero-scroll-hint {
  animation: scroll-bounce 2s cubic-bezier(0.45,0,0.55,1) infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ─── 13. NAV CTA — pulse ring on desktop ────────────────── */
@media (hover: hover) {
  .btn-cta-glow {
    box-shadow: 0 0 0 0 rgba(200,169,110,0.35);
    animation: cta-ring 2.8s ease-out infinite;
  }
  @keyframes cta-ring {
    0%   { box-shadow: 0 0 0 0 rgba(200,169,110,0.35); }
    60%  { box-shadow: 0 0 0 10px rgba(200,169,110,0); }
    100% { box-shadow: 0 0 0 0 rgba(200,169,110,0); }
  }
}

/* ─── 14. SMOOTH SECTION REVEAL — stagger children ──────── */
.section-reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s cubic-bezier(0.23,1,0.32,1),
    transform 0.72s cubic-bezier(0.23,1,0.32,1);
}
.section-reveal-child.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 15. CHAIRMAN CARD — gold shimmer ───────────────────── */
.chairman-card {
  transition:
    transform 0.30s cubic-bezier(0.23,1,0.32,1),
    box-shadow 0.30s cubic-bezier(0.23,1,0.32,1);
}
.chairman-card:hover {
  transform: translateY(-5px) scale(1.006);
  box-shadow: 0 24px 56px rgba(31,78,48,0.18), 0 0 0 1.5px rgba(200,169,110,0.3);
}

/* ─── 16. HERO BADGE FLOAT ANIMATION (desktop) ───────────── */
@media (hover: hover) and (min-width: 768px) {
  .hero-stat:hover .hero-stat-num {
    text-shadow: 0 0 24px rgba(200,169,110,0.45);
    transition: text-shadow 0.3s;
  }
}

/* ─── 17. FORM INPUTS — focus glow ──────────────────────── */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15), 0 2px 8px rgba(31,78,48,0.08) !important;
  transition: border-color 0.22s, box-shadow 0.22s;
}

/* ─── 18. MARQUEE STRIP — gold diamond separator ─────────── */
.marquee-strip {
  background: linear-gradient(135deg, #1a4530 0%, var(--green-deep) 50%, #12301f 100%);
  border-top: 1px solid rgba(200,169,110,0.18);
  border-bottom: 1px solid rgba(200,169,110,0.18);
}

/* ─── 19. SCROLL-TO-TOP — hidden by default, shown via JS ── */
.scroll-top-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--green-deep);
  border: none; border-radius: 3px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s, transform 0.28s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.scroll-top-btn.visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.scroll-top-btn:active { transform: scale(0.96); }

/* ─── 20. PAGE HERO IMAGES — parallax depth hint ─────────── */
.story-hero-bg img {
  transition: transform 0s;
  will-change: transform;
}

/* ─── 21. GOLD CURSOR DOT — diamond shine ───────────────── */
#cursor-dot {
  background: var(--gold);
  box-shadow: 0 0 6px rgba(200,169,110,0.6);
}
#cursor-ring {
  border-color: rgba(200,169,110,0.55);
}
#cursor-ring.expanded {
  border-color: rgba(200,169,110,0.8);
  background: rgba(200,169,110,0.06);
}

/* ============================================================
   JTC — Deepak Polish v4  |  Craft · Depth · Delight
   ============================================================ */

/* ── Custom Text Selection ────────────────────────────────── */
::selection {
  background: rgba(200, 169, 110, 0.28);
  color: var(--green-deep);
}

/* ── Custom Scrollbar (Webkit) ───────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ── Hero Bust — subtle continuous float ────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .hero-bust-frame {
    animation: bustFloat 6s ease-in-out infinite;
  }
  @keyframes bustFloat {
    0%, 100% { transform: translateY(0px); opacity: 1; }
    50%       { transform: translateY(-12px); opacity: 1; }
  }
}
/* Remove float when GSAP is actively controlling it */
.bust-gsap-active .hero-bust-frame,
.hero-bust-scene.bust-gsap-active .hero-bust-frame {
  animation: none !important;
}

/* ── Service Track Icon — rotate + glow ─────────────────── */
.service-track-icon {
  transition:
    background 0.28s,
    box-shadow 0.28s,
    transform 0.42s cubic-bezier(0.23,1,0.32,1);
}
.service-track:hover .service-track-icon {
  transform: scale(1.14) rotate(-6deg);
}

/* ── Trust Strip Numbers — shimmer sweep on hover ───────── */
.trust-strip-inner > div {
  cursor: default;
}
.trust-number {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.trust-number::after {
  content: '';
  position: absolute; top: 0; left: -120%; bottom: 0;
  width: 60%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0s;
}
.trust-strip-inner > div:hover .trust-number::after {
  left: 200%;
  transition: left 0.65s cubic-bezier(0.23,1,0.32,1);
}

/* ── Gold Divider Element ─────────────────────────────────── */
.gold-divider {
  display: flex; align-items: center; gap: 1.2rem;
  margin: 3rem 0;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,169,110,0.35), transparent);
}
.gold-divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Section Eyebrow — bolder gold line ──────────────────── */
.section-eyebrow::before {
  width: 40px; height: 1.5px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  transition: width 0.42s cubic-bezier(0.23,1,0.32,1);
}
.section-eyebrow:hover::before { width: 60px; }

/* ── Crop Cards — badge glow ─────────────────────────────── */
.crop-badge {
  transition: background 0.22s, box-shadow 0.22s;
}
.crop-card:hover .crop-badge {
  box-shadow: 0 0 0 3px rgba(200,169,110,0.18);
}

/* ── WhatsApp Float — enhanced pulsing ring ──────────────── */
.btn-wa-pulse::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(31,78,48,0.4);
  animation: waPulseRing 3.2s ease-out infinite;
}
@keyframes waPulseRing {
  0%   { transform: scale(1); opacity: 0.6; }
  60%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ── Founder Memorial — accent quote mark ───────────────── */
.founder-memorial-grid blockquote::before {
  content: '\201C';
  font-family: 'Playfair Display', var(--font-display);
  font-size: 5rem; line-height: 0.7;
  color: var(--gold); opacity: 0.25;
  float: left; margin-right: 0.3rem;
  vertical-align: -0.5rem;
}

/* ── Nav scrolled — tighter padding ──────────────────────── */
.nav.scrolled {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  transition: background var(--transition), box-shadow var(--transition),
              padding var(--transition);
}

/* ── Page Hero Caption — text reveal ────────────────────── */
.page-hero .hero-eyebrow,
.page-hero h1,
.page-hero .page-hero-sub {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 0.72s cubic-bezier(0.23,1,0.32,1) forwards;
}
.page-hero .hero-eyebrow { animation-delay: 0.1s; }
.page-hero h1            { animation-delay: 0.22s; }
.page-hero .page-hero-sub { animation-delay: 0.34s; }

@keyframes heroTextIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Stats numbers — pop on scroll (reinforces counter) ── */
[data-count] {
  display: inline-block;
  transition: transform 0.18s cubic-bezier(0.23,1,0.32,1);
}
[data-count]:hover { transform: scale(1.06); }

/* ── Image frames — gold corner accents on hover ─────────── */
.about-image-frame::before,
.about-image-frame::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s cubic-bezier(0.23,1,0.32,1);
  pointer-events: none; z-index: 3;
}
.about-image-frame::before {
  top: 10px; left: 10px;
  border-width: 2px 0 0 2px;
  transform: translate(-6px, -6px);
}
.about-image-frame::after {
  bottom: 10px; right: 10px;
  border-width: 0 2px 2px 0;
  transform: translate(6px, 6px);
}
.about-image-frame:hover::before,
.about-image-frame:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Nav Logo — shimmer glow on scroll ───────────────────── */
.nav.scrolled .nav-logo {
  text-shadow: 0 0 24px rgba(200,169,110,0.22);
}

/* ── Hero eyebrow line — animate on load ────────────────── */
@keyframes eyebrowGrow {
  from { width: 0; }
  to   { width: 40px; }
}
.hero-eyebrow-line {
  animation: eyebrowGrow 0.6s 0.4s cubic-bezier(0.23,1,0.32,1) both;
}

/* ── Intro / service page CTA section ───────────────────── */
.section-cta-block {
  text-align: center;
  padding: 1.5rem 0 0;
}
.section-cta-block .btn {
  min-width: 200px;
}

/* ── Animated gold border — hero stat separator on mobile ── */
@media (max-width: 480px) {
  .hero-stat-rule { display: none; }
  .hero-stat {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(200,169,110,0.15);
  }
  .hero-stat:last-child { border-bottom: none; }
}

/* ── Loading state for images ─────────────────────────────── */
img {
  background: linear-gradient(110deg, rgba(200,169,110,0.06) 0%, rgba(200,169,110,0.12) 50%, rgba(200,169,110,0.06) 100%);
  background-size: 200% 100%;
}
img.loaded { background: none; }

/* ── Card list items — gold dash hover ──────────────────── */
.service-track-list li {
  transition: transform 0.22s cubic-bezier(0.23,1,0.32,1);
}
.service-track-list li:hover { transform: translateX(4px); }

/* ── Bottom bar gold gradient ─────────────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(200,169,110,0.1);
  padding-top: 1.5rem;
  margin-top: 0;
}

/* ── Hero scroll cue line animate ───────────────────────── */
.hero-scroll-line {
  height: 0;
  animation: scrollLineGrow 1.2s 1.4s cubic-bezier(0.23,1,0.32,1) forwards;
}
@keyframes scrollLineGrow {
  to { height: 48px; }
}

/* ── Overall page focus ring ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   DEEPAK POLISH v5 — Final Impressions Layer
   ============================================================ */

/* ── Image: clear shimmer once loaded ────────────────────── */
img.loaded {
  background: none !important;
  animation: none !important;
}

/* ── Trust strip: gold line reveal on hover ─────────────── */
.trust-item {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.trust-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.38s cubic-bezier(0.23,1,0.32,1);
  border-radius: 1px;
}
.trust-item:hover::after { width: 55%; }

/* ── Trust number: warm glow on count finish ─────────────── */
.trust-number {
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.trust-item:hover .trust-number {
  color: var(--gold);
  text-shadow: 0 0 32px rgba(200,169,110,0.35);
}

/* ── Service track: icon spin+glow on card hover ─────────── */
.service-track-icon {
  will-change: transform;
}
.service-track-icon svg {
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1),
              color 0.32s ease;
}
.service-track:hover .service-track-icon svg {
  transform: scale(1.14) rotate(-8deg);
  color: var(--gold);
}

/* ── Service track link: underline draw ──────────────────── */
.service-track-link {
  position: relative;
}
.service-track-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.23,1,0.32,1);
}
.service-track-link:hover::after { transform: scaleX(1); }

/* ── Crop card: gold top bar reveal ──────────────────────── */
.crop-card { position: relative; }
.crop-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200,169,110,0.4));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.23,1,0.32,1);
}
.crop-card:hover::before { transform: scaleX(1); }

/* ── Timeline dot: living pulse ring ─────────────────────── */
.timeline-dot {
  position: relative;
}
.timeline-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,110,0.55);
  animation: dotRingPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes dotRingPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ── Timeline year: gold accent bar ─────────────────────── */
.timeline-card-year {
  position: relative;
  padding-bottom: 0.6rem;
}
.timeline-card-year::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 22px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── WA Band: warm breathing glow ───────────────────────── */
@keyframes waPulseGlow {
  0%, 100% { opacity: 0.14; }
  50%       { opacity: 0.28; }
}
.wa-band { position: relative; overflow: hidden; }
.wa-band::after {
  content: '';
  position: absolute;
  top: -60%; left: -20%;
  width: 80%; height: 220%;
  background: radial-gradient(ellipse, rgba(200,169,110,0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: waPulseGlow 4.5s ease-in-out infinite;
}

/* ── Footer Hindi tagline: warm gold ────────────────────── */
.footer-hindi {
  color: var(--gold);
  opacity: 0.82;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

/* ── Footer brand column: subtle divider ────────────────── */
.footer-brand {
  position: relative;
}
.footer-brand::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200,169,110,0.18) 30%,
    rgba(200,169,110,0.18) 70%,
    transparent
  );
}
@media (max-width: 768px) {
  .footer-brand::after { display: none; }
}

/* ── Value icon: scale on hover ──────────────────────────── */
.value-icon {
  transition: transform 0.42s cubic-bezier(0.23,1,0.32,1);
}
.value-card:hover .value-icon { transform: scale(1.14); }

/* ── Chairman seal: gold outer glow on hover ─────────────── */
.chairman-seal:hover .seal-ring {
  box-shadow: 0 0 0 4px rgba(200,169,110,0.14),
              0 0 48px rgba(200,169,110,0.12);
}

/* ── Scroll-top: gold shimmer ────────────────────────────── */
.scroll-top-btn {
  position: relative;
  overflow: hidden;
}
.scroll-top-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-20deg) translateX(-100%);
  transition: none;
}
.scroll-top-btn:hover::after {
  animation: shimmerSweep 0.52s cubic-bezier(0.23,1,0.32,1) forwards;
}
@keyframes shimmerSweep {
  to { transform: skewX(-20deg) translateX(500%); }
}

/* ── Crops quality callout: premium accent ───────────────── */
.crops-quality-callout {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  transition: border-color 0.3s ease;
}
.crops-quality-callout:hover { border-left-color: var(--gold-dark); }

/* ── Page hero: subtle bottom shadow blur ─────────────────── */
.page-hero {
  box-shadow: 0 8px 48px -8px rgba(12,40,24,0.22);
}

/* ── Nav CTA: refined ring pulse (desktop) ───────────────── */
@media (hover: hover) {
  .nav-cta { isolation: isolate; }
  .nav-cta::before {
    border-radius: 4px;
  }
}

/* ── Buyer type card: corner accent on hover ─────────────── */
.buyer-type-card {
  position: relative;
}
.buyer-type-card::after {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 16px; height: 16px;
  border-top: 1.5px solid rgba(200,169,110,0);
  border-right: 1.5px solid rgba(200,169,110,0);
  transition: border-color 0.35s ease, width 0.35s ease, height 0.35s ease;
}
.buyer-type-card:hover::after {
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  width: 24px; height: 24px;
}

/* ── Hero bust ring: colour shift layered on existing pulse ─ */
/* bustRingPulse (scale+opacity) lives in base; we only add border-color cycle */
@keyframes ringColorCycle {
  0%   { border-color: rgba(200,169,110,0.18); }
  50%  { border-color: rgba(200,169,110,0.38); }
  100% { border-color: rgba(200,169,110,0.18); }
}
.bust-ring-1 {
  animation: bustRingPulse 4s cubic-bezier(0.23,1,0.32,1) infinite 0s,
             ringColorCycle 8s ease-in-out infinite;
}
.bust-ring-2 {
  animation: bustRingPulse 4s cubic-bezier(0.23,1,0.32,1) infinite 1.8s,
             ringColorCycle 8s ease-in-out infinite 2s;
}

/* ── Section pad: subtle grain between sections ──────────── */
.section-pad + .section-pad {
  border-top: 1px solid rgba(200,169,110,0.08);
}

/* ── Timeline card memorial: refined look ─────────────────── */
.timeline-card-memorial {
  position: relative;
  padding-left: 1rem;
}
.timeline-card-memorial::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Form submit: active state ───────────────────────────── */
button[type="submit"]:active,
input[type="submit"]:active {
  transform: scale(0.97);
}

/* ── Anchor link underline: draw on hover ────────────────── */
.footer-links a {
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.28s cubic-bezier(0.23,1,0.32,1);
}
.footer-links a:hover::after { width: 100%; }


/* ═══════════════════════════════════════════════════════════════
   JTC v3 — New sections: Empanelment · Gallery · Testimonials
   + Animation upgrades: Odometer · Timeline scrub · Depth tilt
   + Floating WhatsApp button
   ═══════════════════════════════════════════════════════════════ */


/* ── GOVERNMENT EMPANELMENT STRIP ──────────────────────────── */
.empanelment-strip {
  background: var(--green-deep);
  padding: 2.75rem 0;
  border-top: 1px solid rgba(200,169,110,0.18);
  border-bottom: 1px solid rgba(200,169,110,0.18);
}

.empanelment-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.45);
  margin: 0 0 1.75rem;
}

.empanelment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.empanelment-logo-item {
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.empanelment-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(200,169,110,0.22);
  border-radius: 10px;
  background: rgba(200,169,110,0.04);
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: default;
  min-width: 9rem;
  text-align: center;
}

.empanelment-logo-block:hover {
  border-color: rgba(200,169,110,0.5);
  background: rgba(200,169,110,0.09);
}

/* Logo image variant — same visual container as text fallback */
.emp-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 9rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(200,169,110,0.22);
  border-radius: 10px;
  background: rgba(250,247,240,0.06);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.emp-logo-link:hover {
  border-color: rgba(200,169,110,0.5);
  background: rgba(250,247,240,0.12);
}
.emp-logo-img {
  max-height: 72px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
  background: #fff;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
}

.emp-logo-abbr {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.emp-logo-name {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(250,247,240,0.45);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.4;
}

.empanelment-divider {
  width: 1px;
  height: 3rem;
  background: rgba(200,169,110,0.18);
  flex-shrink: 0;
}

.empanelment-note {
  text-align: center;
  margin: 1.5rem 0 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(250,247,240,0.3);
  font-style: italic;
}

@media (max-width: 680px) {
  .empanelment-logos { gap: 1rem; flex-direction: column; }
  .empanelment-divider { display: none; }
  .empanelment-logo-item { padding: 0; }
  .empanelment-logo-block,
  .emp-logo-link { min-width: 12rem; }
}


/* ── MASONRY PHOTO GALLERY ─────────────────────────────────── */
.gallery-section {
  background: var(--cream);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #e0d9cc;
}

.gallery-item--tall  { grid-row: span 2; }
.gallery-item--wide  { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.23,1,0.32,1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 0.875rem;
  background: linear-gradient(transparent, rgba(10,20,10,0.62));
  color: rgba(250,247,240,0.92);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-note {
  text-align: center;
  margin: 1.75rem 0 0;
  font-size: 0.8rem;
  color: var(--green-deep);
  opacity: 0.55;
  font-style: italic;
}

@media (max-width: 860px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }
  .gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 500px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item--wide { grid-column: span 1; }
}


/* ── FARMER TESTIMONIALS ───────────────────────────────────── */
.testimonials-section {
  background: var(--green-deep);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(200,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(200,169,110,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.testimonials-section .section-eyebrow { color: var(--gold); opacity: 0.75; }
.testimonials-section .section-title   { color: var(--cream); }
.testimonials-section .section-sub     { color: rgba(250,247,240,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* 5th card: centre it in the 3-column grid */
.testimonial-card:nth-child(4) { grid-column: 1 / 3; }
.testimonial-card:nth-child(5) { grid-column: 3 / 4; }

.testimonial-card {
  background: rgba(250,247,240,0.04);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: 18px;
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  margin: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.23,1,0.32,1);
  overflow: hidden;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(200,169,110,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  background: rgba(250,247,240,0.07);
  border-color: rgba(200,169,110,0.38);
  transform: translateY(-4px);
}

.testimonial-card:hover::after { opacity: 1; }

.testimonial-quote-mark {
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  user-select: none;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(250,247,240,0.88);
  margin: 0 0 0.5rem;
  padding-top: 1.5rem;
}

.testimonial-translation {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(250,247,240,0.4);
  font-style: italic;
  padding-top: 0;
  margin-bottom: 0;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200,169,110,0.14);
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(200,169,110,0.14);
  border: 1px solid rgba(200,169,110,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(250,247,240,0.95);
  font-style: normal;
}

.testimonial-location {
  font-size: 0.72rem;
  color: rgba(250,247,240,0.45);
}

.testimonial-crop {
  font-size: 0.68rem;
  color: var(--gold);
  opacity: 0.7;
}

@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 560px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}


/* ── FLOATING WHATSAPP BUTTON ──────────────────────────────── */
.wa-float-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 8500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 0.8rem 1.25rem 0.8rem 1rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow:
    0 4px 20px rgba(37,211,102,0.45),
    0 2px 8px rgba(0,0,0,0.15);
  transition:
    transform 0.28s cubic-bezier(0.23,1,0.32,1),
    box-shadow 0.28s ease;
  /* Pop in after 1.5s so it doesn't compete with page load */
  animation: waFloatEntrance 0.55s cubic-bezier(0.23,1,0.32,1) 1.5s both;
  will-change: transform;
}

.wa-float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 28px rgba(37,211,102,0.55),
    0 2px 10px rgba(0,0,0,0.18);
}

.wa-float-btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.wa-float-label {
  white-space: nowrap;
}

@keyframes waFloatEntrance {
  from { opacity: 0; transform: translateY(24px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile: icon-only circle */
@media (max-width: 480px) {
  .wa-float-btn {
    border-radius: 50%;
    padding: 0.9rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .wa-float-label { display: none; }
}

/* Don't stack on top of mobile nav if open */
@media (max-width: 768px) {
  .nav-mobile.open ~ .wa-float-btn,
  body.overflow-hidden .wa-float-btn { opacity: 0; pointer-events: none; }
}


/* ── ODOMETER DIGIT COUNTER ────────────────────────────────── */
.trust-number.odometer-active {
  display: inline-flex !important;
  align-items: flex-end;
  overflow: visible;
  gap: 0;
}

.odometer-digit-wrap {
  display: inline-block;
  height: var(--odo-h, 1.05em);
  overflow: hidden;
  vertical-align: top;
  line-height: var(--odo-h, 1.05em);
}

.odometer-digit-inner {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.odometer-digit-char {
  display: block;
  height: var(--odo-h, 1.05em);
  line-height: var(--odo-h, 1.05em);
}

.odometer-suffix {
  font-size: 0.52em;
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.1em;
  margin-left: 0.06em;
}


/* ── TIMELINE SVG SCRUB LINE ───────────────────────────────── */
.timeline-scrub-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}

.timeline-scrub-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

/* On mobile the timeline is single-column so scrub line is hidden */
@media (max-width: 768px) {
  .timeline-scrub-wrap { display: none; }
}


/* ── CROP CARD DEPTH PARALLAX BACKGROUND ───────────────────── */
.crop-card {
  position: relative;
  overflow: hidden;
}

.crop-card-depth-bg {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(200,169,110,0.11) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
}

/* Ensure all crop-card children render above the depth bg */
.crop-card > *:not(.crop-card-depth-bg) {
  position: relative;
  z-index: 1;
}



/* ============================================================
   POLISH LAYER — Emil Kowalski Principles Applied
   1. Strong custom easing  2. Fixed transition:all  3. Active
   states  4. Hover guards  5. prefers-reduced-motion  6. Focus
   rings  7. Ken Burns  8. Crop group reveals
   ============================================================ */

/* -- 1. Strong easing variables (Emil: built-in easings too weak) */
:root {
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

/* -- 2. Replace transition:all → specific properties ───────── */

/* hamburger bars: background + geometric transform + fade */
.nav-hamburger span {
  transition: background 150ms var(--ease-out-strong),
              transform  220ms var(--ease-out-strong),
              opacity    150ms linear;
}

/* service icon box: only background and scale change */
.service-track-icon {
  transition: background var(--transition), transform var(--transition);
}

/* crops tab (home page) */
.crops-tab {
  transition: color var(--transition-fast), background var(--transition-fast);
}

/* crop chip cards */
.crop-chip {
  transition: border-color var(--transition-fast),
              transform    var(--transition-fast),
              box-shadow   var(--transition-fast);
}

/* variety tags */
.variety-tag {
  transition: background    var(--transition-fast),
              border-color  var(--transition-fast),
              color          var(--transition-fast);
}

/* wa-band button */
.wa-btn {
  transition: background  var(--transition-fast),
              transform   var(--transition-fast),
              box-shadow  var(--transition-fast);
}

/* accordion icon circle */
.accordion-icon {
  transition: background    var(--transition-fast),
              border-color  var(--transition-fast),
              color          var(--transition-fast),
              transform     var(--transition-fast);
}

/* contact/service form tabs */
.form-tab {
  transition: color var(--transition-fast), background var(--transition-fast);
}

/* crops page crop tags */
.crop-tag {
  transition: background    var(--transition-fast),
              border-color  var(--transition-fast),
              color          var(--transition-fast);
}

/* CTA band WA button variants */
.btn-wa {
  transition: background  var(--transition-fast),
              transform   var(--transition-fast),
              box-shadow  var(--transition-fast);
}
.btn-wa-outline {
  transition: background    var(--transition-fast),
              border-color  var(--transition-fast),
              transform     var(--transition-fast);
}

/* accordion trigger icon (services page) */
.accordion-trigger-icon {
  transition: background    var(--transition-fast),
              border-color  var(--transition-fast),
              transform     var(--transition-fast);
}

/* buyer type icon box */
.buyer-type-icon {
  transition: background var(--transition), color var(--transition);
}

/* -- 3. Button :active scale states ────────────────────────── */
/* Emil: every pressable element must scale(0.97) on :active   */
/* This gives instant feedback — the UI is listening           */
.btn-primary:active,
.btn-outline:active,
.btn-wa:active,
.btn-wa-outline:active,
.wa-btn:active,
.nav-cta:active,
.crops-tab:active,
.form-tab:active {
  transform: scale(0.97) !important;
  transition-duration: 100ms !important;
}

/* -- 4. Hover guards: only real pointer devices ────────────── */
/* Emil: touch devices trigger :hover on tap, causing false    */
/* positives. Gate all translate/scale hovers behind this query */

/* Remove untouched hover transforms on touch devices */
@media (hover: none) {
  .crop-card:hover,
  .crop-chip:hover,
  .buyer-type-card:hover,
  .service-track:hover,
  .wa-btn:hover,
  .btn-wa:hover,
  .btn-wa-outline:hover { transform: none; box-shadow: none; }
}

/* Ensure card hover transforms only run on desktop */
@media (hover: hover) and (pointer: fine) {
  .emp-logo-img {
    transition: opacity 0.3s ease, transform 0.28s var(--ease-out-strong);
  }
  .emp-logo-link:hover .emp-logo-img {
    opacity: 1;
    transform: scale(1.05);
  }
  /* Crop group hero: hover zooms in slightly */
  .crops-section-group:hover .crops-group-img {
    transform: scale(1.05);
    transition: transform 0.72s var(--ease-out-strong);
  }
}

/* -- 5. Focus rings ────────────────────────────────────────── */
/* WCAG 2.4.7: visible focus for keyboard nav                  */
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-wa:focus-visible,
.btn-wa-outline:focus-visible,
.wa-btn:focus-visible,
.nav-cta:focus-visible,
.crops-tab:focus-visible,
.form-tab:focus-visible,
.emp-logo-link:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* -- 6. Ken Burns on crop hero images ──────────────────────── */
/* Images start at scale(1.07); drift to scale(1.0) once loaded */
/* Creates a cinematic reveal when the image lazy-loads          */
.crops-group-img {
  transition: opacity 0.4s ease;
}
.crops-group-img.loaded {
  opacity: 1;
}

/* -- 7. Crop hero container: slide-up on scroll reveal ─────── */
/* Works via IntersectionObserver — add 'reveal' class in HTML  */
/* or let GSAP's initImageReveals cover the img itself          */
.crops-group-hero {
  will-change: transform, opacity;
}

/* -- 8. prefers-reduced-motion ─────────────────────────────── */
/* Emil: reduced motion ≠ no motion. Keep opacity, remove move. */
@media (prefers-reduced-motion: reduce) {
  /* Stop marquee */
  .marquee-track { animation-play-state: paused !important; }

  /* Stop Ken Burns */
  .crops-group-img {
    animation: none;
    transform: scale(1.0) !important;
    transition: opacity 0.3s ease !important;
  }

  /* Stop scroll pulse dot */
  .hero-scroll-line { animation: none !important; }

  /* Reveal any GSAP-hidden elements immediately */
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .crop-card, .buyer-type-card { opacity: 1 !important; }

  /* Smooth scroll to instant */
  html { scroll-behavior: auto !important; }

  /* All remaining transitions snap */
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* -- 9. Crops panel fade-in improvement ────────────────────── */
/* GSAP already handles opacity/y on tab switch; add a subtle   */
/* clip-path reveal from top so it feels like a page flip       */
.crops-panel {
  transform-origin: top center;
}

/* -- 10. Mobile nav language switcher ──────────────────────── */
.nav-mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem 2.5rem;
  border-top: 1px solid rgba(31,78,48,0.1);
  margin-top: auto;
}
.nav-mobile-lang-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-right: 0.25rem;
}
.nav-mobile-lang .lang-btn {
  background: rgba(31,78,48,0.07);
  border: 1px solid rgba(31,78,48,0.25);
  color: var(--green-deep);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  transition: background var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast);
}
.nav-mobile-lang .lang-btn:hover,
.nav-mobile-lang .lang-btn.lang-btn--active {
  background: var(--green-deep);
  color: var(--gold);
  border-color: var(--green-deep);
}
.nav-mobile-lang .lang-btn:active {
  transform: scale(0.95);
  transition-duration: 80ms;
}
/* Mobile / touch: show founder bust + motion (CSS fallback if JS is slow) */
@media (max-width: 900px) {
  .hero.hero-home {
    overflow: visible;
    min-height: 100svh;
    height: auto;
  }

  .hero-bust-col {
    display: flex !important;
    visibility: visible !important;
    margin-bottom: 0.5rem;
  }

  .hero-bust-img {
    width: clamp(180px, 52vw, 260px) !important;
    clip-path: none !important;
    opacity: 1 !important;
  }

  .hero-bust-scene:not(.bust-entered) .hero-bust-frame {
    animation: bustEnter 0.9s ease forwards, bustFloat 6s ease-in-out 0.9s infinite;
  }

  .hero-bust-scene.bust-entered .hero-bust-frame {
    opacity: 1;
    animation: bustFloat 6s ease-in-out infinite;
  }

  .hero-bust-scene:not(.bust-entered) .bust-caption {
    animation: bustCaptionIn 0.75s ease forwards 0.55s;
  }

  .hero-bust-scene.bust-entered .bust-caption,
  .bust-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bustCaptionIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .nav-logo-mark {
    max-width: 9.5rem;
    white-space: normal;
  }
}
