:root {
  --bg: #f7f4ed;
  --bg-soft: #fffaf0;
  --text: #1f2a22;
  --muted: #637060;
  --green: #315f3e;
  --green-2: #6a9f67;
  --lime: #dfeeb4;
  --kraft: #c99b63;
  --white: #ffffff;
  --line: rgba(31, 42, 34, 0.12);
  --shadow: 0 24px 70px rgba(45, 64, 42, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(223, 238, 180, 0.8), transparent 32rem), var(--bg);
  color: var(--text);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 237, 0.78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 22px;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--green);
  color: var(--lime);
  font-size: 13px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}
.nav a, .footer-links a { transition: color .2s ease; }
.nav a:hover, .footer-links a:hover { color: var(--green); }
.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(31, 42, 34, 0.08);
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 99px;
}

.hero { padding: 78px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 52px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(49, 95, 62, 0.09);
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 22px 0 20px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -0.07em;
}
h2 {
  margin: 14px 0 14px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}
h3 { margin-bottom: 8px; letter-spacing: -0.03em; }
.hero-content p, .section-heading p, .contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--green); color: var(--white); box-shadow: 0 18px 34px rgba(49, 95, 62, .2); }
.button.secondary { background: var(--white); color: var(--green); box-shadow: 0 18px 34px rgba(49, 95, 62, .08); }
.button.full { width: 100%; }
.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-stats div {
  min-width: 132px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}
.hero-stats strong { display: block; font-size: 24px; letter-spacing: -0.04em; }
.hero-stats span { display: block; color: var(--muted); font-size: 14px; }
.hero-card {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border-radius: 44px;
  background: linear-gradient(145deg, #fff7df, #dcebb7);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(49, 95, 62, .18);
  border-radius: 34px;
}
.floating-tag {
  position: absolute;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 32px rgba(49, 95, 62, .12);
  font-weight: 800;
  color: var(--green);
}
.tag-one { top: 46px; left: 42px; }
.tag-two { right: 46px; top: 118px; }
.package-scene {
  position: relative;
  height: 400px;
}
.cup, .bag, .box {
  position: absolute;
  filter: drop-shadow(0 26px 24px rgba(56, 73, 50, .18));
}
.cup {
  left: 42px;
  bottom: 56px;
  width: 150px;
  height: 230px;
  border-radius: 18px 18px 42px 42px;
  background: linear-gradient(110deg, #ffffff, #f1dfbf);
  clip-path: polygon(10% 0, 90% 0, 75% 100%, 25% 100%);
}
.cup span {
  position: absolute;
  inset: 76px 34px auto;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
}
.bag {
  right: 48px;
  bottom: 66px;
  width: 178px;
  height: 252px;
  border-radius: 22px 22px 12px 12px;
  background: linear-gradient(120deg, #d1a56d, #b77c3e);
}
.bag::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  width: 74px;
  height: 52px;
  transform: translateX(-50%);
  border: 8px solid rgba(255,255,255,.55);
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
}
.bag span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 42px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,.32);
}
.box {
  left: 150px;
  bottom: 20px;
  width: 210px;
  height: 118px;
  border-radius: 26px;
  background: linear-gradient(130deg, #ecd5ad, #c5965b);
}
.box::before {
  content: "";
  position: absolute;
  inset: 22px 0 auto;
  height: 2px;
  background: rgba(49, 95, 62, .2);
}
.box span {
  position: absolute;
  width: 54px;
  height: 54px;
  right: 28px;
  top: 34px;
  border-radius: 50%;
  background: rgba(49, 95, 62, .22);
}
.hero-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(12px);
}
.hero-card-footer strong, .hero-card-footer span { display: block; }
.hero-card-footer span { color: var(--muted); font-size: 14px; }
.hero-card-footer a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 24px;
}

.section { padding: 82px 0; }
.section-heading { margin-bottom: 34px; }
.row-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}
.compact { margin-bottom: 0; }
.product-grid, .catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(49, 95, 62, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 55px rgba(49, 95, 62, .13); }
.product-visual {
  min-height: 190px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(223, 238, 180, .95), rgba(255, 250, 240, .95));
  overflow: hidden;
}
.product-visual .product-icon {
  font-size: 72px;
  transform: rotate(-6deg);
}
.product-meta {
  padding: 18px 4px 4px;
}
.product-meta h3 { font-size: 22px; }
.product-meta p { color: var(--muted); margin-bottom: 16px; }
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price { font-weight: 900; color: var(--green); }
.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(49, 95, 62, .09);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}
.benefits { background: rgba(255,255,255,.34); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.benefit-card {
  padding: 30px;
  min-height: 260px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(49, 95, 62, .07);
}
.benefit-card.accent { background: var(--green); color: var(--white); }
.benefit-card.accent p { color: rgba(255,255,255,.75); }
.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--lime);
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 32px;
}
.benefit-card p { color: var(--muted); margin-bottom: 0; }
.catalog-note {
  max-width: 340px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
}
.catalog-note strong, .catalog-note span { display: block; }
.catalog-note span { color: var(--muted); font-size: 14px; margin-top: 4px; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.filter-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.74);
  color: var(--muted);
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.filter-button.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.process-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
  padding: 38px;
  border-radius: 42px;
  background: var(--text);
  color: var(--white);
}
.process .eyebrow { background: rgba(223,238,180,.12); color: var(--lime); }
.process .eyebrow::before { background: var(--lime); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.step {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.step span { color: var(--lime); font-weight: 900; }
.step p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.contact-list a, .contact-list span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaf5;
  padding: 14px 16px;
  outline: none;
  color: var(--text);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(106,159,103,.16);
}
.form-status {
  margin: 0;
  min-height: 24px;
  color: var(--green);
  font-weight: 700;
}
.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.44);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-logo { margin-bottom: 10px; }
.site-footer p { color: var(--muted); margin-bottom: 0; }
.footer-links { display: flex; gap: 20px; color: var(--muted); font-weight: 800; }
code {
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(49,95,62,.08);
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 940px) {
  .header-cta { display: none; }
  .menu-button { display: block; }
  .nav {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav.active { display: flex; }
  .nav a { padding: 12px 8px; }
  .hero-grid, .contact-grid, .process-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; }
  .hero-card { min-height: 440px; }
  .product-grid, .catalog-grid, .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .row-heading { align-items: start; flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, 1180px); }
  .hero, .section { padding: 54px 0; }
  .hero-card { min-height: 390px; padding: 18px; border-radius: 30px; }
  .package-scene { transform: scale(.82); transform-origin: center bottom; height: 315px; }
  .product-grid, .catalog-grid, .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats div { flex: 1; min-width: 120px; }
  .process-inner, .contact-form { padding: 22px; border-radius: 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 46px; }
}

.product-photo {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 24px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.catalog-message {
  min-height: 24px;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 700;
}

.form-status.success { color: var(--green); }
.form-status.error { color: #a33b2f; }
.request-link { white-space: nowrap; }
