/* =============================================
   KRISHNA FRESH WORLD — style.css
   Shared stylesheet for all pages
   ============================================= */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* === CUSTOM PROPERTIES === */
:root {
  --green:        #2D6A4F;
  --green-dark:   #1B4332;
  --green-light:  #52B788;
  --gold:         #E9A23B;
  --gold-light:   #F4C574;
  --red:          #8B2020;
  --bg:           #F9F7F2;
  --bg-alt:       #EEE9DF;
  --text:         #1C1C1E;
  --text-muted:   #6B6B6E;
  --white:        #FFFFFF;
  --border:       rgba(45, 106, 79, 0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-script:  'Italianno', cursive;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --container: 1180px;
  --radius:    6px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
::selection { background: var(--gold-light); color: var(--text); }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section-pad    { padding: var(--space-xl) 0; }
.section-pad-sm { padding: var(--space-lg) 0; }
.bg-off         { background-color: var(--bg-alt); }
.text-center    { text-align: center; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem);   font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-muted); margin-bottom: var(--space-sm); line-height: 1.75; }
p:last-child { margin-bottom: 0; }

.section-header { text-align: center; margin-bottom: var(--space-lg); }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--green); }
.section-title.light { color: var(--white); }
.section-cta { text-align: center; margin-top: var(--space-md); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--text);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 162, 59, 0.35);
}
.btn-light {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--white);
}
.btn-light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-nav {
  background: var(--gold);
  color: var(--text);
  border: 2px solid var(--gold);
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
}
.btn-nav:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-green-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-green-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* === LOGO === */
.nav-logo {
  height: 110px;
  width: auto;
  display: block;
  transition: height var(--transition);
}
.site-header.scrolled .nav-logo {
  height: 88px;
}
.footer-logo {
  height: 108px;
  width: auto;
  display: block;
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
}

/* === SITE HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0.9rem 0;
}
.site-header.scrolled .brand-main { color: var(--green-dark); }
.site-header.scrolled .brand-sub  { color: var(--text-muted); }
.site-header.scrolled .nav-links a { color: var(--text); }
.site-header.scrolled .nav-links a:hover { color: var(--green); }
.site-header.scrolled .nav-toggle span { background: var(--text); }

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-brand { flex: 1; }
.brand-main {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  transition: color var(--transition);
}
.brand-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1B2A4A;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 14px 10px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile full-screen nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn-nav {
  margin-top: 1rem;
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
}
.nav-mobile-close {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  cursor: pointer;
}

/* === HERO === */
.hero {
  min-height: 78vh;
  position: relative;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 50, 35, 0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 11rem var(--space-md) 6rem;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-location {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 1.4rem;
}
.hero-title {
  font-family: var(--font-script);
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin: 0 auto 0;
  max-width: 900px;
  position: relative;
}
.hero-title::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 280%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.65) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.hero-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--white);
}
.hero-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--gold) 25%, var(--gold) 75%, transparent);
  margin: 0.6rem auto 1.75rem;
  border-radius: 2px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  line-height: 1.8;
  margin: 0 auto 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* === DUAL COMPANY === */
.dual-company { background: var(--bg); }
.dual-company-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
}
.company-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}
.company-kfw {
  background: linear-gradient(145deg, #e5f2eb, #d2ead9);
  border: 1px solid rgba(45, 106, 79, 0.22);
}
.company-skb {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.company-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(45, 106, 79, 0.1);
  border-radius: 20px;
  padding: 0.25rem 0.8rem;
  margin-bottom: 0.8rem;
}
.company-card h2 { font-size: 1.65rem; color: var(--green-dark); margin-bottom: 0.75rem; }
.company-card p  { font-size: 0.9rem; color: var(--text-muted); }
.dual-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
}
.dual-tagline {
  text-align: center;
  margin-top: var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green);
}
.dual-tagline::before,
.dual-tagline::after {
  content: '——';
  margin: 0 0.75rem;
  color: var(--gold);
  font-style: normal;
}

/* === HOME PRODUCTS GRID === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
  gap: 1.5rem;
  justify-content: center;
}
.product-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 215px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
}
.product-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.product-card-body h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.35rem; }
.product-card-body p  { font-size: 0.845rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: linear-gradient(145deg, #fff9ee, #fef0d0);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  border: 2px solid rgba(233, 162, 59, 0.28);
}
.feature-card h3 { font-size: 0.98rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.85rem; margin: 0; line-height: 1.6; }

/* === FEATURE CARDS — IMAGE BACKGROUND === */
.feature-card-img {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  background-size: cover;
  background-position: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card-img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-farm   { background-image: url('../images/wwu1.webp'); }
.feature-pack   { background-image: url('../images/wwu2.webp'); }
.feature-global { background-image: url('../images/wwu3.webp'); }
.feature-docs   { background-image: url('../images/wwu4.webp'); }
.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 25%, rgba(0,0,0,0.80) 100%);
}
.feature-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem;
  z-index: 1;
}
.feature-card-img h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.feature-card-img p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0;
}

