:root {
  --color-forest: #2D5016;
  --color-sage: #7A8B5E;
  --color-leaf: #A4BE7B;
  --color-cream: #FAF8F0;
  --color-sand: #EDE8D8;
  --color-bark: #5C4033;
  --color-bark-light: #8B6F4E;
  --color-white: #FFFFFF;
  --color-text: #2C2C2C;
  --color-text-light: #5A5A5A;
  --color-accent: #C8A96E;
  --color-pink: #E8C4C4;
  --color-pink-deep: #D4A0A0;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --max-width: 860px;
  --section-spacing: 4rem;
}

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

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Breadcrumb ── */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  color: var(--color-text-light);
}
.breadcrumb a {
  color: var(--color-sage);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-forest) 0%, #3a6b1e 40%, var(--color-sage) 100%);
  color: var(--color-white);
  padding: 5rem 1.5rem 4.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(164,190,123,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,169,110,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-leaf);
}
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  color: #ffffff;
  font-weight: 400;
}
.hero-meta {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  opacity: 0.75;
}
.hero-meta span { display: flex; align-items: center; gap: 0.4rem; }

/* ── TOC ── */
.toc-section {
  max-width: var(--max-width);
  margin: -2rem auto 0;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.toc {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.toc h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-forest);
}
.toc ol {
  list-style: none;
  counter-reset: toc-counter;
  columns: 2;
  column-gap: 2rem;
}
.toc li {
  counter-increment: toc-counter;
  break-inside: avoid;
  margin-bottom: 0.5rem;
}
.toc li a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  transition: color 0.2s;
}
.toc li a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-sage);
  min-width: 1.4rem;
}
.toc li a:hover { color: var(--color-forest); }

/* ── Content ── */
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-spacing) 0;
  border-bottom: 1px solid var(--color-sand);
}
.section:last-child { border-bottom: none; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  color: var(--color-forest);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-bark);
  margin: 2rem 0 0.8rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1.2rem;
  color: var(--color-text);
  font-weight: 400;
}

/* ── Info Card ── */
.info-card {
  background: var(--color-white);
  border-radius: 14px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border-left: 4px solid var(--color-leaf);
}
.info-card h3 {
  margin-top: 0;
  color: var(--color-forest);
}

/* ── Data Table ── */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.data-table th {
  background: var(--color-forest);
  color: var(--color-white);
  padding: 0.85rem 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.data-table td {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--color-sand);
  font-size: 0.95rem;
}
.data-table tr:nth-child(even) td { background: rgba(164,190,123,0.06); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(164,190,123,0.12); }

/* ── Variety Cards ── */
.variety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.variety-card {
  background: var(--color-white);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border-top: 4px solid var(--color-leaf);
  transition: transform 0.2s, box-shadow 0.2s;
}
.variety-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.variety-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-forest);
  margin-bottom: 0.6rem;
}
.variety-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}
.variety-tag {
  display: inline-block;
  background: var(--color-sand);
  color: var(--color-bark);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Steps ── */
.steps {
  counter-reset: step-counter;
  margin: 1.5rem 0;
}
.step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.step-num {
  counter-increment: step-counter;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}
.step-content h4 {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--color-bark);
}
.step-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ── Tip Box ── */
.tip-box {
  background: linear-gradient(135deg, rgba(164,190,123,0.12), rgba(200,169,110,0.08));
  border: 1px solid rgba(164,190,123,0.3);
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
}
.tip-box strong {
  color: var(--color-forest);
}

/* ── FAQ ── */
.faq-item {
  background: var(--color-white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  color: var(--color-text);
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(164,190,123,0.06); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-sage);
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ── Price Section ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.price-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.price-card .type {
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: 0.4rem;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-bark);
  margin-bottom: 0.3rem;
}
.price-card .note {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--color-forest) 0%, #3a6b1e 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  color: var(--color-white);
  margin: var(--section-spacing) 0;
}
.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-sand);
}
footer a { color: var(--color-sage); text-decoration: none; }

/* ── Hero image ── */
.hero-img-wrap {
  margin-top: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  max-height: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Article image ── */
.article-img {
  margin: 2rem 0;
}
.article-img img {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.article-img figcaption {
  font-size: 0.82rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}

/* ── Image placeholder ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--color-sand) 0%, rgba(164,190,123,0.2) 100%);
  border-radius: 14px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
  color: var(--color-sage);
  font-size: 0.85rem;
  border: 2px dashed rgba(122,139,94,0.3);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  html { font-size: 16px; }
  .hero { padding: 3.5rem 1.2rem 3rem; }
  .toc ol { columns: 1; }
  .toc { padding: 1.5rem; }
  .content { padding: 0 1.2rem; }
  .hero-meta { flex-direction: column; gap: 0.6rem; }
  .variety-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
}
