:root {
  --ink: #14241f;
  --muted: #5a6f68;
  --accent: #1f7a5c;
  --accent-2: #c45c26;
  --panel: #ffffff;
  --line: #d5e0db;
  --display: "Syne", "DM Sans", sans-serif;
  --font: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(31,122,92,.16), transparent 60%),
    radial-gradient(700px 380px at 100% 10%, rgba(196,92,38,.1), transparent 55%),
    linear-gradient(165deg, #eef5f1, #f7f3ee 50%, #eaf2ee);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
.site-header, .site-footer, main {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
}
.logo {
  font-family: var(--display);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}
nav { display: flex; gap: 1rem; font-weight: 600; color: var(--muted); font-size: .95rem; }
nav a:hover { color: var(--accent); }

.hero { padding: 2.5rem 0 1.5rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 .6rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -.03em;
  margin: 0 0 .75rem;
  max-width: 14ch;
}
.lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0;
}

.catalog { padding: 1rem 0 3rem; }
.product {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 0;
  background: var(--panel);
  border: 1px solid rgba(20,36,31,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(11,31,28,.1);
}
@media (max-width: 760px) {
  .product { grid-template-columns: 1fr; }
}
.product-visual {
  position: relative;
  min-height: 220px;
  background: #0b1f1c;
  overflow: hidden;
}
.product-visual > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
.product-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  background: #fff;
  object-fit: cover;
}
.product-body { padding: 1.6rem 1.7rem; }
.product-body h2 {
  font-family: var(--display);
  margin: 0 0 .55rem;
  font-size: 1.55rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.title-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}
.product-body p { color: var(--muted); line-height: 1.5; margin: 0 0 1rem; }
.product-body ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--ink);
  line-height: 1.55;
}
.cta-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.btn:hover { background: #17634a; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: #f0f4f2; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid rgba(20,36,31,.08);
}
