:root {
  --tc-primary: #D95D39;
  --tc-dark: #8F3B22;
  --tc-light: #F4E3DD;
  --bg-cream: #FBF9F6;
  --text-main: #2C302E;
  --text-muted: #5B615E;
  --forest-dark: #1A2621;
  
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

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

img.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Typography */
.section-title-mono {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--tc-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

.inline-text-link {
  color: var(--tc-primary);
  text-decoration: none;
  border-bottom: 1px dashed var(--tc-primary);
  transition: all 0.2s ease;
}
.inline-text-link:hover {
  color: var(--tc-dark);
  border-bottom-style: solid;
}

/* Buttons */
.btn-terracotta-solid {
  display: inline-block;
  background-color: var(--tc-primary);
  color: #fff;
  font-family: var(--font-mono);
  text-decoration: none;
  padding: 1rem 1.8rem;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-terracotta-solid:hover {
  background-color: var(--tc-dark);
}
.btn-ghost-muted {
  display: inline-block;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-decoration: underline;
  padding: 1rem 1.8rem;
  font-size: 0.95rem;
}
.btn-ghost-muted:hover {
  color: var(--tc-primary);
}
.full-width {
  width: 100%;
}

/* Header */
.verde-top-nav {
  position: sticky;
  top: 0;
  background-color: rgba(251, 249, 246, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 100;
}
.nav-inner-bounds {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-mark-txt {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--forest-dark);
}
.mono-accent-brand {
  font-family: var(--font-mono);
  color: var(--tc-primary);
  font-weight: 400;
}
.navigation-routes a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  margin-left: 2rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.navigation-routes a:hover {
  color: var(--tc-primary);
}
.nav-action-btn {
  border: 1px solid var(--tc-primary);
  padding: 0.5rem 1rem;
  color: var(--tc-primary) !important;
}
.nav-action-btn:hover {
  background-color: var(--tc-primary);
  color: #fff !important;
}

/* Hero */
.hero-split-zone {
  display: flex;
  min-height: 85vh;
  flex-wrap: wrap;
}
.hero-text-sector {
  flex: 1 1 500px;
  padding: 8rem 4rem 4rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background-color: var(--tc-light);
  color: var(--tc-dark);
  padding: 0.4rem 0.8rem;
  display: inline-table;
  margin-bottom: 2rem;
  border-left: 3px solid var(--tc-primary);
}
.primary-headline {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.hero-cta-cluster {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-visual-sector {
  flex: 1 1 500px;
  position: relative;
}

/* Services Matrix */
.solutions-matrix-area {
  padding: 6.2rem 2rem 5.8rem;
  max-width: 1280px;
  margin: 0 auto;
}
.matrix-header {
  max-width: 600px;
  margin-bottom: 4rem;
}
.matrix-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}
.service-cards-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}
.grow-solution-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grow-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.grow-solution-card img {
  height: 220px;
}
.card-text-body {
  padding: 2rem;
}
.card-heading {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--forest-dark);
}

/* FAQ Module */
.grower-faq-module {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 3rem;
  border-top: 4px solid var(--tc-primary);
}
.faq-header {
  font-family: var(--font-mono);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.faq-accordion-item {
  border-bottom: 1px solid #eee;
}
.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--forest-dark);
  display: flex;
  justify-content: space-between;
}
.faq-trigger::after {
  content: '+';
  font-family: var(--font-mono);
  color: var(--tc-primary);
}
.faq-trigger.active::after {
  content: '-';
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-panel p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
}

/* About / Narrative */
.deep-narrative-block {
  background-color: var(--forest-dark);
  color: #fff;
  padding: 7.5rem 2rem;
}
.narrative-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.narrative-content-split {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.narrative-prose {
  flex: 1 1 500px;
}
.narrative-prose p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #D1D5D3;
}
.operational-hours-tag {
  margin-top: 3rem;
  padding: 1rem;
  background-color: rgba(255,255,255,0.05);
  display: inline-block;
  font-size: 0.9rem;
}
.mono-label {
  font-family: var(--font-mono);
  color: var(--tc-primary);
  margin-right: 0.5rem;
}
.narrative-image-wrap {
  flex: 1 1 400px;
}
.rounded-edges {
  border-radius: 4px;
}

/* Testimonials */
.feedback-corridor {
  padding: 6.8rem 2rem;
  background-color: var(--tc-light);
}
.corridor-bounds {
  max-width: 1280px;
  margin: 0 auto;
}
.testimony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimony-pod {
  background: #fff;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-body {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 2rem;
}
.quote-author-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.author-details {
  display: flex;
  flex-direction: column;
}
.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Contact */
.inquiry-station {
  padding: 5.5rem 2rem 7rem;
  max-width: 1000px;
  margin: 0 auto;
}
.inquiry-wrapper {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.inquiry-text {
  flex: 1 1 300px;
}
.service-region-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #eaeaea;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.inquiry-form-container {
  flex: 1 1 400px;
  background: #fff;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.input-group {
  margin-bottom: 1.5rem;
}
.input-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--forest-dark);
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  font-family: var(--font-body);
  background-color: var(--bg-cream);
}
.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--tc-primary);
}

/* Footer */
.verde-base-footer {
  background-color: #111815;
  color: #8C9490;
  padding: 4rem 2rem 2rem;
  font-size: 0.9rem;
}
.footer-grid-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1rem;
}
.tiny-disclaimer {
  font-size: 0.75rem;
  opacity: 0.6;
  max-width: 300px;
}
.footer-heading {
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
.footer-contact-col p {
  margin-bottom: 0.5rem;
}
.footer-contact-col a,
.clean-list a {
  color: #8C9490;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-col a:hover,
.clean-list a:hover {
  color: var(--tc-primary);
}
.clean-list {
  list-style: none;
}
.clean-list li {
  margin-bottom: 0.8rem;
}
.footer-bottom-bar {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
}

/* Responsive Leakage & Adjustments */
@media (max-width: 900px) {
  .hero-text-sector {
    padding: 4rem 2rem;
  }
  .primary-headline {
    font-size: 2.8rem;
  }
  .footer-grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .nav-inner-bounds {
    flex-direction: column;
    gap: 1rem;
  }
  .navigation-routes a {
    margin-left: 0;
    margin: 0 0.5rem;
  }
  .hero-cta-cluster {
    flex-direction: column;
    align-items: flex-start;
  }
  .deep-narrative-block {
    padding: 4.2rem 1.5rem;
  }
}
