:root {
  --bg-dark: #0d120e;
  --bg-darker: #080b09;
  --bg-light: #f3f0e7;
  --bg-cream: #e9e4d6;
  --green: #6b8e3a;
  --green-bright: #9ec94a;
  --green-deep: #2e3b22;
  --soil: #c9a06a;
  --text-light: #f3f0e7;
  --text-muted-light: rgba(243, 240, 231, 0.6);
  --text-dark: #1a1f17;
  --text-muted-dark: rgba(26, 31, 23, 0.55);
  --radius: 28px;
  --radius-lg: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 620px) {
  .wrap {
    padding: 0 20px;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 32px;
  transition: var(--transition);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-radius: 100px;
}
.nav.scrolled .nav-inner {
  background: rgba(8, 11, 9, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(243, 240, 231, 0.08);
  padding: 10px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--text-light);
  text-decoration: none;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  display: grid;
  place-items: center;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 500;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--green-bright);
}
.nav-cta {
  background: var(--green-bright);
  color: var(--bg-dark);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(158, 201, 74, 0.35);
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 120px;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(8, 11, 9, 0.25),
    rgba(8, 11, 9, 0.93)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.serif {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
}
.hero p {
  font-size: 1.25rem;
  color: var(--text-muted-light);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}
.btn-primary {
  background: var(--green-bright);
  color: var(--bg-dark);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(158, 201, 74, 0.4);
}
.btn-ghost {
  border: 1px solid rgba(243, 240, 231, 0.3);
  color: var(--text-light);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(243, 240, 231, 0.08);
  transform: translateY(-2px);
}
.hero-meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 1.1rem;
  font-weight: 600;
}
.hero-meta span {
  color: var(--green-bright);
}
@media (max-width: 620px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 70px;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero p {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }
  .hero-actions {
    margin-bottom: 36px;
  }
  .hero-meta {
    gap: 18px;
    font-size: 0.95rem;
  }
}

.marquee {
  background: var(--bg-darker);
  padding: 28px 0;
  border-top: 1px solid rgba(243, 240, 231, 0.08);
  border-bottom: 1px solid rgba(243, 240, 231, 0.08);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 24px;
}
.marquee-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scroll-x 32s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-muted-light);
}

.eyebrow {
  color: var(--green-bright);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 120px 0;
}
.section-light .eyebrow {
  color: var(--green);
}
.stats-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.stats-header h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 800;
}
.stats-header p {
  color: var(--text-muted-dark);
  align-self: end;
}
@media (max-width: 980px) {
  .stats-header {
    grid-template-columns: 1fr;
  }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.stat-card.accent {
  background: var(--green-deep);
  color: var(--text-light);
}
.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(107, 142, 58, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.stat-card.accent .stat-icon {
  background: rgba(243, 240, 231, 0.15);
}
.stat-num {
  font-size: 3rem;
  font-weight: 800;
  margin-top: auto;
}
.stat-num .unit {
  font-size: 1.1rem;
  font-weight: 600;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  margin-top: 8px;
}
.stat-card.accent .stat-label {
  color: rgba(243, 240, 231, 0.7);
}
@media (max-width: 980px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.services {
  padding: 120px 0;
}
.services-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.services-head h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 16px 0;
}
.services-head p {
  color: var(--text-muted-light);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: var(--transition);
}
.svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
  z-index: 0;
}
.svc-card:hover .svc-bg {
  transform: scale(1.06);
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 11, 9, 0.9), transparent 60%);
}
.svc-card > div:last-child {
  position: relative;
  z-index: 2;
}
.svc-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(158, 201, 74, 0.15);
  color: var(--green-bright);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.svc-card h3 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.svc-card p {
  color: var(--text-muted-light);
  margin-bottom: 24px;
}
.svc-link {
  color: var(--green-bright);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 980px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.products {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 120px 0;
}
.products .eyebrow {
  color: var(--green);
}
.products-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.products-head h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 16px 0;
}
.products-head p {
  color: var(--text-muted-dark);
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prod-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.prod-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.prod-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.prod-body p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  margin-bottom: 20px;
}
.prod-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prod-price {
  font-size: 1.5rem;
  font-weight: 800;
}
.prod-btn {
  background: var(--green-deep);
  color: var(--text-light);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.prod-btn:hover {
  background: var(--green);
}
@media (max-width: 980px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

.steps {
  padding: 120px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.step-card {
  background: rgba(243, 240, 231, 0.04);
  border: 1px solid rgba(243, 240, 231, 0.1);
  border-radius: var(--radius);
  padding: 36px;
}
.step-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-bright);
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-muted-light);
  font-size: 0.98rem;
}
@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.cta-band {
  background: var(--bg-darker);
  padding: 80px 0;
}
.cta-panel {
  background: linear-gradient(135deg, var(--green-deep), #1c2616);
  border-radius: 48px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
}
.cta-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(158, 201, 74, 0.18),
    transparent 70%
  );
}
.cta-panel h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.cta-panel p {
  color: var(--text-muted-light);
  max-width: 460px;
  margin-bottom: 24px;
}

.page-hero {
  padding: 180px 0 80px;
  background: var(--bg-darker);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-hero p {
  color: var(--text-muted-light);
  max-width: 640px;
  margin-top: 16px;
  font-size: 1.1rem;
}
.page-body {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 80px 0 100px;
}
.page-body h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 40px 0 14px;
}
.page-body h2:first-child {
  margin-top: 0;
}
.page-body p,
.page-body li {
  color: rgba(26, 31, 23, 0.75);
  margin-bottom: 12px;
}
.page-body ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.page-body a {
  color: var(--green);
}
.page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 28px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.page-body th,
.page-body td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(26, 31, 23, 0.08);
  font-size: 0.95rem;
}
.page-body th {
  background: var(--green-deep);
  color: var(--text-light);
}
.narrow {
  max-width: 820px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
}
.form-row {
  margin-bottom: 20px;
}
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(26, 31, 23, 0.15);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-light);
}
.form-row textarea {
  min-height: 130px;
  resize: vertical;
}
.form-ok {
  background: rgba(107, 142, 58, 0.12);
  border: 1px solid var(--green);
  color: var(--green-deep);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 24px;
  font-weight: 600;
}
.info-card {
  background: var(--green-deep);
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 40px;
  height: fit-content;
}
.info-card h3 {
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.info-card p {
  color: rgba(243, 240, 231, 0.75);
  margin-bottom: 10px;
}
.info-card a {
  color: var(--green-bright);
  text-decoration: none;
}

.footer {
  background: var(--bg-darker);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(243, 240, 231, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.footer-about {
  margin-top: 16px;
  max-width: 280px;
  color: var(--text-muted-light);
  font-size: 0.95rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-muted-light);
}
.footer-cols a,
.footer-cols span {
  display: block;
  color: var(--text-muted-light);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.footer-cols a:hover {
  color: var(--green-bright);
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 240, 231, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 200;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(8, 11, 9, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(243, 240, 231, 0.12);
  border-radius: 20px;
  padding: 24px 28px;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 16px;
}
.cookie-banner a {
  color: var(--green-bright);
}
.cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-actions .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}
