/* ───── reset & base ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --honey:       #F9A825;
  --honey-light: #FFF8E1;
  --honey-mid:   #FFE082;
  --green:       #558B2F;
  --green-light: #F1F8E9;
  --text:        #2C2C2A;
  --text-muted:  #5F5E5A;
  --text-hint:   #888780;
  --border:      rgba(44,44,42,0.12);
  --border-md:   rgba(44,44,42,0.22);
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --font:        'Inter', system-ui, sans-serif;
  --max:         1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #FAFAF8;
}

a { color: var(--honey); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; }

/* ───── layout ───── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ───── header / nav ───── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
}

.logo img { width: 36px; height: 36px; }

.logo span em {
  font-style: normal;
  color: var(--honey);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--honey); text-decoration: none; }

/* ───── hero ───── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #FFFDE7 0%, #FFF8E1 60%, #F1F8E9 100%);
  padding: 80px 0 64px;
  overflow: hidden;
}

.hero-comb {
  position: absolute;
  right: -20px;
  top: -10px;
  width: 320px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-content { position: relative; max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--honey-mid);
  color: #5D4037;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.hero h1 span { color: var(--honey); }

.hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--honey);
  color: #fff;
}

.btn-primary:hover { background: #F57F17; text-decoration: none; color: #fff; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-md);
  color: var(--text-muted);
}

.btn-outline:hover { border-color: var(--honey); color: var(--honey); text-decoration: none; }

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

/* ───── stats strip ───── */
.stats-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: flex;
  divide: var(--border);
}

.stat-item {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--honey);
  display: block;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ───── sections generic ───── */
.section { padding: 72px 0; }
.section-alt { background: #fff; }

.section-header { margin-bottom: 48px; }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
}

/* ───── info cards ───── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.section-alt .info-card { background: #FAFAF8; }

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--honey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg { width: 22px; height: 22px; }

.info-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ───── facts inserts ───── */
.facts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.fact-block {
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

.fact-block.honey { background: var(--honey-light); }
.fact-block.green { background: var(--green-light); }

.fact-block .quote {
  font-size: 32px;
  color: var(--honey);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.fact-block.green .quote { color: var(--green); }

.fact-block p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.fact-block .source {
  font-size: 12px;
  color: var(--text-hint);
  margin-top: 12px;
}

/* ───── healthy life section ───── */
.health-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.health-text h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }

.health-text p { font-size: 15px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }

.health-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

.health-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.health-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--honey);
  margin-top: 8px;
  flex-shrink: 0;
}

.health-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.health-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
}

.health-tile .hnum {
  font-size: 28px;
  font-weight: 700;
  color: var(--honey);
}

.health-tile .hlabel {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ───── contact form ───── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { font-size: 28px; font-weight: 700; margin-bottom: 14px; }
.contact-info p { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-detail svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--honey); }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group label .req { color: var(--honey); margin-left: 2px; }

.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: #FAFAF8;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--honey);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(249,168,37,0.12);
}

.form-group input::placeholder { color: var(--text-hint); }

.form-group input[readonly] {
  background: var(--honey-light);
  color: #5D4037;
  font-weight: 500;
  cursor: default;
}

.form-hint {
  font-size: 12px;
  color: var(--text-hint);
  margin-top: 4px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--honey);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}

.form-submit:hover { background: #F57F17; }
.form-submit:active { transform: scale(0.99); }
.form-submit:disabled { background: #ccc; cursor: not-allowed; }

.form-message {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}

.form-message.success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
  display: block;
}

.form-message.error {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
  display: block;
}

/* ───── footer ───── */
.site-footer {
  background: #2C2C2A;
  color: #B4B2A9;
  padding: 48px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: #888780; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #D3D1C7;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: #888780; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--honey); text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
  color: #5F5E5A;
}

/* ───── responsive ───── */
@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .facts-row { grid-template-columns: 1fr; }
  .health-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-bottom: 1px solid var(--border); }
}
