:root {
  --forest: #244b2a;
  --forest-dark: #17331c;
  --leaf: #5f7f3a;
  --earth: #6d4c2f;
  --tan: #f4ead7;
  --cream: #fffaf0;
  --paper: #ffffff;
  --text: #263126;
  --muted: #66715f;
  --line: #ddd0b8;
  --gold: #c99a3d;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(rgba(255,250,240,0.88), rgba(255,250,240,0.88)), url('../images/2014-forest-floor-bg.jpg');
  background-size: 520px auto;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.top-bar { background: var(--forest-dark); color: #f6eddc; font-family: Arial, sans-serif; font-size: 14px; padding: 8px 20px; text-align: center; }
.top-bar a { color: #f6eddc; text-decoration: underline; text-underline-offset: 2px; }
.top-bar a:hover { color: #e6c77d; }

.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.nav-wrap { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; gap: 24px; }
.logo { display: flex; flex-direction: column; line-height: 1.05; }
.logo strong { color: var(--forest); font-size: 32px; letter-spacing: -0.5px; }
.logo span { color: var(--earth); font-family: Arial, sans-serif; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; }
nav ul { display: flex; list-style: none; gap: 20px; font-family: Arial, sans-serif; font-size: 15px; color: var(--forest-dark); align-items: center; }
nav a:hover { color: var(--leaf); }
.nav-button { background: var(--forest); color: white; padding: 10px 16px; border-radius: 999px; font-weight: bold; }
.hero { background: linear-gradient(90deg, rgba(20,38,20,0.88), rgba(35,68,34,0.58)), url('../images/2014-ginseng-woods-hero.jpg'); background-size: cover; background-position: center center; color: white; padding: 74px 22px 66px; border-bottom: 5px solid #6d4c2f; }
.hero-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 42px; align-items: center; }
.eyebrow { font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: #e6c77d; margin-bottom: 12px; font-weight: bold; }
.hero h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.02; max-width: 760px; margin-bottom: 22px; }
.hero p { font-family: Arial, sans-serif; font-size: 20px; max-width: 660px; color: #f5eddf; margin-bottom: 30px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-block; font-family: Arial, sans-serif; font-weight: bold; border-radius: 6px; padding: 14px 22px; transition: 0.2s ease; }
.btn-primary { background: var(--gold); color: #1f281f; }
.btn-primary:hover { background: #e1b34f; }
.btn-secondary { background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.45); color: white; }
.hero-card { background: linear-gradient(rgba(255,250,240,0.96), rgba(244,234,215,0.96)), url('../images/2014-parchment-panel.jpg'); color: var(--text); border-radius: 6px; padding: 28px; box-shadow: 0 14px 34px rgba(0,0,0,0.32); border: 3px double #8b6b3d; }
.hero-card h2 { color: var(--forest); font-size: 28px; margin-bottom: 14px; }
.hero-card ul { margin-left: 22px; font-family: Arial, sans-serif; color: var(--muted); }
.hero-card li { margin-bottom: 8px; }
section { padding: 64px 22px; }
.container { max-width: 1180px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 36px; }
.section-title .eyebrow { color: var(--leaf); }
.section-title h2 { color: var(--forest-dark); font-size: clamp(32px, 4vw, 48px); line-height: 1.1; margin-bottom: 12px; }
.section-title p { font-family: Arial, sans-serif; color: var(--muted); font-size: 18px; max-width: 760px; margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card, .product-card, .guide-card, .forum-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: 0 10px 24px rgba(36,75,42,0.07); }
.feature-card h3, .product-card h3, .guide-card h3, .forum-card h3 { color: var(--forest); font-size: 25px; margin-bottom: 10px; }
.feature-card p, .product-card p, .guide-card p, .forum-card p { font-family: Arial, sans-serif; color: var(--muted); margin-bottom: 16px; }
.text-link { font-family: Arial, sans-serif; color: var(--forest); font-weight: bold; }
.notice { background: var(--tan); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.notice-box { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; background: var(--paper); border: 1px solid var(--line); padding: 28px; border-radius: 18px; }
.notice h2 { color: var(--forest-dark); font-size: 34px; margin-bottom: 8px; }
.notice p { font-family: Arial, sans-serif; color: var(--muted); font-size: 17px; }
.guide-hub-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.guide-sidebar { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 22px; box-shadow: 0 10px 24px rgba(36,75,42,0.07); }
.guide-sidebar h3 { color: var(--forest-dark); font-size: 24px; margin-bottom: 12px; }
.guide-sidebar ul { list-style: none; font-family: Arial, sans-serif; }
.guide-sidebar li { border-bottom: 1px solid var(--line); }
.guide-sidebar li:last-child { border-bottom: 0; }
.guide-sidebar a { display: block; padding: 10px 0; color: var(--forest); font-weight: bold; }
.guide-feature { background: linear-gradient(rgba(23,51,28,0.9), rgba(36,75,42,0.82)), url('../images/ginseng-growing-guide.jpg'); background-size: cover; background-position: center; color: white; border-radius: 12px; padding: 34px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,0.18); }
.guide-feature h3 { font-size: 34px; line-height: 1.12; margin-bottom: 12px; }
.guide-feature p { font-family: Arial, sans-serif; color: #f4ead7; font-size: 17px; max-width: 720px; margin-bottom: 22px; }
.guide-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.guide-card-new { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 22px; box-shadow: 0 10px 24px rgba(36,75,42,0.07); }
.guide-card-new h3 { color: var(--forest); font-size: 23px; line-height: 1.18; margin-bottom: 10px; }
.guide-card-new p { font-family: Arial, sans-serif; color: var(--muted); margin-bottom: 14px; }
.guide-cta { margin-top: 28px; background: var(--paper); border: 3px double #8b6b3d; border-radius: 12px; padding: 28px; text-align: center; }
.guide-cta h3 { color: var(--forest-dark); font-size: 30px; margin-bottom: 8px; }
.guide-cta p { font-family: Arial, sans-serif; color: var(--muted); margin-bottom: 18px; }
.forum-preview { background: var(--forest-dark); color: white; }
.forum-simple { text-align: center; max-width: 860px; }
.forum-simple h2 { color: white; font-size: clamp(34px, 5vw, 52px); line-height: 1.1; margin-bottom: 16px; }
.forum-simple p { font-family: Arial, sans-serif; color: #e4d9c7; font-size: 19px; max-width: 720px; margin: 0 auto 26px; }
.email-box { background: var(--tan); border-radius: 18px; padding: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; border: 1px solid var(--line); }
.email-box h2 { color: var(--forest-dark); font-size: 36px; line-height: 1.15; margin-bottom: 10px; }
.email-box p { font-family: Arial, sans-serif; color: var(--muted); }
.email-form { display: flex; gap: 10px; background: white; padding: 8px; border-radius: 10px; border: 1px solid var(--line); }
.email-form input { flex: 1; border: 0; padding: 14px; font-size: 15px; outline: none; font-family: Arial, sans-serif; }
.email-form button { border: 0; background: var(--forest); color: white; font-family: Arial, sans-serif; font-weight: bold; padding: 0 18px; border-radius: 7px; cursor: pointer; }
footer { background: #172519; color: #d8cdbd; padding: 44px 22px 24px; font-family: Arial, sans-serif; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; margin-bottom: 30px; }
footer h3, footer h4 { color: white; margin-bottom: 12px; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; color: #c9bda9; }
.copyright { max-width: 1180px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; font-size: 14px; color: #a99d8d; }
.wg-page { padding: 56px 22px; }
.wg-content { max-width: 980px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 36px; box-shadow: 0 10px 24px rgba(36,75,42,0.07); }
.wg-content h1 { color: var(--forest-dark); font-size: clamp(36px, 5vw, 56px); line-height: 1.1; margin-bottom: 16px; }
.wg-content h2 { color: var(--forest-dark); font-size: 32px; margin: 28px 0 12px; }
.wg-content p { font-size: 18px; margin-bottom: 18px; }
@media (max-width: 900px) {
  .hero-inner, .email-box, .notice-box, .guide-hub-layout, .footer-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .feature-grid, .guide-card-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 20px; }
  .email-form { flex-direction: column; }
  .email-form button { padding: 14px; }
}

/* WildGrown content installer styles */
.shop-category { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; margin: 28px 0; overflow: hidden; box-shadow: 0 10px 24px rgba(36,75,42,0.07); }
.category-heading { background: #f4ead7; border-bottom: 1px solid var(--line); padding: 24px; }
.category-heading h3 { color: var(--forest-dark); font-size: 30px; margin-bottom: 8px; }
.category-heading p { font-family: Arial, sans-serif; color: var(--muted); font-size: 16px; }
.product-table-wrap { overflow-x: auto; }
.product-table { width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 15px; }
.product-table th { background: var(--forest); color: white; text-align: left; padding: 13px 14px; border-right: 1px solid rgba(255,255,255,0.22); }
.product-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.product-table td:first-child { color: #9c1f17; font-weight: bold; }
.product-table td:nth-child(3) { font-weight: bold; color: var(--earth); white-space: nowrap; }
.paypal-form { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; min-width: 210px; }
.paypal-form label { font-size: 13px; font-weight: bold; color: var(--forest-dark); }
.paypal-form select { width: 100%; max-width: 220px; padding: 7px 8px; border: 1px solid #b8a783; border-radius: 4px; background: #fffaf0; font-size: 13px; }
.paypal-form input[type="image"] { width: 120px; height: auto; }
.shipping-notes, .key-points, .planting-diagram { background: #fffaf0; border: 1px dashed #8b6b3d; border-radius: 10px; padding: 20px; margin: 24px 0; font-family: Arial, sans-serif; color: var(--muted); }
.key-points { background: var(--tan); border-style: solid; }
.key-points h3, .planting-diagram h3 { color: var(--forest-dark); font-size: 22px; margin-bottom: 10px; }
.key-points ul { margin-left: 20px; }
.key-points li { margin-bottom: 8px; }
.cta-box { background: var(--forest-dark); color: white; border-radius: 12px; padding: 26px; margin-top: 28px; }
.cta-box h3 { font-size: 28px; margin-bottom: 10px; color: white; }
.cta-box p { font-family: Arial, sans-serif; color: #e4d9c7; }
.cta-box .btn { display: inline-block; margin-top: 10px; }
.wg-content .section-title h2 { font-size: clamp(32px, 4vw, 48px); }

.old-content-recovery { margin-top: 34px; background: rgba(255,255,255,0.72); border: 1px solid var(--line); border-radius: 12px; padding: 28px; }
.recovery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.recovery-grid article { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 20px; }
.recovery-grid h3 { color: var(--forest-dark); font-size: 24px; margin-bottom: 10px; }
.recovery-grid ul { list-style: none; font-family: Arial, sans-serif; }
.recovery-grid li { border-bottom: 1px solid var(--line); }
.recovery-grid li:last-child { border-bottom: 0; }
.recovery-grid a { display: block; padding: 9px 0; color: var(--forest); font-weight: bold; }
@media (max-width: 900px) { .recovery-grid { grid-template-columns: 1fr; } }


.mailchimp-link-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.mailchimp-signup-button {
  display: block;
  text-align: center;
  background: var(--forest);
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 7px;
}
.mailchimp-signup-button:hover {
  background: var(--forest-dark);
  color: white;
}
.mailchimp-note {
  display: block;
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}


/* Mailchimp inline email signup */
.mailchimp-inline-form {
  position: relative;
  align-items: center;
}
.mailchimp-inline-form input[type="email"] {
  min-width: 0;
}
.mailchimp-inline-form button {
  min-height: 48px;
  white-space: nowrap;
}


/* Mailchimp inline signup with first and last name */
.email-box .mailchimp-inline-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  position: relative;
  align-items: stretch;
}
.email-box .mailchimp-inline-form input[type="text"],
.email-box .mailchimp-inline-form input[type="email"] {
  width: 100%;
  border: 1px solid #e4d8c0;
  border-radius: 7px;
  padding: 13px 12px;
  font-size: 15px;
  outline: none;
  font-family: Arial, sans-serif;
  background: #fffaf0;
}
.email-box .mailchimp-inline-form input[name="EMAIL"] {
  grid-column: 1 / 2;
}
.email-box .mailchimp-inline-form button {
  grid-column: 2 / 3;
  min-height: 47px;
  border: 0;
  background: var(--forest);
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  padding: 0 18px;
  border-radius: 7px;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .email-box .mailchimp-inline-form {
    grid-template-columns: 1fr;
  }
  .email-box .mailchimp-inline-form input[name="EMAIL"],
  .email-box .mailchimp-inline-form button {
    grid-column: 1;
  }
  .email-box .mailchimp-inline-form button {
    padding: 14px;
  }
}


.sitewide-signup-section {
  padding: 54px 22px;
  background: var(--cream);
}

.sitewide-signup-section .container {
  max-width: 1180px;
  margin: 0 auto;
}
