:root {
  --ink: #11382a;
  --ink-soft: #2b5e4a;
  --leaf: #4f9f3c;
  --leaf-soft: #dff3d7;
  --sand: #c8a06a;
  --mist: #f8fbf6;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(17, 56, 42, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #edf8e6 0%, #f8fbf6 45%, #f5f8ff 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 248, 243, 0.95) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #d6f1df;
  box-shadow: 0 2px 12px rgba(17, 56, 42, 0.08);
}

.nav-bar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(17, 56, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(79, 159, 60, 0.25);
}

.brand span {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(135deg, #0d2f23 0%, #4f9f3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  font-weight: 600;
  padding: 0.45rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--leaf);
  border-color: var(--leaf);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-weight: 600;
}

.hero {
  min-height: 74vh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  background: linear-gradient(100deg, rgba(8, 31, 22, 0.85) 10%, rgba(8, 31, 22, 0.35) 65%) #2a5e48;
  overflow: hidden;
}

.hero-images {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlide 8s ease-in-out infinite;
}

.hero-image:nth-child(1) {
  animation-delay: 0s;
}

.hero-image:nth-child(2) {
  animation-delay: 4s;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 159, 60, 0.3), rgba(79, 159, 60, 0));
  z-index: -1;
}

.hero-content {
  color: #ecfff1;
  padding: 5.2rem 0 4.8rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.hero p {
  max-width: 640px;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.82rem;
  font-weight: 700;
  color: #66c75a;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  position: relative;
  z-index: 1;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--leaf) 0%, #2e7f35 100%);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(46, 127, 53, 0.32);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 4.4rem 0;
}

.section-heading h2,
.page-banner h1,
.cta-panel h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.impact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.impact-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.impact-card h3,
.impact-card p {
  margin: 0;
  padding: 0 1rem;
}

.impact-card h3 {
  padding-top: 1rem;
}

.impact-card p {
  padding-bottom: 1rem;
  color: #466657;
}

.features {
  background: linear-gradient(180deg, #f1f8ec 0%, #f8fbf6 100%);
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-product-card {
  background: var(--white);
  border: 1px solid #cae8be;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.home-product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.home-product-card h3 {
  margin: 0;
  padding: 0.8rem 0.7rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  line-height: 1;
}

.feature-chips span {
  background: #e4f5dc;
  border: 1px solid #cae8be;
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  font-weight: 600;
  color: #2a6039;
}

.center-note {
  margin-top: 1rem;
  font-size: 1.03rem;
  color: #365848;
  line-height: 1.7;
}

.cta-panel {
  background: linear-gradient(130deg, #11382a 0%, #1f5a3f 65%, #3c7b2e 100%);
  color: #ebfff0;
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: var(--shadow);
}

.cta-panel p {
  margin: 0.8rem 0 1.2rem;
  max-width: 700px;
}

.page-banner {
  padding: 4.5rem 0 3.1rem;
  background-image:
    linear-gradient(110deg, rgba(17, 56, 42, 0.9), rgba(46, 127, 53, 0.72)),
    url("https://images.unsplash.com/photo-1582555172866-f73bb12a2ab3?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #ebfff0;
}

.page-banner p {
  margin: 0.8rem 0 0;
  max-width: 740px;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  background: var(--white);
  border: 1px solid #e2ecdd;
  border-radius: var(--radius-md);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.product-card-image {
  width: calc(100% + 2.3rem);
  margin: -1.15rem -1.15rem 0.9rem;
  height: 180px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid #e4ebde;
}

.product-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}

.product-card p {
  margin: 0.55rem 0;
  color: #486858;
}

.product-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #264a3b;
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.contact-card h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.contact-card p {
  margin-top: 0.7rem;
  color: #426454;
  line-height: 1.7;
}

.brand-card img {
  margin-top: 0.8rem;
  border-radius: 12px;
  border: 1px solid #e5ece1;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #d9e7d1;
}

.map-wrap iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
}

.site-footer {
  margin-top: 1.5rem;
  background: #0d2f23;
  color: #dbf5e4;
  padding: 2.3rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-footer h3,
.site-footer h4 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.site-footer p {
  margin: 0.65rem 0 0;
  color: #c8e7d5;
}

.site-footer a {
  display: block;
  margin-top: 0.5rem;
  color: #d6f1df;
}

.vision-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-section h2 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-transform: uppercase;
}

.vision-section p {
  margin: 0 0 1.4rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #364d44;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid #e5ede0;
}

.pillar-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
  color: #0d2f23;
}

.pillar-card p {
  margin: 0;
  color: #476858;
  font-size: 0.95rem;
  line-height: 1.65;
}

.factory-section {
  background: linear-gradient(135deg, #f1f8ec 0%, #e8f5dd 100%);
  border-radius: var(--radius-lg);
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.factory-section h2 {
  margin: 0 0 1.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
  text-transform: uppercase;
}

.factory-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.factory-text h3 {
  margin: 0 0 0.9rem;
  font-size: 1.7rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.factory-text p {
  margin: 0 0 1rem;
  color: #3b5745;
  line-height: 1.7;
}

.factory-text strong {
  color: #0d2f23;
}

.factory-visual img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #dde8d9;
  display: flex;
  flex-direction: column;
}

.team-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f0f5ed;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center face;
}

.team-card h3 {
  margin: 1rem 1rem 0;
  font-size: 1.3rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  color: #0d2f23;
}

.team-role {
  margin: 0.4rem 1rem;
  font-size: 0.95rem;
  color: #4f9f3c;
  font-weight: 600;
}

.team-card p:not(.team-role) {
  margin: 0 1rem 1rem;
  color: #476858;
  font-size: 0.95rem;
  line-height: 1.65;
  flex-grow: 1;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid #dde8d9;
  overflow: hidden;
}

.cert-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.cert-card h3 {
  margin: 0;
  padding: 0.9rem 1rem 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.cert-card p {
  margin: 0;
  padding: 0.5rem 1rem 1rem;
  color: #476858;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .impact-grid,
  .product-grid,
  .contact-layout,
  .pillar-grid,
  .team-grid,
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factory-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .brand span {
    font-size: 1.35rem;
  }

  .nav-links {
    position: absolute;
    right: 1.1rem;
    top: 72px;
    width: min(260px, calc(100% - 2rem));
    padding: 0.9rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid #dce8d7;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.35rem 0.2rem;
  }

  .section {
    padding: 3.6rem 0;
  }
}

@media (max-width: 640px) {
  .impact-grid,
  .product-grid,
  .contact-layout,
  .pillar-grid,
  .team-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-content {
    padding: 4.5rem 0 4rem;
  }

  .map-wrap iframe {
    min-height: 320px;
  }

  .factory-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .team-image {
    height: 220px;
  }
}
