:root {
  --ink: #17211b;
  --muted: #5f6b63;
  --line: #dbe3d7;
  --paper: #fbfcf6;
  --white: #ffffff;
  --leaf: #2f6c43;
  --leaf-dark: #174a2a;
  --tomato: #c94335;
  --lemon: #e5c744;
  --orange: #dc7f2a;
  --steel: #eef2f2;
  --shadow: 0 18px 50px rgba(23, 33, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 252, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--leaf-dark);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--leaf-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  min-height: calc(100svh - 71px);
  padding: clamp(36px, 7vw, 82px) clamp(18px, 5vw, 64px) clamp(28px, 5vw, 56px);
  gap: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(251, 252, 246, 0.98) 0%, rgba(251, 252, 246, 0.84) 48%, rgba(251, 252, 246, 0.45) 100%),
    linear-gradient(135deg, #f7faef 0%, #eef5e8 45%, #f5eee2 100%);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #344239;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--leaf-dark);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--leaf-dark);
}

.button.secondary {
  color: var(--leaf-dark);
  background: transparent;
}

.hero-visual {
  margin: 0;
  min-width: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 36px rgba(23, 33, 27, 0.16));
}

.intro,
.products,
.operation,
.retail-note,
.contact {
  padding: clamp(54px, 7vw, 94px) clamp(18px, 5vw, 64px);
}

.intro,
.retail-note,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(280px, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: start;
}

.intro p:last-child,
.retail-note p:last-child,
.contact p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.product-grid,
.operation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.operation-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 33, 27, 0.06);
}

.product-card p,
.operation-grid p {
  color: var(--muted);
}

.product-dot {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 1px var(--line), inset 0 -8px 16px rgba(23, 33, 27, 0.1);
}

.tomato .product-dot {
  background: var(--tomato);
}

.lemon .product-dot {
  background: var(--lemon);
}

.orange .product-dot {
  background: var(--orange);
}

.special .product-dot {
  border-radius: 8px;
  background: repeating-linear-gradient(90deg, var(--leaf) 0 6px, #f4f7ef 6px 11px);
}

.operation {
  background: var(--steel);
}

.operation-grid article {
  background: rgba(255, 255, 255, 0.78);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--leaf);
  font-size: 14px;
  font-weight: 800;
}

.retail-note {
  background: var(--leaf-dark);
  color: var(--white);
}

.retail-note .section-kicker,
.retail-note p:last-child {
  color: #d6ead8;
}

.contact {
  background: var(--white);
}

address {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  font-style: normal;
  font-weight: 700;
}

address a {
  color: var(--leaf-dark);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .retail-note,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid,
  .operation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 40px;
  }

  .product-grid,
  .operation-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