/* === STATS BAR === */
.stats-bar { background: var(--green-dark); padding: var(--space-lg) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--green);
  padding: var(--space-lg) 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: var(--space-sm); }
.cta-banner p  { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto var(--space-md); font-size: 1rem; }

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 9.5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* === PRODUCTS PAGE === */
.product-full {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}
.product-full:nth-child(even) { background: var(--bg-alt); }
.product-full:last-child { border-bottom: none; }
.product-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.product-full.reverse .product-full-grid { direction: rtl; }
.product-full.reverse .product-full-grid > * { direction: ltr; }

.product-full-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.product-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s ease;
}
.product-full-img:hover img { transform: scale(1.04); }
.product-badge {
  display: inline-block;
  background: rgba(45, 106, 79, 0.1);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}
.product-full-content h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.product-scientific {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.product-full-content > p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}
.spec-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}
.spec-label {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.2rem;
}
.spec-value {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
}
.product-cta { margin-top: 2rem; display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* === PRODUCTS PAGE — QUALITY PARAMETERS === */
.quality-table-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.quality-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.quality-table thead tr { background: var(--green-dark); }
.quality-table thead th {
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
}
.quality-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.quality-table tbody tr:last-child { border-bottom: none; }
.quality-table tbody tr:hover { background: #f5f0e5; }
.quality-table tbody td {
  padding: 0.9rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.quality-table tbody td:first-child {
  font-weight: 600;
  color: var(--green-dark);
}

/* === PRODUCTS PAGE — CONTAINER CAPACITY === */
.capacity-bar {
  background: var(--green-dark);
  padding: var(--space-lg) 0;
}
.capacity-bar .section-header { margin-bottom: var(--space-md); }
.capacity-bar .section-eyebrow { color: var(--gold); }
.capacity-bar .section-title { color: var(--white); }
.capacity-bar .section-title em { font-style: italic; color: var(--gold); }
.capacity-bar .section-header p { color: rgba(255, 255, 255, 0.65); }
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.capacity-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--transition), transform var(--transition);
}
.capacity-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}
.capacity-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 162, 59, 0.15);
  border-radius: 50%;
  color: var(--gold);
  border: 1.5px solid rgba(233, 162, 59, 0.3);
}
.capacity-icon svg { width: 26px; height: 26px; display: block; }
.capacity-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.capacity-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}
.capacity-note {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

/* === PRODUCTS PAGE — FAQ === */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: rgba(45, 106, 79, 0.3);
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-item.open .faq-question { color: var(--green); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--green);
  transition: transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon svg { width: 100%; height: 100%; display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}
.faq-answer-inner p {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--text-muted);
  margin: 0;
  padding-top: 1rem;
}

/* === ABOUT PAGE === */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-content .section-eyebrow { display: block; margin-bottom: 0.5rem; }
.about-intro-content h2 { color: var(--green-dark); margin-bottom: 1rem; }
.about-intro-content p  { font-size: 0.95rem; }

