/* ===========================
   RISE SUBSTRATES – Main CSS
   =========================== */

/* Cause font – custom title typeface */
@font-face {
  font-family: 'Cause';
  src: url('../fonts/cause-variable-font-wght.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #120d0a;
  --dark-2: #1a130f;
  --dark-3: #231a14;
  --dark-card: #2c2019;
  --green: #c68a4c;
  --green-mid: #b07d4f;
  --green-muted: #8c5d37;
  --green-dim: #543821;
  --text: #efe8e2;
  --text-muted: #bda390;
  --text-dim: #000000;
  --white: #ffffff;
  --border: rgba(198,138,76,0.15);
  --font-title: 'Bricolage Grotesque', sans-serif;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }

/* Global Headings Consistency Override */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.cta-title,
.modal-title,
.contact-section-title,
.crops-section-title,
.crops-showcase h2,
.timeline-title,
.eco-features h2,
.catalog-section h2,
.pdp-hero-title,
.pdp-crops-title,
.pdp-other-title,
.pdp-cta-title,
.crops-hero-title,
.eco-hero-title,
.proc-hero-title,
.products-page-hero h1,
.about-page-hero h1,
.contact-page-hero h1,
.category-title,
.teaser-title,
.section-title-custom,
.eco-card-title,
.contact-info-panel h3,
.pdp-spec-card h3,
.proc-step-content h3,
.modal-success h3,
.crop-detail-name,
.pdp-other-card-name {
  font-family: var(--font-title) !important;
  font-weight: 400 !important;
}

/* Enforced Heading Size Hierarchy */
h1, .pdp-hero-title, .crops-hero-title, .eco-hero-title, .proc-hero-title, .products-page-hero h1, .about-page-hero h1, .contact-page-hero h1 {
  font-size: clamp(32px, 5vw, 56px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.5px !important;
}
/* Homepage Hero title custom exception */
.hero-title {
  font-size: clamp(38px, 5vw, 72px) !important;
}

h2, .section-title, .category-title, .teaser-title, .section-title-custom, .pdp-crops-title, .pdp-other-title, .pdp-cta-title {
  font-size: clamp(28px, 4vw, 42px) !important;
  line-height: 1.2 !important;
}

h3, .eco-card-title, .contact-info-panel h3, .pdp-spec-card h3, .proc-step-content h3, .modal-success h3 {
  font-size: 22px !important;
  line-height: 1.3 !important;
}

h4, .crop-card h4, .pack-card h4, .crop-detail-name, .pdp-other-card-name {
  font-size: 20px !important;
  line-height: 1.4 !important;
}

h5 {
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 16px 0 16px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: #ffffff;
}
.btn-primary:hover { background: #d4a373; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(198,138,76,0.35); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-green {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline-green:hover { background: var(--green); color: var(--dark); }

/* SECTION TITLES */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 19px;
  max-width: 580px;
}
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-header { margin-bottom: 56px; }

/* ======= HEADER ======= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e3ded6;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img { height: 85px; width: auto; object-fit: contain; }
.logo-text {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #381e0f;
}
.logo-accent { color: var(--green-mid); }
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li { position: relative; }
.nav-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  padding: 8px 12px;
  border-radius: 3px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover { color: #381e0f; }
.arrow { font-size: 10px; }
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e3ded6;
  border-radius: 12px;
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 36px rgba(8,15,8,0.08);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.dropdown a:hover {
  color: #381e0f;
  background: #f5ede4;
  border-left-color: var(--green-mid);
  padding-left: 24px;
}
.site-header .header-cta {
  margin-left: 16px;
  padding: 10px 22px;
  font-size: 12px;
  background: var(--green);
  color: #ffffff !important;
}
.site-header .header-cta:hover {
  background: #d4a373;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 138, 76, 0.35);
  color: #ffffff !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #381e0f; transition: all 0.3s; border-radius: 2px; }

/* ======= HERO ======= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f5ede4;
}
.hero-bg { display: none; }
.hero-img { display: none; }
.hero-overlay { display: none; }

/* Split layout */
.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-carousel-wrap {
  flex: 0 0 480px;
  position: relative;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-mid);
  border: none;
  padding: 0;
  padding-left: 22px;
  margin-bottom: 24px;
  position: relative;
}
.hero-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--green-mid);
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: #381e0f;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-accent { color: var(--green-mid); }
.hero-sub {
  font-size: 19px;
  color: #000000;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-outline {
  border-color: #381e0f;
  color: #381e0f;
}
.hero .btn-outline:hover {
  background: #381e0f;
  color: var(--white);
}

