:root {
  --bg: #ffffff;
  --fg: #0b0b0b;
  --muted: #666;
  --accent: #111;
  --radius: 14px;
  --maxw: 1100px;
}

* {	
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  
}

/* ============================= */
/* HEADER */
/* ============================= */
header {
  background: transparent;
  padding: 24px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(4px);
  z-index: 50;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 20px;
}

.brand .logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: 800;
}

/* ============================= */
/* NAVIGATION LINKS */
/* ============================= */
.navlinks {
  display: flex;
  gap: 18px;
  align-items: center;
}

.navlinks a {
  padding: 8px 16px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navlinks a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--fg);
}

.navlinks a.active {
  background: #156E55;
  color: #ffffff;
  font-weight: 600;
}

.navlinks a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #156E55;
  border-radius: 2px;
}

/* ============================= */
/* CTA BUTTON */
/* ============================= */
.navlinks a.cta {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #000000;
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navlinks a.cta:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* GENERAL BUTTONS */
/* ============================= */
a.btn {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #000000;
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

a.btn:hover {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
a.btn1 {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #156E55;
  background: #156E55;
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

a.btn1:hover {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
a.btn2 {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #000000;
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

a.btn2:hover {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* ============================= */
/* PRODUCT BUTTON */
/* ============================= */
a.pbtn {
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #000000;
  background: #156E55;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: auto;
  width: fit-content;
  min-width: 120px;
}

a.pbtn:hover {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

a.pbtn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
  padding: 64px 0;
}

.hero h1 {
  font-size: 36px;
  margin: 0;
  line-height: 1.02;
}

.tagline {
  color: var(--muted);
  margin-top: 12px;
  font-size: 16px;
}

/* ============================= */
/* CARDS & PRODUCTS */
/* ============================= */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(11, 11, 11, 0.06);
  padding: 18px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.product {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  background: linear-gradient(180deg, #fff, #fbfbfb);
  display: flex;
  flex-direction: column;
}

.product img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product .meta {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================= */
/* FOOTER */
/* ============================= */
.footer {
  padding: 36px 0;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid #eee;
  margin-top: 36px;
}

/* ============================= */
/* GRID & FORMS */
/* ============================= */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  margin-bottom: 10px;
  font-size: 14px;
}

.map {
  height: 240px;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 36px 0;
  }

  .navlinks {
    display: none;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 18px;
  }

  .navlinks a.active::after {
    bottom: -4px;
    left: 12px;
    right: 12px;
  }
}