.about-entity { padding: var(--space-xl) 0; border-top: 1px solid var(--border); }
.entity-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.entity-identity { position: sticky; top: 7rem; }
.entity-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.entity-identity h2 { font-size: 1.7rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.entity-prop { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }
.entity-content p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.2rem; }
.entity-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: var(--space-md);
}
.highlight-item {
  background: var(--bg-alt);
  border-left: 3px solid var(--green);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: border-color var(--transition), background var(--transition);
}
.highlight-item:hover { border-color: var(--gold); background: #f5f0e5; }
.highlight-item h4 { font-size: 0.86rem; color: var(--green-dark); margin-bottom: 0.25rem; }
.highlight-item p  { font-size: 0.82rem; margin: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: linear-gradient(145deg, #fff9ee, #fef0d0);
  border-radius: 10px;
  border: 1.5px solid rgba(233, 162, 59, 0.28);
}
.value-icon svg { width: 24px; height: 24px; display: block; }
.value-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.86rem; margin: 0; }

/* === FORMS === */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}
.form-sidebar h2 { color: var(--green-dark); margin-bottom: 0.75rem; }
.form-sidebar > p { font-size: 0.95rem; }
.form-info-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.form-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.form-info-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}
.form-info-icon svg { width: 20px; height: 20px; display: block; }
.form-info-text h4 { font-size: 0.86rem; color: var(--green-dark); margin-bottom: 0.15rem; }
.form-info-text p  { font-size: 0.82rem; margin: 0; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card h3 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  background-color: var(--bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit .btn { width: 100%; padding: 1rem; font-size: 0.95rem; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }
.form-success { display: none; text-align: center; padding: var(--space-lg) var(--space-md); }
.form-success.show { display: block; }
.success-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.form-success h3 { color: var(--green); margin-bottom: 0.5rem; }
.form-success p  { font-size: 0.95rem; }

/* === CONTACT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { color: var(--green-dark); margin-bottom: 0.75rem; }
.contact-info > p { font-size: 0.95rem; }
.contact-items { margin-top: var(--space-md); display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}
.contact-icon svg { width: 22px; height: 22px; display: block; }
.contact-item-text h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-item-text p  { font-size: 0.9rem; margin: 0; }
.placeholder-note { font-size: 0.75rem; color: var(--gold); font-style: italic; }
.contact-map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 220px;
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.contact-map-placeholder span { font-size: 2rem; }
.map-placeholder-icon svg { width: 32px; height: 32px; display: block; }

/* === CONTACT MAP EMBED === */
.contact-map-embed {
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-map-embed iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: 0;
}

/* === FOOTER === */
.site-footer { background: var(--green-dark); padding: var(--space-xl) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .brand-main { color: var(--white); font-size: 1.45rem; }
.footer-brand .brand-sub  { color: rgba(255, 255, 255, 0.45); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.875rem; max-width: 290px; line-height: 1.7; }
.footer-divider { width: 32px; height: 2px; background: var(--gold); border-radius: 2px; margin: 1.1rem 0; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-line { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.75rem; }
.footer-contact-line .fc-icon { display: flex; align-items: center; justify-content: center; margin-top: 0.1rem; flex-shrink: 0; }
.footer-contact-line .fc-icon svg { width: 15px; height: 15px; display: block; color: var(--gold); }
.footer-contact-line .fc-text { font-size: 0.875rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--transition); }
.footer-contact-line a.fc-text:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.775rem; color: rgba(255,255,255,0.35); margin: 0; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === WHY IMPORT FROM INDIA === */
.why-import-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-import-content .section-eyebrow { display: block; margin-bottom: 0.5rem; }
.why-import-content h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  color: var(--text);
  margin-bottom: 0.9rem;
  line-height: 1.15;
}
.why-import-content > p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.why-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-feature-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.why-feature-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(45, 106, 79, 0.22);
}
.why-feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, #fff9ee, #fef0d0);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(233, 162, 59, 0.28);
}
.why-feature-text h4 {
  font-size: 0.82rem;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
  line-height: 1.3;
  font-family: var(--font-body);
}
.why-feature-text p {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.why-import-img-wrap { position: relative; }
.why-import-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}
.shelf-life-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  min-width: 110px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  z-index: 2;
}
.shelf-life-icon   { font-size: 1.1rem; margin-bottom: 0.2rem; }
.shelf-life-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.shelf-life-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* === HOMEPAGE PRODUCT FEATURE === */
.product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-top: var(--space-lg);
}
.product-feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.product-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s ease;
}
.product-feature-img:hover img { transform: scale(1.04); }
.product-feature-content h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.product-feature-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* === HERO USP STRIP === */
.hero-usp-strip {
  background: var(--green-dark);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.hero-usp-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: usp-scroll 28s linear infinite;
}
.hero-usp-track:hover { animation-play-state: paused; }
@keyframes usp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero-usp-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 2.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.usp-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-icon svg { width: 100%; height: 100%; display: block; }
.hero-usp-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.03em;
}
.hero-usp-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

/* === FROM FARM TO PORT === */
.process-steps {
  display: flex;
  align-items: flex-start;
  margin-top: var(--space-lg);
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}
.process-step-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  border: 3px solid var(--gold);
  box-shadow: 0 4px 18px rgba(45, 106, 79, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.process-step-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-step-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.process-step-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: var(--font-body);
  margin: 0;
}
.process-step-desc {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.process-connector {
  flex: 0 0 32px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 6px,
    transparent 6px,
    transparent 12px
  );
  margin-top: 54px;
  flex-shrink: 0;
}

/* === INFO TRIO SECTION === */
.info-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}
.info-trio-col .section-eyebrow { display: block; margin-bottom: 0.5rem; }
.info-trio-col h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 0.7rem;
}
.info-trio-col > p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Market Tags */
.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.market-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 0.28rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: default;
}
.market-tag:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* Cert Badges */
.cert-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cert-badge:hover {
  border-color: var(--green-light);
  box-shadow: 0 2px 10px rgba(45, 106, 79, 0.1);
}
.cert-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-icon svg { width: 100%; height: 100%; display: block; }
.cert-name { font-size: 0.72rem; font-weight: 600; color: var(--text); line-height: 1.3; }

