/* =========================================================
   ASIRI GROWTH VENTURES — Demo-14
   Brand Identity & Global Styles
   ========================================================= */

:root {
  --primary-green: #2D6A4F;
  --light-green: #52B788;
  --warm-cream: #F8F3E6;
  --deep-earth: #3D2B1F;
  --ginger-gold: #D4A017;
  --coconut-cream: #FFFDD0;
  --white: #FFFFFF;
  --border-gray: #E0E0E0;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow-sm: 0 2px 8px rgba(45, 106, 79, 0.08);
  --shadow-md: 0 6px 24px rgba(45, 106, 79, 0.12);
  --shadow-lg: 0 14px 40px rgba(45, 106, 79, 0.18);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --max-width: 1200px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--deep-earth);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--light-green); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--primary-green);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 1.25rem;
  margin: 0 auto;
}

section { padding: 5rem 0; }

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--deep-earth);
  opacity: 0.75;
  max-width: 720px;
  margin: 0 auto 3rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--light-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary-green);
}

.btn-gold {
  background: var(--ginger-gold);
  color: var(--deep-earth);
}
.btn-gold:hover {
  background: #b8890a;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
}
.btn-ghost:hover {
  background: var(--primary-green);
  color: var(--white);
}

/* ===== Navigation ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-green);
  text-decoration: none;
  line-height: 1.1;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  white-space: nowrap;
}

.footer-logo .logo-img {
  height: 56px;
  filter: brightness(0) invert(1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--deep-earth);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--primary-green);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--primary-green);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-green);
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  color: var(--primary-green);
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(20, 50, 30, 0.55), rgba(20, 50, 30, 0.55)),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-content {
  max-width: 820px;
  padding: 5rem 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.trust-line {
  font-size: 0.95rem;
  opacity: 0.92;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.flag-dot {
  display: inline-block;
  width: 16px;
  height: 11px;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 4px;
  border: 1px solid rgba(255,255,255,0.4);
}
.flag-lk {
  background: linear-gradient(to right, #8d2429 50%, #ffbe29 50%);
}
.flag-in {
  background: linear-gradient(to bottom, #ff9933 33%, #fff 33%, #fff 66%, #138808 66%);
}
.flag-at {
  background: linear-gradient(to bottom, #ed2939 33%, #fff 33%, #fff 66%, #ed2939 66%);
}

/* ===== Page Hero (smaller subpage banner) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-green), #1f4a37);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.15rem; opacity: 0.92; max-width: 720px; margin: 0 auto; }

.page-hero.with-image {
  background:
    linear-gradient(rgba(20, 50, 30, 0.65), rgba(20, 50, 30, 0.65)),
    url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  padding: 7rem 0 6rem;
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--warm-cream);
  padding: 3rem 0;
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-stat .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary-green);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}
.trust-stat .label {
  font-size: 0.95rem;
  color: var(--deep-earth);
  opacity: 0.8;
}

/* ===== Cards / Grid ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.crop-card .card-icon {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.badge-green { background: var(--light-green); color: var(--white); }
.badge-gold { background: var(--ginger-gold); color: var(--deep-earth); }
.badge-cream { background: var(--coconut-cream); color: var(--deep-earth); border: 1px solid var(--border-gray); }

.timeline-line {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
  background: var(--warm-cream);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}

.card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--primary-green);
}
.card-link:hover { color: var(--light-green); }

/* ===== Investment Plans Cards ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.plan-card {
  background: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.plan-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.plan-card.featured {
  border-color: var(--ginger-gold);
  background: linear-gradient(180deg, #fff 0%, #fffdf3 100%);
  position: relative;
}
.plan-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--ginger-gold);
  color: var(--deep-earth);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--deep-earth);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.plan-price small {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
}

.plan-meta {
  font-size: 0.9rem;
  color: var(--deep-earth);
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.plan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 1rem;
  background: var(--warm-cream);
  border-radius: var(--radius-sm);
}
.plan-stats div { font-size: 0.85rem; }
.plan-stats strong { display: block; font-size: 1rem; color: var(--primary-green); }

.plan-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  flex-grow: 1;
}
.plan-list li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  font-size: 0.92rem;
  position: relative;
}
.plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--light-green);
  font-weight: 700;
}

/* ===== Calculator ===== */
.calculator {
  background: var(--warm-cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-gray);
}

.calc-notice {
  background: #fff7e0;
  border-left: 4px solid var(--ginger-gold);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.calc-control { margin-bottom: 1.5rem; }
.calc-control label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--deep-earth);
}

.calc-control input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 0.5rem 0;
}
.calc-control input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: var(--border-gray);
  border-radius: 3px;
}
.calc-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--primary-green);
  border-radius: 50%;
  margin-top: -8px;
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.calc-amount-display {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-green);
  font-weight: 700;
}

.toggle-group {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.toggle-group button {
  flex: 1;
  padding: 0.7rem 0.5rem;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--deep-earth);
  transition: background var(--transition), color var(--transition);
}
.toggle-group button.active {
  background: var(--primary-green);
  color: var(--white);
}

