/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --cream:         #faf7f0;
  --cream-section: #f0ead8;
  --forest:        #1a3a0a;
  --green:         #2d5016;
  --green-mid:     #3d6b1f;
  --gold:          #c8a84b;
  --gold-light:    #e8d07a;
  --gold-muted:    rgba(200, 168, 75, 0.15);
  --brown:         #1c1a14;
  --text:          #3a3a28;
  --text-muted:    #6b6b50;
  --border:        #ddd8cc;
  --white:         #ffffff;
  --radius:        10px;
  --shadow:        0 2px 16px rgba(45, 80, 22, 0.08);
  --shadow-lg:     0 8px 32px rgba(45, 80, 22, 0.14);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--brown);
  line-height: 1.25;
}

a { transition: color 0.2s; }

/* ─── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--cream-section);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: Georgia, serif;
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--green);
}

.logo-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: var(--gold-muted);
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.45rem 1rem !important;
  border-radius: 6px;
}

.nav-cta:hover {
  background: var(--green-mid) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--text);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  padding: 5rem 1.5rem 4.5rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-muted);
  border: 1px solid rgba(200, 168, 75, 0.4);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  stroke: none;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--green);
  margin-bottom: 1.25rem;
}

.accent { color: var(--gold); }

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-mid); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--gold-muted); color: var(--green); }

.btn-gold { background: var(--gold); color: var(--brown); }
.btn-gold:hover { background: var(--gold-light); color: var(--brown); }

.btn-lg { padding: 0.85rem 1.6rem; font-size: 1rem; }

/* ─── TRUST BAR ───────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--green);
  padding: 0.875rem 1.5rem;
}

.trust-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─── SECTIONS ────────────────────────────────────────────────────────────── */
section { padding: 4.5rem 1.5rem; }

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-bg { background: var(--cream-section); }
.section-forest { background: var(--forest); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
}

/* ─── CARDS ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card h3 { font-size: 1.1rem; margin-bottom: 0.625rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-grid { display: grid; gap: 1.25rem; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── SPLIT LAYOUT ────────────────────────────────────────────────────────── */
.split-layout {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

/* ─── STEPS ───────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.step { text-align: center; }

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ─── SECTOR CARDS ────────────────────────────────────────────────────────── */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.sector-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.sector-card h3 {
  font-family: Georgia, serif;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.625rem;
}

.sector-card p { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; line-height: 1.6; }

.sector-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

/* ─── STATS ───────────────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }

.stat-number {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.55); }

/* ─── CALLOUT ─────────────────────────────────────────────────────────────── */
.callout {
  background: var(--green);
  border-radius: 14px;
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.callout h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.callout p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* ─── USP LIST ────────────────────────────────────────────────────────────── */
.usp-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.usp-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── PAGE HEADER ─────────────────────────────────────────────────────────── */
.page-header {
  background: var(--cream-section);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem 3rem;
}

.page-header-inner { max-width: 760px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--green);
  margin-bottom: 0.75rem;
}

.page-header p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ─── SUPPLIER GRID ───────────────────────────────────────────────────────── */
.supplier-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.supplier-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ─── FORMS ───────────────────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }

.contact-block { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.contact-item strong { display: block; margin-bottom: 0.2rem; font-size: 0.95rem; color: var(--text); }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
footer { background: var(--forest); color: rgba(255, 255, 255, 0.65); }

.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text strong { color: var(--gold); }
.footer-brand .logo-text span { color: rgba(255, 255, 255, 0.45); }
.footer-brand .logo-icon { background: rgba(255, 255, 255, 0.1); }

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col h4 {
  font-family: Georgia, serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold); }

/* ─── PRIVACY ─────────────────────────────────────────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.3rem; margin: 2.5rem 0 0.75rem; color: var(--green); }
.prose h3 { font-size: 1.05rem; margin: 1.75rem 0 0.5rem; }
.prose p, .prose li { font-size: 0.975rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 0.75rem; }
.prose ul { padding-left: 1.25rem; }
.prose a { color: var(--green); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.prose th { background: var(--cream-section); text-align: left; padding: 0.625rem 0.875rem; border: 1px solid var(--border); font-weight: 600; color: var(--text); font-size: 0.85rem; }
.prose td { padding: 0.625rem 0.875rem; border: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
.prose tr:nth-child(even) td { background: var(--cream); }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr !important; }
  .sector-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > *:last-child { order: -1; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}
