:root {
  --bg: #f6f5f1;
  --surface: #ffffff;
  --surface-strong: #1f2522;
  --text: #1e1f1d;
  --muted: #66706b;
  --line: #d9ddd7;
  --accent: #46c14d;
  --accent-dark: #1d7d35;
  --shadow: 0 18px 40px rgba(18, 34, 24, 0.08);
  --radius: 24px;
  --wrap: min(1120px, calc(100vw - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(70, 193, 77, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfaf7 0%, #f4f2ed 100%);
}
img { max-width: 100%; display: block; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
.wrap { width: var(--wrap); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(217, 221, 215, 0.8);
}
.header-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img, .footer-logo { width: min(230px, 52vw); height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.site-nav a {
  padding: 10px 0;
  font-size: 0.98rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}
.site-nav a[aria-current="page"],
.site-nav a:hover { color: var(--text); border-color: var(--accent); }
.hero, .page-hero, .contact-hero { padding: 56px 0 32px; }
.hero-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.hero-copy h1, .page-hero h1, .contact-hero h1 {
  margin: 0 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.hero-copy p, .page-hero p, .lead { max-width: 62ch; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}
.button-primary { background: var(--accent); color: #fff; }
.button-secondary { background: transparent; border-color: var(--line); }
.button-dark { background: #2f332f; color: #fff; }
.hero-media {
  position: relative;
  min-height: 420px;
}
.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.hero-slider {
  overflow: hidden;
}
.hero-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 480ms ease;
}
.hero-slider img.is-active {
  opacity: 1;
}
.hero-slider-dots {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.hero-slider-dot.is-active {
  background: #fff;
}
.product-strip { padding: 8px 0 24px; }
.product-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.mini-index {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef6ee;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
}
.section { padding: 42px 0; }
.section-muted { background: rgba(255,255,255,0.5); border-top: 1px solid rgba(217,221,215,0.65); border-bottom: 1px solid rgba(217,221,215,0.65); }
.section-heading { margin-bottom: 24px; }
.section-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}
.feature-grid, .catalog-grid, .footer-grid { display: grid; gap: 20px; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card, .catalog-card, .contact-panel {
  background: var(--surface);
  border: 1px solid rgba(217,221,215,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card { padding: 24px; }
.feature-card h3, .catalog-copy h3, .contact-panel h2 {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
}
.feature-card p, .catalog-copy p, .contact-panel li { color: var(--muted); line-height: 1.7; }
.catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.catalog-card { overflow: hidden; }
.catalog-card img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.catalog-copy { padding: 20px; }
.catalog-copy a { color: var(--accent-dark); font-weight: 700; }
.gallery-preview, .masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-preview figure,
.masonry-card {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  background: #e9ece4;
  box-shadow: var(--shadow);
}
.gallery-preview img, .masonry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: rgba(15, 18, 16, 0.88);
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.lightbox-image {
  max-width: min(1100px, 100%);
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.lightbox-caption {
  color: #edf2ec;
  text-align: center;
  line-height: 1.5;
}
.lightbox-close,
.lightbox-nav {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 2.2rem;
  line-height: 1;
}
.center-action { margin: 24px 0 0; text-align: center; }
.page-main { padding-bottom: 24px; }
.contact-panel { padding: 24px; }
.contact-panel ul, .footer-links { margin: 0; padding: 0; list-style: none; }
.contact-panel li, .footer-links li { margin: 0 0 10px; }
.contact-list { margin: 24px 0 0; display: grid; gap: 16px; }
.contact-list dt {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-list dd { margin: 0; color: var(--text); line-height: 1.7; }
.site-footer {
  margin-top: 36px;
  padding: 40px 0 28px;
  background: #f2f0ea;
  border-top: 1px solid rgba(217,221,215,0.8);
}
.footer-grid { grid-template-columns: 1.2fr 1fr; }
.footer-grid h2 {
  margin: 18px 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
}
.footer-grid p, .footer-links a { color: var(--muted); line-height: 1.7; }
.footer-meta { padding-top: 18px; font-size: 0.92rem; color: var(--muted); }
@media (max-width: 920px) {
  .hero-grid, .contact-grid, .feature-grid, .catalog-grid, .footer-grid, .gallery-preview, .masonry-grid {
    grid-template-columns: 1fr;
  }
  .product-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero, .page-hero, .contact-hero, .section { padding: 32px 0; }
  .hero-media img { min-height: 260px; }
}
@media (max-width: 640px) {
  .header-row { min-height: 78px; align-items: flex-start; padding: 14px 0; }
  .site-nav { width: 100%; gap: 14px; }
  .product-strip-grid { grid-template-columns: 1fr; }
  .mini-card { padding: 14px 16px; }
  .hero-copy h1, .page-hero h1, .contact-hero h1 { font-size: clamp(2.3rem, 13vw, 3.2rem); }
  .feature-card h3, .catalog-copy h3, .contact-panel h2, .footer-grid h2 { font-size: 1.7rem; }
  .lightbox {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .lightbox-nav {
    position: absolute;
    bottom: 20px;
  }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
}