.calc-output {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-gray);
}

.calc-output-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-gray);
}
.calc-output-row:last-child { border-bottom: 0; }
.calc-output-row .l { font-size: 0.9rem; color: var(--deep-earth); opacity: 0.8; }
.calc-output-row .v { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--deep-earth); }
.calc-output-row.highlight .v { color: var(--ginger-gold); font-size: 1.5rem; }

.calc-disclaimer {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-style: italic;
  opacity: 0.75;
  line-height: 1.55;
}

/* ===== Comparison Table ===== */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-gray);
  font-size: 0.95rem;
}
.compare-table th {
  background: var(--primary-green);
  color: var(--white);
  font-weight: 600;
}
.compare-table tr:nth-child(even) td { background: var(--warm-cream); }

/* ===== Process Steps ===== */
.process-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}
.process-step .step-num {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 0.75rem;
  position: relative;
  z-index: 1;
}
.process-step h4 { font-size: 0.95rem; }
.process-step p { font-size: 0.85rem; opacity: 0.75; margin: 0; }

.process-flow::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border-gray);
  z-index: 0;
}

/* ===== Risk Disclosure ===== */
.risk-box {
  background: #fff5f5;
  border: 2px solid #f0c4c4;
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.risk-box h3 { color: #a02828; }
.risk-box ul { list-style: none; margin-top: 1rem; }
.risk-box ul li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
}
.risk-box ul li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: #c44;
}

/* ===== Roadmap Timeline ===== */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.roadmap::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: var(--border-gray);
  z-index: 0;
}
.roadmap-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}
.roadmap-step .dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.roadmap-step.active .dot { border-color: var(--primary-green); background: var(--warm-cream); }
.roadmap-step.coming .dot { border-color: var(--ginger-gold); background: var(--coconut-cream); opacity: 0.85; }

.notify-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.notify-form input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
}
.notify-form button {
  padding: 0.55rem 1rem;
  border: 0;
  background: var(--ginger-gold);
  color: var(--deep-earth);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
}

/* ===== Team Cards ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}
.team-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}
.team-card .avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-green), var(--primary-green));
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  border: 4px solid var(--warm-cream);
}
.team-card h3 { margin-bottom: 0.25rem; }
.team-card .role {
  display: block;
  font-size: 0.9rem;
  color: var(--ginger-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio { font-size: 0.92rem; line-height: 1.6; margin-bottom: 1rem; }

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.expertise-tags span {
  background: var(--warm-cream);
  color: var(--primary-green);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}

.team-quote {
  font-style: italic;
  color: var(--deep-earth);
  opacity: 0.85;
  font-size: 0.9rem;
  margin: 1rem 0;
  padding: 0 0.5rem;
}
.team-quote::before { content: '“ '; color: var(--ginger-gold); font-family: var(--font-heading); font-size: 1.2rem; }
.team-quote::after { content: ' ”'; color: var(--ginger-gold); font-family: var(--font-heading); font-size: 1.2rem; }

.team-contact {
  border-top: 1px solid var(--border-gray);
  padding-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ===== Ethics blocks ===== */
.ethics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ethics-block {
  background: var(--warm-cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-left: 4px solid var(--primary-green);
}
.ethics-block:nth-child(2) { border-left-color: var(--ginger-gold); }
.ethics-block:nth-child(3) { border-left-color: var(--light-green); }
.ethics-block .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.ethics-block h3 { font-size: 1.2rem; }
.ethics-block .principles {
  font-style: italic;
  color: var(--deep-earth);
  opacity: 0.85;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.ethics-block .practice { font-size: 0.92rem; }
.ethics-block .practice strong { color: var(--primary-green); }

/* ===== Land facts ===== */
.land-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.land-fact {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.land-fact .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.land-fact .v {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-green);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}
.land-fact .l { font-size: 0.85rem; opacity: 0.75; }

/* ===== Field log ===== */
.field-log { display: flex; flex-direction: column; gap: 1rem; max-width: 900px; margin: 0 auto; }
.field-entry {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  align-items: start;
}
.field-entry .date {
  background: var(--primary-green);
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
}
.field-entry .date strong { display: block; font-family: var(--font-heading); font-size: 1.2rem; }
.field-entry h4 { margin-bottom: 0.25rem; }
.field-entry p { font-size: 0.92rem; margin: 0; }

/* ===== Documentation list ===== */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.doc-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--warm-cream);
  border-radius: var(--radius-md);
  border-bottom: 3px solid var(--primary-green);
}
.doc-item .icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.doc-item h4 { font-size: 0.95rem; }

/* ===== Why-crops 3 column ===== */
.crops-strategy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.crop-block {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-top: 4px solid var(--primary-green);
}
.crop-block:nth-child(1) { border-top-color: var(--ginger-gold); }
.crop-block:nth-child(2) { border-top-color: var(--light-green); }
.crop-block:nth-child(3) { border-top-color: var(--primary-green); }
.crop-block h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.crop-block ul { list-style: none; }
.crop-block ul li {
  padding: 0.45rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--border-gray);
}
.crop-block ul li:last-child { border-bottom: 0; }
.crop-block ul li strong { color: var(--primary-green); }

