:root {
  --ink: #14261c;
  --forest: #1b4332;
  --leaf: #2d6a4f;
  --mint: #95d5b2;
  --cream: #f6f1e6;
  --paper: #fffdf8;
  --earth: #c4a574;
  --muted: #5c6b61;
  --line: #e4dccb;
  --shadow: 0 18px 40px rgba(20, 38, 28, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .logo-word { font-family: "Fraunces", serif; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner, .nav {
  display: flex;
  align-items: center;
}
.header-inner { justify-content: space-between; min-height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.logo { height: 48px; width: auto; max-width: 200px; object-fit: contain; }
.logo-word { font-size: 1.35rem; letter-spacing: -0.02em; }
.nav { gap: 28px; }
.nav a { color: var(--muted); font-weight: 700; }
.nav a:hover, .nav a.active { color: var(--forest); }
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.btn-primary { background: var(--forest); color: #fff; }
.btn-ghost { background: #fff; color: var(--forest); border: 1px solid var(--line); }
.btn:hover { transform: translateY(-1px); }

.hero {
  padding: 72px 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--leaf);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 10px 0 16px;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 34rem; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-card {
  background: var(--paper);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card img { height: 420px; width: 100%; object-fit: cover; }
.hero-meta {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 700;
}

.section { padding: 72px 0; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 12px; }
.grid-3, .grid-2 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.card, .product, .quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card, .quote { padding: 28px; }
.product img { height: 210px; width: 100%; object-fit: cover; border-radius: 22px 22px 0 0; }
.product-body { padding: 20px 22px 24px; }
.price { color: var(--leaf); font-weight: 800; }

.banner {
  background: var(--forest);
  color: #edf7f0;
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}
.banner h2 { color: #fff; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.stat strong { display: block; font-size: 1.8rem; font-family: "Fraunces", serif; }

form { display: grid; gap: 14px; }
label { font-weight: 800; font-size: 0.92rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
}
.form-note { color: var(--muted); min-height: 1.4em; }
.form-note.ok { color: var(--leaf); }
.honey { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
}
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.contact-line { line-height: 1.7; }
.contact-line a { text-decoration: underline; text-underline-offset: 2px; }
.social { width: 100%; margin: 0; }
.social a { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    inset: 76px 20px auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .hero, .grid-3, .grid-2, .banner { grid-template-columns: 1fr; }
  .hero-card img { height: 280px; }
  .logo { height: 40px; max-width: 150px; }
}
