:root {
  --bg: #f8f4ec;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --text: #2f332b;
  --muted: #6d6b62;
  --green: #6d8a5f;
  --green-dark: #3f5b36;
  --olive: #77704d;
  --brown: #7c5644;
  --gold: #d4b36d;
  --line: rgba(63, 91, 54, .16);
  --shadow: 0 22px 80px rgba(63, 91, 54, .14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 185, 123, .32), transparent 34rem),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 48%, #f5efe4 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(63,91,54,.10) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 65%);
  z-index: -2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.page-glow {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
  opacity: .55;
}
.page-glow-one { background: rgba(109, 138, 95, .24); top: 12%; right: -10rem; }
.page-glow-two { background: rgba(212, 179, 109, .22); bottom: -8rem; left: -8rem; }

.site-header {
  width: min(calc(100% - 28px), var(--max));
  position: sticky;
  top: 14px;
  z-index: 50;
  margin: 14px auto 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 253, 248, .78);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(63, 91, 54, .10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 4px;
  min-width: max-content;
}
.brand img { width: 42px; height: 42px; }
.brand strong { display: block; line-height: 1; letter-spacing: -.02em; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav a:hover { color: var(--green-dark); background: rgba(109, 138, 95, .09); }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
  min-height: 46px;
  white-space: nowrap;
}
.header-cta {
  padding: 11px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 24px rgba(63, 91, 54, .23);
}
.header-cta:hover,
.btn:hover { transform: translateY(-2px); }

.hero {
  width: min(calc(100% - 32px), var(--max));
  margin: 72px auto 56px;
  display: grid;
  grid-template-columns: 1.02fr .78fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6.8vw, 82px);
  line-height: .95;
  letter-spacing: -.07em;
  color: #293226;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}
h3 { letter-spacing: -.025em; }

.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-actions,
.contact-actions,
.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn { padding: 13px 20px; }
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 18px 34px rgba(63, 91, 54, .25);
}
.btn-soft {
  background: rgba(255,255,255,.68);
  border-color: var(--line);
  color: var(--green-dark);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  max-width: 680px;
}
.trust-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, .66);
}
.trust-row b { display: block; font-size: 18px; color: var(--green-dark); }
.trust-row span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.hero-card {
  position: relative;
  padding: 16px;
  border-radius: 40px;
  background: rgba(255, 253, 248, .70);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-image-wrap {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4 / 5.15;
  background: #e9e4d8;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.floating-note {
  position: absolute;
  left: -18px;
  bottom: 48px;
  width: min(260px, 74%);
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(63, 91, 54, .18);
  backdrop-filter: blur(16px);
}
.floating-note span { color: var(--muted); display: block; font-size: 13px; }
.floating-note strong { color: var(--green-dark); display: block; margin-top: 4px; }

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 72px 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-heading p,
.intro-text { color: var(--muted); font-size: 17px; line-height: 1.75; }
.intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .68);
  box-shadow: 0 16px 50px rgba(63, 91, 54, .09);
}
.intro-text { margin-bottom: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 253, 248, .82);
  border: 1px solid var(--line);
  box-shadow: 0 15px 45px rgba(63, 91, 54, .08);
}
.product-card.featured { grid-column: span 2; }
.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center top;
  background: #ebe4d8;
}
.product-card.featured img { height: 300px; }
.product-content {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.tag {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(109, 138, 95, .12);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-content h3 { font-size: 24px; margin: 14px 0 10px; }
.product-content p { color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.price {
  margin-top: auto;
  margin-bottom: 8px;
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--olive);
  color: #fff;
  font-weight: 900;
}
.product-content small { color: var(--muted); line-height: 1.4; }
.product-content a {
  margin-top: 16px;
  font-weight: 900;
  color: var(--green-dark);
}

.process {
  padding: 54px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255, 253, 248, .58)),
    radial-gradient(circle at 100% 0%, rgba(109,138,95,.18), transparent 30rem);
  box-shadow: var(--shadow);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.steps div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line);
}
.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  margin-bottom: 18px;
}
.steps h3 { margin-bottom: 8px; font-size: 22px; }
.steps p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }

.catalog-actions { margin-bottom: 22px; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.catalog-item {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(63, 91, 54, .08);
  cursor: zoom-in;
  transition: .2s ease;
}
.catalog-item:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(63, 91, 54, .14); }
.catalog-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
}

.partner-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, .72);
  border: 1px solid var(--line);
  box-shadow: 0 15px 45px rgba(63, 91, 54, .08);
}
.partner-list {
  margin: 0;
  padding-left: 22px;
  columns: 3;
  column-gap: 48px;
  color: var(--text);
  font-weight: 700;
  line-height: 2;
}

.faq-list {
  display: grid;
  gap: 12px;
}
details {
  background: rgba(255, 253, 248, .82);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--green-dark);
}
details p { margin: 12px 0 0; color: var(--muted); line-height: 1.7; }

.contact {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 72px;
}
.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 64px);
  border-radius: 42px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  box-shadow: var(--shadow);
}
.contact-card::after {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 44px solid rgba(255,255,255,.12);
}
.contact-card .eyebrow { color: #fff; }
.contact-card .eyebrow::before { background: var(--gold); }
.contact-card h2 { max-width: 820px; }
.contact-card p { max-width: 680px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.7; }
.contact-card .btn-primary { background: #fff; color: var(--green-dark); box-shadow: 0 18px 34px rgba(0,0,0,.12); }
.contact-card .btn-soft { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.26); color: #fff; }

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 28px;
  padding: 24px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer strong { color: var(--text); }
.site-footer p { margin: 4px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.footer-links a { color: var(--green-dark); font-weight: 800; }

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(37, 211, 102, .34);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(23, 28, 20, .76);
  backdrop-filter: blur(10px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-height: min(92vh, 1000px);
  max-width: min(92vw, 760px);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; margin-top: 46px; }
  .hero-card { max-width: 560px; margin: 0 auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .intro { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    border-radius: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .brand { flex: 1; }
  .brand small { display: none; }
  .nav { order: 3; width: 100%; overflow-x: auto; padding: 2px; }
  .nav a { padding: 9px 10px; }
  .header-cta { padding: 10px 14px; min-height: 40px; }
  .hero { margin-top: 36px; gap: 28px; }
  h1 { letter-spacing: -.055em; }
  .trust-row { grid-template-columns: 1fr; }
  .floating-note { left: 14px; bottom: 20px; }
  .section { padding: 50px 0; }
  .intro, .process { padding: 24px; border-radius: 26px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: auto; }
  .product-card img, .product-card.featured img { height: 250px; }
  .steps { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-item img { height: 230px; }
  .partner-list { columns: 1; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .hero-actions .btn,
  .contact-actions .btn,
  .catalog-actions .btn { width: 100%; }
  .catalog-grid { gap: 10px; }
  .catalog-item img { height: 190px; }
}