/* ===== Forms ===== */
.form-block {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border-gray);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--warm-cream);
  color: var(--primary-green);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
  font-weight: 500;
}
.form-message.show { display: block; }

/* ===== Floating contact buttons ===== */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 90;
}
.floating-contact a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.floating-contact a:hover { transform: scale(1.08); }
.floating-contact .fc-call { background: var(--primary-green); }
.floating-contact .fc-wa { background: #25D366; }

/* ===== Mobile bottom bar ===== */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--border-gray);
  z-index: 95;
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-green);
  border-right: 1px solid var(--border-gray);
}
.mobile-bar a:last-child { border-right: 0; color: #25D366; }

/* ===== Contact columns ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-col {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-top: 4px solid var(--primary-green);
}
.contact-col h3 { margin-bottom: 1rem; }
.contact-col p { font-size: 0.95rem; margin-bottom: 0.6rem; }
.contact-col .ic {
  display: inline-block;
  width: 22px;
  font-weight: 700;
  color: var(--primary-green);
}
.contact-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-gray);
  font-size: 0.9rem;
  opacity: 0.8;
}

.map-embed {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ===== Footer ===== */
.footer {
  background: var(--deep-earth);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 1.5rem;
}
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
}
.footer ul { list-style: none; }
.footer ul li { padding: 0.3rem 0; font-size: 0.92rem; }
.footer a { color: rgba(255,255,255,0.78); }
.footer a:hover { color: var(--ginger-gold); }
.footer-tagline {
  font-size: 0.92rem;
  margin: 0.75rem 0 1rem;
  line-height: 1.6;
  opacity: 0.85;
}
.socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.socials a:hover { background: var(--primary-green); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ===== Company details box ===== */
.company-box {
  background: var(--warm-cream);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.company-box h3 { margin-bottom: 1rem; }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.office { font-size: 0.92rem; }
.office strong { display: block; color: var(--primary-green); margin-bottom: 0.4rem; font-size: 1rem; }

/* ===== Story paragraphs ===== */
.story {
  max-width: 820px;
  margin: 0 auto;
}
.story p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.story p strong { color: var(--primary-green); }

/* ===== Section variants ===== */
.section-cream { background: var(--warm-cream); }
.section-tight { padding: 3.5rem 0; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ===== Why not other crops ===== */
.why-not {
  background: var(--warm-cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
}
.why-not h3 { margin-bottom: 1rem; }
.why-not ul { list-style: none; }
.why-not ul li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  font-size: 0.95rem;
  position: relative;
}
.why-not ul li.bad::before { content: '✗'; color: #c44; position: absolute; left: 0; font-weight: 700; }
.why-not ul li.good::before { content: '✓'; color: var(--light-green); position: absolute; left: 0; font-weight: 700; }

/* ===== Crop showcase blocks (Our Land page) ===== */
.crop-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}
.crop-showcase.reverse { direction: rtl; }
.crop-showcase.reverse > * { direction: ltr; }
.crop-image {
  border-radius: var(--radius-md);
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--warm-cream);
  box-shadow: var(--shadow-md);
}
.crop-image.ginger { background-image: url('https://images.unsplash.com/photo-1573651392521-ba62fb47cdf7?auto=format&fit=crop&w=900&q=80'); }
.crop-image.vanilla { background-image: url('https://images.unsplash.com/photo-1612392167581-bcf1c92dba2c?auto=format&fit=crop&w=900&q=80'); }
.crop-info h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-3, .plans-grid, .crops-strategy, .ethics-grid, .team-grid, .contact-grid, .roadmap { grid-template-columns: 1fr 1fr; }
  .grid-4, .land-facts, .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: repeat(3, 1fr); }
  .process-flow::before { display: none; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero { min-height: 70vh; }
  .hero .container { padding-left: 1rem; padding-right: 1rem; }
  .logo { font-size: 1.05rem; gap: 0.45rem; }
  .logo-img { height: 40px; }
  .footer-logo .logo-img { height: 48px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-gray);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border-gray); width: 100%; }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 0.75rem 0; }
  .nav-phone { display: none; }
  .menu-toggle { display: block; }
  .grid-2, .grid-3, .grid-4, .plans-grid, .crops-strategy, .ethics-grid,
  .team-grid, .contact-grid, .roadmap, .land-facts, .doc-grid, .offices-grid,
  .footer-grid, .form-row, .crop-showcase { grid-template-columns: 1fr; }
  .crop-showcase.reverse { direction: ltr; }
  .roadmap::before { display: none; }
  .trust-bar .container { grid-template-columns: 1fr; }
  .field-entry { grid-template-columns: 80px 1fr; }
  .floating-contact { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 56px; }
  .process-flow { grid-template-columns: 1fr 1fr; }
  .calculator { padding: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  .container { padding: 0 1rem; }
  .card, .plan-card, .form-block, .calculator { padding: 1.25rem; }
  .hero-content { padding: 3rem 0; }
  .logo-img { height: 36px; }
  .navbar .logo .logo-text { display: none; }
}
