:root {
  --bg: #f4f1eb;
  --bg-soft: rgba(236, 240, 240, 0.4);
  --paper: #ffffff;
  --ink: #162820;
  --muted: #5c6d68;
  --line: rgba(12, 92, 71, 0.14);
  --brand: #0c5c47;
  --brand-2: #0f6a52;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-btn: 8px;
  --shadow-sm: 0 2px 8px rgba(12, 92, 71, 0.06);
  --shadow-md: 0 4px 16px rgba(12, 92, 71, 0.1);
  --transition: 0.2s ease;
}

/* ─── Reset ─────────────────────────────────────────────────────── */

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ─── Focus Styles (Accessibility) ──────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── Skip Link ─────────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--brand);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-weight: 500;
  font-size: 14px;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

/* ─── Header ────────────────────────────────────────────────────── */

.site-header {
  background: #edece5;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.container-xl {
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
}

.navbar-brand {
  color: var(--ink);
}

.navbar-brand span {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-brand strong {
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.navbar-brand small {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
}

.nav-link.active {
  color: var(--brand);
  font-weight: 600;
}

/* ─── Spacing ───────────────────────────────────────────────────── */

.section-space-lg {
  padding: 96px 0;
}

.section-space {
  padding: 96px 0;
}

.muted {
  background: var(--bg-soft);
}

/* ─── Hero ──────────────────────────────────────────────────────── */

.hero-section {
  position: relative;
  min-height: calc(100vh - 77px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--brand);
  background: rgba(12, 92, 71, 0.08);
  border: 1px solid rgba(12, 92, 71, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 24px;
  font-weight: 500;
}

h1,
h2,
h3,
h4 {
  font-family: "Lora", serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 24px;
}

h1 em {
  display: block;
  color: var(--brand);
  font-style: italic;
  font-weight: 500;
}

.hero-copy p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.625;
  margin-bottom: 32px;
}

/* ─── Scroll Indicator ──────────────────────────────────────────── */

.scroll-indicator {
  position: relative;
  margin-top: 56px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
}

/* ─── Buttons ───────────────────────────────────────────────────── */

.btn {
  border-radius: var(--radius-btn);
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}

.btn-brand:hover {
  background: #185444;
  border-color: #185444;
  color: #fff;
}

.btn-brand:focus-visible {
  box-shadow: 0 0 0 3px rgba(12, 92, 71, 0.3);
}

.btn-outline-brand {
  border: 1px solid rgba(12, 92, 71, 0.3);
  color: var(--brand);
  background: transparent;
}

.btn-outline-brand:hover {
  background: #e3f0eb;
  color: #174d40;
  border-color: rgba(12, 92, 71, 0.5);
}

.btn-header-cta {
  border: 1.5px solid #b5c9c3;
  color: var(--brand);
  background: transparent;
  border-radius: var(--radius-btn);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  display: inline-block;
  white-space: nowrap;
}

.btn-header-cta:hover {
  background: rgba(12, 92, 71, 0.08);
  border-color: var(--brand);
  color: var(--brand);
}

@media (max-width: 991.98px) {
  .btn-header-cta {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }
}

/* ─── Stat Cards ────────────────────────────────────────────────── */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e8ede8;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(12, 92, 71, 0.08);
  border-radius: var(--radius-sm);
  color: var(--brand);
  margin-bottom: 14px;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  color: var(--muted);
}

/* ─── Section Heads ─────────────────────────────────────────────── */

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.625;
}

/* ─── Chips / Tabs ──────────────────────────────────────────────── */

.product-tabs .chip,
.chip {
  background: #fff;
  border: 1px solid rgba(12, 92, 71, 0.14);
  color: var(--muted);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  transition: all var(--transition);
  cursor: pointer;
}

.product-tabs .chip.active,
.chip.active,
.chip:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.chip:focus-visible {
  box-shadow: 0 0 0 3px rgba(12, 92, 71, 0.3);
}

/* ─── Feature Cards (Products) ──────────────────────────────────── */

.feature-card {
  background: #fff;
  border: 1px solid #dfe8e3;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f4f8f6;
  padding: 16px;
}

.feature-copy {
  padding: 20px 24px;
}

.feature-copy span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.feature-copy h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 600;
}

.feature-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* ─── Media Card (Seeds) ────────────────────────────────────────── */

.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d8e4df;
}

.media-card img {
  width: 100%;
  height: auto;
  display: block;
}

.media-card span,
.media-card p {
  position: absolute;
  left: 1.25rem;
  margin: 0;
  color: #fff;
}