/* Carousel container — pinched corners matching buttons */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 2px solid rgba(176,125,79,0.15);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel dots */
.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(176,125,79,0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active,
.carousel-dot:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: scale(1.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--green-mid), transparent); }
.scroll-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #8b7d72; font-family: var(--font-head); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ======= STATS BAR ======= */
.stats-bar {
  background: #ffffff;
  border-top: 1px solid #e3ded6;
  border-bottom: 1px solid #e3ded6;
  padding: 32px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 48px;
  text-align: center;
}
.stat-item strong {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--green-mid);
  line-height: 1;
}
.stat-item span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  margin-top: 6px;
  font-family: var(--font-head);
}
.stat-divider { width: 1px; height: 50px; background: #d4ddd5; }

/* ======= ABOUT (WHITE) ======= */
.about-section { padding: 100px 0; background: #ffffff; }
.about-section .section-title { color: #381e0f; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img { border-radius: 40px 0 40px 0; height: 520px; object-fit: cover; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 4px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(176,125,79,0.35);
}
.badge-num { display: block; font-family: var(--font-head); font-size: 42px; font-weight: 900; line-height: 1; }
.badge-label { display: block; font-family: var(--font-head); font-size: 12px; font-weight: 700; line-height: 1.3; margin-top: 4px; }
.about-lead {
  font-size: 20px;
  font-weight: 700;
  color: #381e0f;
  margin-bottom: 18px;
  line-height: 1.5;
}
.about-body { color: #000000; margin-bottom: 16px; }
.about-content .btn { margin-top: 12px; }

/* ======= WHAT WE DO (WHITE) ======= */
.what-section { padding: 100px 0; background: #fbf9f6; }
.what-section .section-title { color: #381e0f; }
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.what-body { color: #000000; margin-bottom: 36px; font-size: 19px; }
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  color: var(--green-mid);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}
.feature-item strong { display: block; color: #381e0f; font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feature-item p { color: #000000; font-size: 15.5px; margin: 0; }
.what-img { border-radius: 40px 0 40px 0; height: 480px; object-fit: cover; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

/* ======= CROPS (LIGHT) ======= */
.crops-section { padding: 100px 0; background: #ffffff; }
.crops-section .section-title { color: #381e0f; }
.crops-section .section-sub { color: #000000; }
.crops-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e2d7c9;
  padding-bottom: 0;
}
.crop-tab {
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.25s;
}
.crop-tab.active, .crop-tab:hover { color: var(--green-mid); border-bottom-color: var(--green-mid); }
.crops-panel { display: none; }
.crops-panel.active { display: block; }
.crops-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.crop-card {
  background: #fbf9f6;
  border: 1px solid #e2d7c9;
  border-radius: 6px;
  padding: 28px 22px;
  transition: all 0.3s ease;
}
.crop-card:hover { border-color: var(--green-mid); transform: translateY(-4px); background: #f5ede4; box-shadow: 0 8px 24px rgba(176,125,79,0.08); }
.crop-icon { font-size: 56px; margin-bottom: 16px; }
.crop-card h4 { font-family: var(--font-title); font-size: 21px; font-weight: 400; color: #381e0f; margin-bottom: 8px; }
.crop-card p { font-size: 14.5px; color: #000000; line-height: 1.6; }
.crops-bottom-img { margin-top: 56px; border-radius: 40px 0 40px 0; overflow: hidden; height: 380px; }
.crops-showcase-img { width: 100%; height: 100%; object-fit: cover; }

/* ======= PRODUCTS (WHITE) ======= */
.products-section { padding: 100px 0; background: #fbf9f6; }
.products-section .section-title { color: #381e0f; }
.products-section .section-sub { color: #000000; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: #ffffff;
  border: 1px solid #e2d7c9;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-card:hover { transform: translateY(-6px); border-color: var(--green-mid); box-shadow: 0 16px 50px rgba(176,125,79,0.1); }
.product-card.featured { border-color: var(--green-mid); }
.product-badge-featured {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--green-mid);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}
.product-img-wrap { height: 220px; overflow: hidden; border-radius: 40px 0 0 0; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-content { padding: 28px; }
.product-content h3 { font-family: var(--font-title); font-size: 21px; font-weight: 400; color: #381e0f; margin-bottom: 12px; }
.product-content > p { color: #000000; font-size: 15.5px; margin-bottom: 22px; line-height: 1.7; }
.product-specs { border-top: 1px solid #e2d7c9; padding-top: 18px; margin-bottom: 22px; display: flex; flex-direction: column; gap: 10px; }
.product-specs li { display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; }
.product-specs li span { color: #000000; }
.product-specs li strong { color: var(--green-mid); font-weight: 700; }

/* ======= PACKING (WHITE) ======= */
.packing-section { padding: 100px 0; background: #fbf9f6; }
.packing-section .section-title { color: #381e0f; }
.packing-section .section-sub { color: #000000; }
.packing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pack-card {
  background: #ffffff;
  border: 1px solid #e2d7c9;
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
.pack-card:hover { border-color: var(--green-mid); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(176,125,79,0.12); }
.pack-number {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  color: rgba(176,125,79,0.45);
  line-height: 1;
  margin-bottom: 14px;
}
.pack-card h4 { font-family: var(--font-title); font-size: 21px; font-weight: 400; color: #381e0f; margin-bottom: 12px; }
.pack-card p { color: #000000; font-size: 17px; margin-bottom: 24px; line-height: 1.7; }
.pack-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: auto;
}

/* ======= ECO (WHITE) ======= */
.eco-section { padding: 100px 0; background: #ffffff; }
.eco-section .section-title { color: #381e0f; }
.eco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.eco-body { color: #000000; font-size: 19px; margin-bottom: 36px; }
.eco-items { display: flex; flex-direction: column; gap: 22px; }
.eco-item { display: flex; gap: 18px; align-items: flex-start; }
.eco-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  margin-top: 6px;
}
.eco-item strong { display: block; color: #381e0f; font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.eco-item p { color: #000000; font-size: 15.5px; margin: 0; }
.eco-img { border-radius: 40px 0 40px 0; height: 540px; object-fit: cover; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

/* ======= PROCESS ======= */
.process-section { padding: 80px 0; background: var(--dark-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.process-step {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 12px 0 12px 0;
  padding: 28px 16px 24px;
  text-align: center;
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-dim);
  font-size: 19.5px;
  z-index: 2;
}
.process-step:nth-child(5)::after,
.process-step:nth-child(10)::after { display: none; }
.step-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
  filter: grayscale(0);
}
.step-num {
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--dark);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.process-step h4 { font-family: var(--font-title); font-size: 13.5px; font-weight: 400; color: var(--white); margin: 0; line-height: 1.35; }
.process-step p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.process-arrow { display: none; }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3)::after { display: none; }
  .process-step:nth-child(6)::after { display: none; }
  .process-step:nth-child(9)::after { display: none; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(even)::after { display: none; }
  .process-step::after { right: -12px; font-size: 14px; }
}

/* ======= CTA ======= */
.cta-section { position: relative; padding: 120px 0; text-align: center; overflow: hidden; background: #ebdccb; border-top: 1px solid #dcd0c0; border-bottom: 1px solid #dcd0c0; }
.cta-bg { position: absolute; inset: 0; }
.cta-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.1); opacity: 0.04; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(245, 237, 228, 0.8), rgba(245, 237, 228, 0.95)); }
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  color: #381e0f;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.cta-sub { color: #000000; font-size: 19.5px; max-width: 560px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; }
.cta-section .btn-outline { border-color: #381e0f; color: #381e0f; }
.cta-section .btn-outline:hover { background: #381e0f; color: #ffffff; }

/* ======= FOOTER ======= */
.site-footer { background: #f5ede4; border-top: 1px solid #dcd0c0; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid #dcd0c0; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo { height: 60px; width: auto; object-fit: contain; }
.footer-logo-text { font-family: var(--font-head); font-size: 14px; font-weight: 900; letter-spacing: 2px; color: #381e0f; }
.footer-logo-text span { color: var(--green-mid); }
.footer-tagline { color: #000000; font-size: 15.5px; margin-bottom: 10px; }
.footer-cert { font-family: var(--font-head); font-size: 11px; letter-spacing: 1.5px; color: #000000; }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid #ebdccb; color: #381e0f; background: transparent; transition: all 0.3s ease; }
.social-icon:hover { background: var(--green-mid); color: #ffffff; border-color: var(--green-mid); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(176,125,79,0.25); }
.footer-col h5 { font-family: var(--font-title); font-size: 12.5px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: #381e0f; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 15.5px; color: #000000; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-mid); }
.footer-contact-list li { font-size: 15.5px; color: #000000; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-list a:hover { color: var(--green-mid); }
.footer-simple-nav, .footer-simple-contact { display: none; }
.footer-bottom { padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 14.5px; color: #000000; }
.footer-bottom a { font-size: 14.5px; color: #000000; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green-mid); }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
  }
  .hero-split {
    flex-direction: column;
    text-align: center;
    gap: 48px;
    width: 100%;
    justify-content: center;
  }
  .hero-text {
    flex: 1 1 auto;
    width: 100%;
  }
  .hero-sub {
    max-width: 600px;
    margin: 0 auto 40px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-carousel-wrap {
    flex: 0 1 auto;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-carousel {
    height: clamp(320px, 45vw, 420px);
  }
  .about-grid, .what-grid, .eco-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; bottom: -12px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .packing-grid { grid-template-columns: 1fr 1fr; }
  .crops-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .logo-img { height: 62px; }
  .site-header { padding: 12px 0; }
  .site-header.scrolled { padding: 10px 0; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--dark-3);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .main-nav.open .nav-list { flex-direction: column; align-items: flex-start; width: 100%; gap: 12px; }
  .main-nav.open .nav-list > li { width: 100%; }
  .main-nav.open .nav-link { width: 100%; padding: 10px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--white); }
  .main-nav.open .nav-link:hover { color: var(--green); }
  
  /* Mobile Dropdown Styling */
  .main-nav.open .has-dropdown:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: none;
  }
  .main-nav.open .dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--green);
    background: rgba(255, 255, 255, 0.03);
    margin-top: 4px;
    padding: 4px 0 4px 16px;
    width: 100%;
    display: block;
  }
  .main-nav.open .dropdown a {
    padding: 8px 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    border: none;
  }
  .main-nav.open .dropdown a:hover {
    background: transparent;
    color: #ffffff;
    padding-left: 4px;
  }

  .header-inner {
    gap: 0;
  }
  .logo-link {
    margin-right: auto;
  }
  .site-header .header-cta {
    display: inline-block;
    margin-left: 0;
    margin-right: 20px;
    padding: 7px 14px;
    font-size: 12.5px;
    border-radius: 10px 0 10px 0;
    white-space: nowrap;
    color: #ffffff !important;
  }
  .nav-toggle {
    display: flex;
    margin-left: 0;
    flex-shrink: 0;
  }
  .stats-inner { gap: 0; }
  .stat-item { padding: 12px 24px; }
  .stat-divider { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .packing-grid { grid-template-columns: 1fr; }
  .crops-grid { grid-template-columns: 1fr 1fr; }
  
  /* Crops Horizontal Tab Slider */
  .crops-tabs {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #e2d7c9;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .crops-tabs::-webkit-scrollbar {
    display: none;
  }
  .crop-tab {
    flex: 0 0 auto;
    padding: 10px 18px;
    font-size: 12px;
  }

  .hero { height: auto !important; min-height: auto !important; padding: 100px 0 40px !important; }
  .site-footer .footer-col { display: none; }
  .footer-brand { text-align: center; margin: 0 auto; width: 100%; display: flex; flex-direction: column; align-items: center; }
  .footer-logo-wrap { justify-content: center; }
  .footer-simple-nav { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin: 24px 0 16px; font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
  .footer-simple-nav a { color: #000000; transition: color 0.2s; }
  .footer-simple-nav a:hover { color: var(--green-mid); }
  .footer-simple-contact { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: #000000; align-items: center; margin-bottom: 8px; }
  .footer-simple-contact a { display: inline-flex; align-items: center; gap: 6px; }
  .footer-simple-contact a:hover { color: var(--green-mid); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .process-arrow { transform: rotate(90deg); margin: 4px auto; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ======= PREMIUM MODAL POPUP ======= */
#enquiry-modal-container {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
#enquiry-modal-container.active {
  display: flex;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 13, 10, 0.7);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
  opacity: 0;
}
#enquiry-modal-container.active .modal-overlay {
  opacity: 1;
}
.modal-card {
  position: relative;
  width: 95%;
  max-width: 520px;
  background: #ffffff;
  border: 1px solid #e2d7c9;
  border-radius: 24px 0 24px 0;
  box-shadow: 0 20px 50px rgba(18, 13, 10, 0.15);
  padding: 40px;
  z-index: 10001;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  max-height: 90vh;
}
#enquiry-modal-container.active .modal-card {
  transform: translateY(0);
  opacity: 1;
}
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f4f0;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal-close-btn:hover {
  background: #b07d4f;
  color: #ffffff;
  transform: rotate(90deg);
}
.modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.modal-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: #381e0f;
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 13.5px;
  color: #000000;
  line-height: 1.5;
  background: #f3f7f3;
  padding: 10px 14px;
  border-left: 3px solid #b07d4f;
  border-radius: 0 8px 8px 0;
  display: inline-block;
  text-align: left;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000000;
}
.form-control {
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  padding: 12px 16px;
  border: 1px solid #e2d7c9;
  background: #fcfdfc;
  border-radius: 8px;
  color: #381e0f;
  transition: all 0.25s ease;
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: #b07d4f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(176,125,79, 0.1);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235a6e5c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}
.btn-block {
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  border: none;
}
.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal-success-icon {
  font-size: 64px;
  color: #b07d4f;
  margin-bottom: 20px;
  line-height: 1;
  animation: scaleInSuccess 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.modal-success h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #381e0f;
  margin-bottom: 12px;
}
.modal-success p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 28px;
}

@keyframes scaleInSuccess {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 580px) {
  .modal-card {
    padding: 30px 20px;
    width: 95%;
  }
}

/* ======= HOMEPAGE CORE PRODUCTS GRID (BELOW FOLD) ======= */
.home-other-section {
  padding: 100px 0;
  background: #fbf9f6;
}
.home-other-section .section-title {
  color: #381e0f;
}
.home-other-section .section-sub {
  color: #8b7d72;
}
.home-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.home-other-card {
  background: #ffffff;
  border: 1px solid #ebdccb;
  border-radius: 20px 0 20px 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(18, 13, 10, 0.02);
}
.home-other-card:hover {
  transform: translateY(-6px);
  border-color: #b07d4f;
  box-shadow: 0 16px 40px rgba(176, 125, 79, 0.12);
}
.home-other-card-img {
  height: 200px;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #f5ede4;
}
.home-other-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home-other-card:hover .home-other-card-img img {
  transform: scale(1.05);
}
.home-other-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.home-other-card-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: #381e0f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.home-other-card-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.home-other-card-btn {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: #b07d4f;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  margin-top: auto;
}
.home-other-card-btn .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}
.home-other-card:hover .home-other-card-btn {
  color: #c68a4c;
}
.home-other-card:hover .home-other-card-btn .arrow {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .home-other-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .home-other-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ======= CERTIFICATIONS SECTION (RESPONSIVE INLINE SVG) ======= */
.certifications-section {
  padding: 80px 0;
  border-top: 1px solid #ebdccb;
  text-align: center;
}
/* Variation background colors */
.cert-bg-beige { background: #f5ede4; }
.cert-bg-white { background: #ffffff; }
.cert-bg-grey-green { background: #f0f7f1; }
.cert-bg-warm-grey { background: #fcfbf9; }

.certifications-header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 0 20px;
}
.certifications-header h3 {
  font-family: var(--font-title);
  font-size: clamp(24px, 3.5vw, 36px);
  color: #381e0f;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.certifications-header p {
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 680px;
}
.certifications-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 24px auto 0; /* Added spacing above the icons */
  padding: 0 20px;
}
.cert-svg-wrap,
.cert-logo-wrap {
  width: 100px; /* Reduced desktop size slightly for elegance */
  height: 100px; /* Reduced desktop size slightly for elegance */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
}
.cert-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply; /* Merges the white background of the image with the section BG */
}
.cert-svg-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}
.cert-svg-wrap:hover,
.cert-logo-wrap:hover {
  transform: translateY(-4px) scale(1.05);
}

@media (max-width: 768px) {
  .certifications-section { padding: 60px 0; }
  .certifications-grid { gap: 24px; margin-top: 16px; }
  .cert-svg-wrap,
  .cert-logo-wrap { width: 80px; height: 80px; } /* Reduced mobile size slightly */
}

/* ===========================
   GALLERY PAGE STYLES
   =========================== */
.gallery-section {
  padding: 80px 0 100px;
  background: var(--dark-2);
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.gallery-filter-btn {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--dark);
  transform: translateY(-2px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.gallery-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
  transform: translateY(0);
}
.gallery-card.hidden {
  display: none;
}
.gallery-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-mid);
  box-shadow: 0 12px 30px rgba(198, 138, 76, 0.12);
}
.gallery-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 66.67%; /* 3:2 Aspect Ratio */
  overflow: hidden;
  background: #1a130f;
  cursor: pointer;
}
.gallery-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.08);
}
.gallery-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 13, 10, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-img-overlay {
  opacity: 1;
}
.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.gallery-card:hover .gallery-zoom-icon {
  transform: scale(1);
}
.gallery-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.gallery-card-title {
  font-family: var(--font-title);
  font-size: 20px !important;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.gallery-card-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.gallery-card-title a:hover {
  color: var(--green);
}
.gallery-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.gallery-card-category {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 1.5px;
  margin-top: auto;
  padding-top: 16px;
}

/* Lightbox Modal Stylings using Native Dialog */
.gallery-lightbox-dialog {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  outline: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-lightbox-dialog::backdrop {
  background-color: rgba(18, 13, 10, 0.85);
  backdrop-filter: blur(8px);
}
.lightbox-container {
  display: flex;
  flex-direction: column;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  max-width: 900px;
}
.lightbox-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(18, 13, 10, 0.6);
  border: 1px solid var(--border);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.lightbox-close-btn:hover {
  background: var(--green);
  color: var(--dark);
  border-color: var(--green);
}
.lightbox-img-wrap {
  width: 100%;
  background: #120d0a;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}
.lightbox-details {
  padding: 32px;
  background: var(--dark-2);
}
.lightbox-title {
  font-family: var(--font-title);
  font-size: 24px !important;
  color: var(--white);
  margin-bottom: 12px;
}
.lightbox-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.lightbox-title a:hover {
  color: var(--green);
}
.lightbox-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0 80px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  .lightbox-details {
    padding: 20px;
  }
  .lightbox-title {
    font-size: 20px !important;
  }
  .lightbox-desc {
    font-size: 13px;
  }
}

/* Focus visible states for keyboard accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--green) !important;
  outline-offset: 3px !important;
}
