:root {
  --cream: #faf6ee;
  --cream-2: #f3ecdd;
  --ink: #1d1f18;
  --muted: #6b6a5e;
  --pistachio: #5c7a3c;
  --pistachio-dark: #3f5527;
  --almond: #d9b98c;
  --line: rgba(29, 31, 24, 0.12);
  --shadow: 0 24px 60px -24px rgba(29, 31, 24, 0.35);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.brand img { border-radius: 8px; }
.nav-links { display: flex; gap: 32px; font-size: 0.92rem; font-weight: 500; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--pistachio);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--pistachio-dark); box-shadow: var(--shadow); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.burger { display: none; background: none; border: 0; cursor: pointer; }
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); margin: 5px 0;
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px 24px 24px;
  background: rgba(250, 246, 238, 0.97);
  backdrop-filter: blur(14px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 0; font-weight: 500; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: zoom 18s ease forwards;
}
@keyframes zoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(22, 26, 15, 0.82) 0%, rgba(22, 26, 15, 0.45) 55%, rgba(22, 26, 15, 0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 120px;
  width: 100%;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--almond);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
}
.scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: #fff;
  border-radius: 4px;
  animation: drop 1.8s infinite;
}
@keyframes drop {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--pistachio);
  color: #fff;
}
.stat {
  padding: 44px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.stat:last-child { border-right: 0; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 6px;
}
.stat-label { font-size: 0.88rem; color: rgba(255, 255, 255, 0.85); }

/* ---------- Sections ---------- */
.section { padding: 110px 24px; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark .eyebrow { color: var(--almond); }
.section-dark p { color: rgba(250, 246, 238, 0.75); }
.section-accent { background: var(--cream-2); }

.section-head {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.section-head h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 14px; }
.section-head .lead { max-width: 46ch; color: var(--muted); font-size: 1.08rem; }

/* ---------- Commodity cards ---------- */
.card-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.comm-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 30px -18px rgba(29, 31, 24, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.comm-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.comm-img { height: 220px; overflow: hidden; }
.comm-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.comm-card:hover .comm-img img { transform: scale(1.08); }
.comm-body { padding: 26px 28px 30px; }
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pistachio);
  background: rgba(92, 122, 60, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.comm-body h3 { font-size: 1.7rem; margin-bottom: 8px; }
.comm-body p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Services ---------- */
.svc-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc {
  padding: 40px 34px;
  border: 1px solid rgba(250, 246, 238, 0.14);
  border-radius: 22px;
  background: rgba(250, 246, 238, 0.04);
  transition: background 0.3s ease, transform 0.3s ease;
}
.svc:hover { background: rgba(250, 246, 238, 0.08); transform: translateY(-6px); }
.svc-icon {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--almond);
  margin-bottom: 22px;
}
.svc h3 { font-size: 1.4rem; margin-bottom: 10px; }
.svc p { font-size: 0.95rem; }

/* ---------- Process ---------- */
.steps {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  padding: 34px 30px;
  background: #fff;
  border-radius: 22px;
  border-top: 4px solid var(--pistachio);
  box-shadow: 0 8px 30px -18px rgba(29, 31, 24, 0.25);
}
.step-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--pistachio);
  margin-bottom: 14px;
  display: block;
}
.step h3 { font-size: 1.35rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

.img-band {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.img-band img { width: 100%; height: 420px; object-fit: cover; }
.caption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ---------- Contact ---------- */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 14px; }
.contact-info > p { color: var(--muted); margin-bottom: 36px; }
.contact-list { list-style: none; }
.contact-list li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pistachio);
  margin-bottom: 4px;
}
.contact-list span, .contact-list a { font-size: 1.02rem; }
.contact-list a { font-weight: 600; }
.contact-list a:hover { color: var(--pistachio); }

.form {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.honey { display: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.form label span { color: var(--pistachio); }
.form input, .form select, .form textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--pistachio);
  box-shadow: 0 0 0 3px rgba(92, 122, 60, 0.15);
}
.form textarea { resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; }

/* ---------- Simple pages ---------- */
.simple-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 180px 24px 80px;
}
.simple-page h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
}
.simple-page p { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 34px 24px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--ink); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-inner > .btn { display: none; }
  .burger { display: block; }
  .stats, .card-grid, .svc-grid, .steps { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .stat:last-child { border-bottom: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 80px 20px; }
  .img-band img { height: 280px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
