/* ── STORY ── */
.story {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.story-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--honey);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.story h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--bark);
}

.story h2 em {
  font-style: italic;
  color: var(--honey);
}

.story p {
  margin-bottom: 1.2em;
  color: var(--bark-light);
}

.story-pullquote {
  border-left: 3px solid var(--honey-light);
  padding: 0.8em 1.2em;
  margin: 1.8em 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--honey-dark);
  background: rgba(245,200,66,0.08);
  border-radius: 0 8px 8px 0;
}

/* ── VOLK CARDS ── */
.volk-section {
  padding: 2rem 1rem 3rem;
  max-width: 720px;
  margin: 0 auto;
}

.volk-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--bark);
  margin-bottom: 1.2rem;
  padding-left: 0.5rem;
}

.volk-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.volk-card {
  background: white;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(212,134,10,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.volk-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--shadow);
}

.volk-emoji {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 3rem;
  text-align: center;
  margin-top: 0.1rem;
}

.volk-info {
  flex: 1;
  min-width: 0;
}

.volk-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--bark);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
}

.volk-toggle-hint {
  font-size: 0.72rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 400;
  color: var(--honey);
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.volk-card:hover .volk-toggle-hint { opacity: 1; }

.volk-info p {
  font-size: 0.92rem;
  color: var(--bark-light);
  line-height: 1.5;
}

.volk-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.volk-body.open {
  max-height: 400px;
  opacity: 1;
}

.volk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.tag {
  background: rgba(212,134,10,0.1);
  color: var(--honey-dark);
  font-size: 0.72rem;
  padding: 0.2em 0.7em;
  border-radius: 2em;
  letter-spacing: 0.05em;
}

/* ── AR HOW-TO ── */
.ar-howto {
  background: var(--bark);
  color: var(--cream);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ar-howto::before {
  content: '🍯';
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  top: -2rem;
  right: -2rem;
  pointer-events: none;
}

.ar-howto h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--honey-light);
  margin-bottom: 0.5rem;
}

.ar-howto > p {
  color: rgba(253,246,227,0.7);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

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

.step-num {
  background: var(--honey);
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.step p { font-size: 0.95rem; color: rgba(253,246,227,0.85); }
.step strong { color: var(--honey-light); }
