:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-soft: #eff2f8;
  --text: #1f2937;
  --muted: #667085;
  --primary: #3a7a74;
  --primary-strong: #2f6761;
  --border: #e4e7ec;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--bg) 88%, white 12%);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  display: block;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.hero {
  padding: 76px 0 58px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.4px;
  margin: 0;
}

h1 {
  margin: 10px 0 14px;
  line-height: 1.2;
  font-size: clamp(1.9rem, 2.5vw, 2.9rem);
}

.subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-strong);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface);
}

.hero-image-wrap {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.section {
  padding: 58px 0;
}

.section-soft {
  background: var(--surface-soft);
  border-block: 1px solid var(--border);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.section-heading p {
  margin-top: 10px;
  color: var(--muted);
}

.product-grid {
  margin-top: 22px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.product-info h3 {
  margin: 0 0 8px;
}

.product-info p {
  margin: 0 0 12px;
  color: var(--muted);
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e7f4f2;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 600;
}

.gallery-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.gallery-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0;
}

.contact-card p {
  color: var(--muted);
  margin: 10px auto 18px;
  max-width: 58ch;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-content {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.image-modal {
  border: none;
  padding: 0;
  border-radius: 14px;
  width: min(900px, 92vw);
  background: transparent;
}

.image-modal::backdrop {
  background: rgba(0, 0, 0, 0.64);
}

.image-modal img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero-content,
  .product-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  nav {
    gap: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 540px) {
  .nav {
    flex-direction: column;
    padding: 12px 0;
  }

  .hero-image {
    height: 300px;
  }
}