.media-card span {
  top: 1rem;
  font-weight: 700;
  font-size: 13px;
  background: rgba(7, 41, 34, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.media-card p {
  bottom: 1rem;
  font-size: 15px;
  opacity: 0.95;
  font-weight: 500;
}

/* ─── Clean List ────────────────────────────────────────────────── */

.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.clean-list li {
  background: #fff;
  border: 1px solid #dbe7e2;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color var(--transition);
}

.clean-list li:hover {
  border-color: rgba(12, 92, 71, 0.3);
}

.clean-list strong {
  display: block;
  color: #163f36;
  margin-bottom: 2px;
  font-size: 15px;
}

.clean-list span {
  color: var(--muted);
  font-size: 14px;
}

/* ─── Tech Cards ────────────────────────────────────────────────── */

.tech-card {
  background: linear-gradient(180deg, #1b5c4a 0%, #0c5c47 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 92, 71, 0.2);
}

.tech-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 4px;
}

.tech-card h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
}

.tech-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.tech-card span {
  margin-top: auto;
  color: #a8dbc8;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── WCYP Section ──────────────────────────────────────────────── */

.wcyp-section {
  background: var(--brand);
  color: #fff;
}

.wcyp-section .kicker {
  color: #d9efe8;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.wcyp-section h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
}

.wcyp-section p,
.wcyp-section li {
  color: rgba(255, 255, 255, 0.88);
}

.wcyp-section .clean-list li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.wcyp-section .clean-list li:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.wcyp-section .btn-brand {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
  margin-top: 8px;
}

.wcyp-section .btn-brand:hover {
  background: #e8f5f0;
  border-color: #e8f5f0;
  color: #0a4a39;
}

/* ─── Check List (WCYP) ────────────────────────────────────────── */

.check-list li {
  position: relative;
  padding-left: 2.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: #9fd5c6;
  box-shadow: 0 0 0 4px rgba(159, 213, 198, 0.2);
}

/* ─── Badge Grid (Advisory) ─────────────────────────────────────── */

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.badge-grid span {
  background: #ebf4f0;
  border: 1px solid #d4e4de;
  color: #2c5850;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 10px 12px;
  transition: background var(--transition);
}

.badge-grid span:hover {
  background: #daeee7;
}

/* ─── Story Cards (Testimonials) ────────────────────────────────── */

.story-card {
  background: #fff;
  border: 1px solid #dae8e2;
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stars {
  color: var(--brand);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.story-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.author strong,
.author span,
.author small {
  display: block;
}

.author strong {
  font-size: 15px;
  color: #163c34;
  font-weight: 600;
}

.author span {
  color: var(--muted);
  font-size: 13px;
}

.author small {
  color: var(--muted);
  font-size: 12px;
}

/* ─── Contact ───────────────────────────────────────────────────── */

.contact-list article {
  background: #fff;
  border: 1px solid #dae7e1;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: border-color var(--transition);
}

.contact-list article:hover {
  border-color: rgba(12, 92, 71, 0.3);
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-list span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.contact-list span a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-list span a:hover {
  color: var(--brand);
  text-decoration: underline;
}

/* ─── Form ──────────────────────────────────────────────────────── */

.form-card {
  background: #fff;
  border: 1px solid #d8e5df;
  border-radius: var(--radius);
  padding: 28px;
}

.form-card h3 {
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 24px;
}

.form-label {
  color: var(--ink);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 8px;
}

.form-control {
  border: 1px solid rgba(12, 92, 71, 0.14);
  border-radius: var(--radius-btn);
  font-size: 14px;
  line-height: 20px;
  padding: 12px 16px;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control::placeholder {
  color: #9aa8a3;
}

.form-control:hover {
  border-color: rgba(12, 92, 71, 0.3);
}

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(12, 92, 71, 0.12);
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.invalid-feedback {
  font-size: 13px;
  color: #dc3545;
  margin-top: 4px;
}

/* ─── Footer ────────────────────────────────────────────────────── */

.site-footer {
  background: #123831;
  color: #cfe4dd;
}

.site-footer .navbar-brand strong,
.site-footer .navbar-brand small {
  color: #eff8f5;
}

.site-footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f2fbf8;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #c0d9d2;
  font-size: 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

/* ─── Utility ───────────────────────────────────────────────────── */

.d-none {
  display: none !important;
}

/* ─── Responsive ────────────────────────────────────────────────── */

@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    max-width: 100%;
    margin-left: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .wcyp-section h2 {
    font-size: 36px;
    line-height: 1.2;
  }
}

@media (max-width: 767.98px) {
  .section-space-lg {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-space {
    padding: 64px 0;
  }

  .hero-copy p {
    font-size: 16px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  .section-head h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .wcyp-section h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .stat-card {
    padding: 20px 16px;
    min-height: auto;
  }

  .stat-card h3 {
    font-size: 22px;
  }

  .badge-grid {
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .form-card {
    padding: 20px;
  }

  .story-card {
    padding: 20px;
  }

  .tech-card {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  .container-xl {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .badge-grid {
    grid-template-columns: 1fr;
  }
}
