
:root {
  --bg: #fbfaf6;
  --paper: #ffffff;
  --text: #2b2a26;
  --muted: #6d6a63;
  --olive: #647526;
  --olive-dark: #415017;
  --gold: #d59d1b;
  --beige: #e4d7bf;
  --beige-deep: #d7c4a4;
  --border: #ece6d9;
  --shadow: 0 16px 40px rgba(70, 71, 36, 0.10);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.topbar {
  background: linear-gradient(90deg, var(--olive-dark), var(--olive));
  color: #fff8eb;
  font-size: 14px;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: .02em;
}
.topbar a,
.topbar span {
  display: inline-block;
  margin: 0 5px;
}
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,246,.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(100,117,38,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 86px;
}
.brand {
  display: flex; align-items: center; gap: 14px; font-size: 26px; font-weight: 700; color: var(--olive-dark);
}
.brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.brand small { display: block; font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
.brand span { display: block; line-height: 1.05; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-size: 16px; color: var(--muted); transition: .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--olive-dark); }
.mobile-toggle { display: none; font-size: 28px; cursor: pointer; color: var(--olive-dark); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-size: 16px; font-weight: 700; transition: .25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--olive); color: #fff; box-shadow: 0 12px 24px rgba(100,117,38,.22); }
.btn-primary:hover { background: var(--olive-dark); transform: translateY(-1px); }
.btn-outline { border-color: rgba(100,117,38,.25); color: var(--olive-dark); background: transparent; }
.btn-outline:hover { background: #f3efe4; }
main section { padding: 84px 0; }
.hero { padding-top: 72px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px; background: #f4efe2; color: var(--olive-dark);
  font-size: 13px; letter-spacing: .08em; font-weight: 700; text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 16px; font-weight: 700; }
h1 { font-size: clamp(38px, 6vw, 68px); color: var(--olive-dark); }
h2 { font-size: clamp(30px, 4vw, 46px); color: var(--olive-dark); }
h3 { font-size: 24px; }
p { margin: 0 0 16px; }
.lead { font-size: 18px; color: var(--muted); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-visual {
  background: radial-gradient(circle at top left, #fff, #f1eadb);
  border: 1px solid var(--border); border-radius: 36px; padding: 34px; box-shadow: var(--shadow);
}
.hero-card {
  background: var(--paper); border-radius: 28px; padding: 26px; border: 1px solid var(--border);
}
.hero-logo {
  display: flex; align-items: center; justify-content: center; padding: 12px; background: #fff; border-radius: 24px; border: 1px solid #f1eadc;
}
.hero-logo img { width: min(100%, 350px); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.stat {
  background: #fffaf0; padding: 18px; border-radius: 18px; border: 1px solid #eee4cf;
}
.stat strong { display: block; font-size: 28px; color: var(--olive-dark); }
.section-head { display: flex; justify-content: space-between; gap: 26px; align-items: end; margin-bottom: 34px; }
.section-head.center { text-align: center; display: block; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card, .product, .blog-card, .contact-card, .value-card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: 0 8px 24px rgba(111,108,88,0.05);
}
.card .icon, .value-card .icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; font-size: 26px; background: #f8f2e6; margin-bottom: 16px; }
.product-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-img {
  aspect-ratio: 4/3; border-radius: 18px; background: linear-gradient(135deg, #f7f0df, #efe5cf);
  display: grid; place-items: center; font-size: 44px; margin-bottom: 18px; color: var(--olive-dark);
}
.tag {
  display: inline-block; margin-top: 10px; padding: 7px 12px; border-radius: 999px; background: #f5efdf; color: var(--olive-dark); font-size: 13px; font-weight: 700;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.story-box {
  background: linear-gradient(160deg, #fffdf8, #f5eee1); border: 1px solid var(--border); border-radius: 30px; padding: 34px; box-shadow: var(--shadow);
}
.list { padding: 0; margin: 0; list-style: none; }
.list li { padding-left: 28px; position: relative; margin-bottom: 14px; color: var(--muted); }
.list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700;
}
.banner {
  background: linear-gradient(135deg, var(--olive-dark), var(--olive)); color: #fff8ea; border-radius: 32px; padding: 34px; display: flex; justify-content: space-between; gap: 20px; align-items: center;
}
.subtle { background: linear-gradient(180deg, #f8f3e7, #fbfaf6); }
.timeline { display: grid; gap: 20px; }
.timeline-item { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start; }
.timeline-item .year { width: 72px; height: 72px; border-radius: 24px; background: #f6efde; display: grid; place-items: center; color: var(--olive-dark); font-weight: 700; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 14px; font-weight: 700; color: var(--olive-dark); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 14px 15px; border-radius: 16px; border: 1px solid #ddd5c4; font: inherit; background: #fff;
}
textarea { min-height: 170px; resize: vertical; }
.note { font-size: 14px; color: var(--muted); }
.footer {
  background: #233115; color: #f7eedc; padding: 60px 0 18px; margin-top: 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 24px; }
.footer h4 { color: #fff8ea; margin-bottom: 14px; font-size: 19px; }
.footer a, .footer span { display: block; color: #dfd4c2; margin-bottom: 10px; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 28px; padding-top: 16px; font-size: 14px; color: #cabda8; }
.page-hero { padding: 70px 0 40px; }
.page-hero .hero-panel {
  background: linear-gradient(160deg, #fffefb, #f4ecdd); border: 1px solid var(--border); border-radius: 34px; padding: 40px;
}
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.metric { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 20px; }
.metric strong { display: block; font-size: 30px; color: var(--olive-dark); }
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid, .footer-grid, .section-head, .page-hero .hero-panel { grid-template-columns: 1fr; display: grid; }
  .grid-3, .grid-4, .product-grid, .blog-grid, .metric-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: absolute; top: 86px; left: 0; right: 0; background: var(--paper); padding: 16px 20px 22px; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--border); display: none;
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
}
@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .grid-3, .grid-4, .product-grid, .blog-grid, .metric-grid, .stat-row, .form-grid { grid-template-columns: 1fr; }
  main section { padding: 68px 0; }
  .nav-inner { min-height: 78px; }
  .brand { font-size: 22px; }
  .brand img { width: 48px; height: 48px; }
  .banner { padding: 28px; }
}