/* Packaging Types */
.packaging-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.packaging-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 0.75rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.packaging-type:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}
.packaging-icon {
  width: 32px;
  height: 32px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.packaging-icon svg { width: 100%; height: 100%; display: block; }
.packaging-label { font-size: 0.72rem; font-weight: 600; color: var(--green-dark); line-height: 1.3; }

/* Trio Column Link */
.trio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
  transition: color var(--transition), gap var(--transition);
}
.trio-link:hover { color: var(--green-dark); gap: 0.55rem; }

/* Trio Icon Wrap */
.trio-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--green), var(--green-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.28);
}
.trio-icon-wrap svg { width: 24px; height: 24px; display: block; }

/* Extra reveal delays for process steps */
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* === FOUNDER SECTION === */
.founder-section { border-top: 1px solid var(--border); }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 780px;
}
.founder-img-wrap { position: relative; }
.founder-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
}
.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.founder-sig-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: var(--shadow);
}
.founder-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.founder-name-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}
.founder-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.founder-content .section-eyebrow { display: block; margin-bottom: 0.5rem; }
.founder-content h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.founder-content p { font-size: 0.95rem; line-height: 1.8; }

/* === PROMISE BANNER === */
.promise-banner {
  background: var(--green-dark);
  padding: var(--space-lg) 0;
}
.promise-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: center;
}
.promise-heading h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--white);
  line-height: 1.2;
}
.promise-heading h2 em {
  font-style: italic;
  color: var(--gold);
}
.promise-items {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  flex: 1;
}
.promise-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.promise-icon svg { width: 22px; height: 22px; display: block; }
.promise-label {
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .footer-brand    { grid-column: 1 / -1; }
  .entity-grid     { grid-template-columns: 1fr; }
  .entity-identity { position: static; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .entity-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .dual-company-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .dual-divider { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-full-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-full.reverse .product-full-grid { direction: ltr; }
  .form-layout { grid-template-columns: 1fr; gap: var(--space-lg); }
  .contact-layout { grid-template-columns: 1fr; gap: var(--space-lg); }
}
@media (max-width: 768px) {
  :root { --space-lg: 2.75rem; --space-xl: 4.5rem; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .products-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .product-specs { grid-template-columns: 1fr; }
  .product-cta { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-scroll-hint { display: none; }
  .hero { background-attachment: scroll; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 7rem; padding-bottom: 4rem; }
  .page-hero    { padding: 7rem 0 3rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  .form-card { padding: var(--space-md); }
  .company-card { padding: var(--space-md) 1.25rem; }
  .features-grid { grid-template-columns: 1fr; }
}

/* === RESPONSIVE — NEW SECTIONS === */
@media (max-width: 1080px) {
  .process-step-img    { width: 88px; height: 88px; }
  .process-step-number { font-size: 1.4rem; }
  .process-connector   { margin-top: 43px; flex: 0 0 20px; }
  .info-trio-grid      { gap: 2rem; }
  .why-import-grid     { gap: 3rem; }
}
@media (max-width: 900px) {
  .info-trio-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps         { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-connector     { display: none; }
  .why-import-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .why-import-img-wrap   { order: -1; }
  .why-import-img-wrap img { height: 320px; }
  .shelf-life-badge      { bottom: 1rem; right: 1rem; }
  .product-feature-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .process-steps           { grid-template-columns: repeat(2, 1fr); }
  .why-feature-grid        { grid-template-columns: 1fr; }
  .why-import-img-wrap img { height: 260px; }
  .product-feature-cta     { flex-direction: column; align-items: flex-start; }
  .feature-card-img        { height: 320px; }
}
@media (max-width: 480px) {
  .process-steps   { grid-template-columns: 1fr; }
  .packaging-types { grid-template-columns: 1fr; }
  .cert-badges     { grid-template-columns: 1fr; }
}

/* === RESPONSIVE — PRODUCTS PAGE EXPANDED === */
@media (max-width: 768px) {
  .capacity-grid { grid-template-columns: 1fr; gap: 1rem; }
  .capacity-card { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .quality-table thead th,
  .quality-table tbody td { padding: 0.75rem 1rem; font-size: 0.82rem; }
  .faq-question { font-size: 0.85rem; padding: 1rem 1.25rem; }
  .faq-answer-inner { padding: 0 1.25rem 1.1rem; }
}

/* === RESPONSIVE — ABOUT PAGE === */
@media (max-width: 900px) {
  .founder-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-img    { aspect-ratio: 4 / 3; }
  .promise-grid   { grid-template-columns: 1fr; gap: var(--space-md); }
  .promise-items  { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .promise-item   { flex: 0 0 calc(33.33% - 1.5rem); }
}
@media (max-width: 768px) {
  .promise-item { flex: 0 0 calc(50% - 1.5rem); }
}
@media (max-width: 480px) {
  .promise-item {
    flex: 0 0 100%;
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 1rem;
  }
}
